Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/v0.35.2'
Browse files Browse the repository at this point in the history
 the commit.
  • Loading branch information
yknl committed Jan 2, 2019
2 parents 78ca616 + ccab270 commit ef45caa
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/js/store/reducers.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function initializeStateVersion() {
* and other state is regenerated.
* @type {number}
*/
export const CURRENT_VERSION: number = 15
export const CURRENT_VERSION: number = 16

const AppReducer = combineReducers({
account: AccountReducer,
Expand Down
5 changes: 5 additions & 0 deletions app/js/update/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,10 @@ class UpdatePage extends React.Component {

// generate new account and IDs
this.createAccount().then(() => this.createNewIds())
.then(() => this.props.refreshIdentities(
this.props.api,
this.props.identityAddresses
))
}, 150)
)
})
Expand Down Expand Up @@ -357,6 +361,7 @@ UpdatePage.propTypes = {
router: PropTypes.object,
identityAddresses: PropTypes.array,
createNewIdentityWithOwnerAddress: PropTypes.func.isRequired,
refreshIdentities: PropTypes.func.isRequired,
setDefaultIdentity: PropTypes.func.isRequired,
initializeWallet: PropTypes.func.isRequired,
updateApi: PropTypes.func.isRequired,
Expand Down
2 changes: 1 addition & 1 deletion app/js/update/views/initial.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class PasswordView extends React.Component {
onSubmit: () => console.log('submit for validation'),
fields,
actions: {
split: true,
split: false,
items: [
{
label: ' ',
Expand Down
4 changes: 2 additions & 2 deletions native/macos/Blockstack/Blockstack/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.35.1</string>
<string>0.35.2</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -30,7 +30,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>113</string>
<string>114</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions native/macos/Blockstack/BlockstackLauncher/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.35.1</string>
<string>0.35.2</string>
<key>CFBundleVersion</key>
<string>113</string>
<string>114</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSBackgroundOnly</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "blockstack-browser",
"description": "The Blockstack browser",
"version": "0.35.1",
"version": "0.35.2",
"author": "Blockstack PBC <admin@blockstack.com>",
"dependencies": {
"bigi": "^1.4.2",
Expand Down

0 comments on commit ef45caa

Please sign in to comment.