1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-14 02:06:29 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Dick Choi
7faf0efb20 Merge branch '0.6.0' 2016-07-24 03:12:15 +09:00
Dick Choi
ed70cb8e3d fix forever loading if user is new 2016-07-24 03:11:07 +09:00
2 changed files with 7 additions and 7 deletions

View File

@@ -56,9 +56,6 @@ class InitModal extends React.Component {
try {
data = CSON.readFileSync(path.join(remote.app.getPath('userData'), 'local.json'))
} catch (err) {
if (err.code === 'ENOENT') {
return
}
console.error(err)
}
let newState = {
@@ -212,9 +209,12 @@ class InitModal extends React.Component {
...
</button>
</div>
<div styleName='body-migration'>
<label><input type='checkbox' checked={this.state.migrationRequested} onChange={(e) => this.handleMigrationRequestedChange(e)}/> Migrate old data from the legacy app v0.5</label>
</div>
{this.state.legacyStorageExists &&
<div styleName='body-migration'>
<label><input type='checkbox' checked={this.state.migrationRequested} onChange={(e) => this.handleMigrationRequestedChange(e)}/> Migrate old data from the legacy app v0.5</label>
</div>
}
<div styleName='body-control'>
<button styleName='body-control-createButton'

View File

@@ -1,6 +1,6 @@
{
"name": "boost",
"version": "0.6.0",
"version": "0.6.1",
"description": "Boostnote",
"main": "index.js",
"scripts": {