Navigation Menu

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.34.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
yknl committed Oct 26, 2018
2 parents 84ec3e2 + 7cd28ad commit f6bb52c
Show file tree
Hide file tree
Showing 9 changed files with 9,670 additions and 7,255 deletions.
2 changes: 1 addition & 1 deletion app/js/data/apps.js
Expand Up @@ -369,7 +369,7 @@ const apps = {
website: 'https://www.stealthy.im/',
launchLink: 'https://www.stealthy.im/',
developer: 'Prabhaav Bhardwaj',
status: 'user_ready_chat',
status: 'user_ready',
storageRequired: true
}, {
name: 'Hermes',
Expand Down
Expand Up @@ -19,7 +19,7 @@ const RegistrationSubmittedView = (props) => {
{bodyContent}
<img
role="presentation"
src="/images/blockstack-logo-vertical.svg"
src="/static/images/blockstack-logo-vertical.svg"
className="m-b-20"
style={{ width: '210px', display: 'block', marginRight: 'auto', marginLeft: 'auto' }}
/>
Expand Down
1 change: 1 addition & 0 deletions app/js/profiles/store/identity/actions.js
Expand Up @@ -394,6 +394,7 @@ function refreshIdentities(
`refreshIdentities: resolveZoneFileToProfile for ${nameOwned} error`,
error
)
dispatch(updateProfile(index, DEFAULT_PROFILE, zoneFile))
resolve()
return Promise.resolve()
})
Expand Down
5 changes: 3 additions & 2 deletions app/js/utils/window-utils.js
Expand Up @@ -11,10 +11,11 @@ export function isWindowsBuild() {
}

export function isWebAppBuild() {
const isWebAppBuildCompileFlag = false
return isWebAppBuildCompileFlag === true
const isWebAppCompileFlag = ( process.env.NODE_ENV === 'production' && typeof process.env.WEBAPP !== 'undefined' )
return isWebAppCompileFlag
}


/**
* Will determine whether or not we should try to
* perform "private" core endpoint functions --
Expand Down
4 changes: 2 additions & 2 deletions native/macos/Blockstack/Blockstack/Info.plist
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.34.1</string>
<string>0.34.2</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -30,7 +30,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>110</string>
<string>111</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
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.34.1</string>
<string>0.34.2</string>
<key>CFBundleVersion</key>
<string>100</string>
<string>111</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSBackgroundOnly</key>
Expand Down

0 comments on commit f6bb52c

Please sign in to comment.