Skip to content

Commit 1024e56

Browse files
Merge branch 'release/2.1.0'
2 parents 9af6fbf + 9c54807 commit 1024e56

File tree

13 files changed

+1946
-2119
lines changed

13 files changed

+1946
-2119
lines changed

deployment/amplify/production/amplify/backend/auth/echolocatorProdAuth/parameters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"smsAuthenticationMessage": "Your authentication code is {####}",
1414
"smsVerificationMessage": "Your verification code is {####}",
1515
"emailVerificationSubject": "Your ECHOLocator verification code",
16-
"emailVerificationMessage": "Welcome to the ECHOLocator!\\n\\nYour ECHOLocator verification code is {####}.\\nYour username is your email address.\\n\\nClick <a href=\\\"https://echolocator.org/\\\">here</a> to log in to your account, set a new password, and continue your housing search.\\n\\nRegards,\\nThe Boston Housing Authority ECHOLocator Team",
16+
"emailVerificationMessage": "Welcome to the ECHOLocator!\\n\\nYour ECHOLocator verification code is {####}\\nYour username is your email address.\\n\\nClick <a href=\\\"https://echolocator.org/\\\">here</a> to log in to your account, set a new password, and continue your housing search.\\n\\nRegards,\\nThe Boston Housing Authority ECHOLocator Team",
1717
"defaultPasswordPolicy": false,
1818
"passwordPolicyMinLength": 8,
1919
"passwordPolicyCharacters": [],

neighborhood_data/generate_neighborhood_json.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
'school': 'str',
5656
'town_square': 'str',
5757
'open_space_or_landmark': 'str',
58-
'zviolentcrimeflip': 'float',
5958
'crime_percentile': 'float'
6059
}
6160

neighborhood_data/neighborhood_centroids.csv

Lines changed: 248 additions & 248 deletions
Large diffs are not rendered by default.

neighborhood_data/neighborhood_centroids_descriptions.csv

Lines changed: 259 additions & 591 deletions
Large diffs are not rendered by default.

neighborhood_data/neighborhoods.csv

Lines changed: 248 additions & 248 deletions
Large diffs are not rendered by default.

taui/configurations/default/messages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ NeighborhoodDetails:
6060
GoogleMapsLink: Google Maps
6161
GoSection8SearchLink: GoSection8
6262
HotpadsSearchLink: Hotpads
63-
MassHousingLink: Mass Housing
63+
MetroHousingLink: Metro Housing
6464
MaxRent: Est. max rent
6565
ModeSummary: via
6666
MoreSearchToolsLinksHeading: More search tools
@@ -108,7 +108,7 @@ Accounts:
108108
CreateError: Failed to create profile. Please try again.
109109
InvalidVoucherNumber: Client ID should be six to eight digits or letters.
110110
MissingVoucherNumber: Enter a client ID to create a profile.
111-
Name: Name of head of household
111+
Name: Your full name
112112
Search: Search
113113
SelectError: Failed to set profile. Please try again.
114114
NoResults: Profile not found. Create one now?
@@ -121,7 +121,7 @@ Profile:
121121
ByCar: Car
122122
ByTransit: Transit
123123
ByTransitExplanation: Search results will include subway and local bus.
124-
ChooseTravelMode: Will travel by
124+
ChooseTravelMode: How will you most often get to the above addresses?
125125
DeleteAddress: Delete this address
126126
DeletePrimaryAddressError: Cannot delete primary destination. Set another as the primary first.
127127
Cancel: Cancel
@@ -135,12 +135,12 @@ Profile:
135135
DeleteProfileError: Failed to delete profile. Please try again.
136136
Destinations: Where do you go most frequently (besides your home)?
137137
ImportanceAccessibility: Commute time
138-
ImportanceHeading: How important are these factors when choosing a home?
138+
ImportanceHeading: How important are the factors below when choosing a place to live?
139139
ImportanceSchools: School quality
140140
ImportanceViolentCrime: Public safety
141141
Primary: Primary
142142
Purpose: Purpose
143-
Rooms: Number of bedrooms in voucher
143+
Rooms: Number of bedrooms on your voucher
144144
Go: Save profile
145145
NameRequired: Please enter a name for the head of household.
146146
SaveError: Failed to save profile. Please try again.

taui/neighborhood_bounds.json

Lines changed: 50 additions & 50 deletions
Large diffs are not rendered by default.

taui/neighborhoods.json

Lines changed: 236 additions & 236 deletions
Large diffs are not rendered by default.

taui/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
"lodash": "~4.17.15",
5555
"logrocket": "^1.0.6",
5656
"logrocket-react": "~4.0.1",
57-
"react": "~16.12.0",
58-
"react-dom": "~16.12.0",
57+
"react": "~16.13.0",
58+
"react-dom": "~16.13.0",
5959
"react-ga": "~2.7.0",
6060
"react-leaflet": "~1.9.1",
6161
"react-leaflet-vectorgrid": "~2.2.1",
@@ -74,7 +74,7 @@
7474
"devDependencies": {
7575
"core-js": "~2.6.10",
7676
"mastarm": "https://github.com/azavea/mastarm.git#dev",
77-
"semantic-release": "^15.13.31",
77+
"semantic-release": "^17.0.4",
7878
"stylelint": "^9.6.0",
7979
"stylelint-azavea": "https://github.com/azavea/stylelint-azavea#develop"
8080
},

taui/src/components/edit-profile.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,17 @@ export default class EditProfile extends PureComponent<Props> {
738738
rooms={rooms}
739739
changeField={changeField} />
740740
</div>
741+
<DestinationsList
742+
addAddress={addAddress}
743+
deleteAddress={deleteAddress}
744+
destinations={destinations}
745+
editAddress={editAddress}
746+
geocode={geocode}
747+
reverseGeocode={reverseGeocode}
748+
setGeocodeLocation={setGeocodeLocation}
749+
setPrimaryAddress={setPrimaryAddress}
750+
TripPurposeOptions={TripPurposeOptions}
751+
/>
741752
<div className='account-profile__field'>
742753
<div
743754
className='account-profile__label'
@@ -796,17 +807,6 @@ export default class EditProfile extends PureComponent<Props> {
796807
: message('Profile.ByTransitExplanation')}
797808
</div>}
798809
</div>
799-
<DestinationsList
800-
addAddress={addAddress}
801-
deleteAddress={deleteAddress}
802-
destinations={destinations}
803-
editAddress={editAddress}
804-
geocode={geocode}
805-
reverseGeocode={reverseGeocode}
806-
setGeocodeLocation={setGeocodeLocation}
807-
setPrimaryAddress={setPrimaryAddress}
808-
TripPurposeOptions={TripPurposeOptions}
809-
/>
810810
<div className='account-profile__importance-options'>
811811
<h3 className='account-profile__label'>
812812
{message('Profile.ImportanceHeading')}

0 commit comments

Comments
 (0)