Skip to content

Commit

Permalink
chore: hide sync login shortcut & new version release
Browse files Browse the repository at this point in the history
  • Loading branch information
cnwangjie committed Aug 24, 2019
1 parent f063e18 commit df8cf7c
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### v1.4.7 8/24/2019

- fix: display error when import anything
- fix: increase import filesize limit from 32KB to 1MB
- fix: won't scroll to search result item
- fix: remove item before open link

### v1.4.6 8/8/2019

- fix: crash when click item of search result
Expand Down
6 changes: 5 additions & 1 deletion src/app/component/main/Toolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ export default {
},
syncBtnClicked() {
if (this.uploadSuccess) return
if (!this.hasToken) return browser.tabs.create({url: SYNC_SERVICE_URL + '/login'})
if (!this.hasToken) {
// TODO: temporarily hide the login shortcut
return this.$router.push('/app/options/sync')
// return browser.tabs.create({url: SYNC_SERVICE_URL + '/login'})
}
return sendMessage({refresh: true})
},
}
Expand Down
4 changes: 0 additions & 4 deletions src/app/page/main/Options.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,6 @@

<v-subheader>
Sync
<v-tooltip top>
<v-chip slot="activator" outline color="red" small>BETA</v-chip>
<span>{{ __('ui_beta_warn') }}</span>
</v-tooltip>
</v-subheader>
</v-list-tile-content>
<v-list-tile-action>
Expand Down
6 changes: 5 additions & 1 deletion src/app/page/main/SyncInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@
<v-list>
<v-list-tile>
<v-list-tile-content>
<v-list-tile-title>
<v-list-tile-title :style="{ height: '30px' }">
{{ __('ui_boss') }}
<v-tooltip top>
<v-chip slot="activator" outline color="red" small :style="{ margin: 0 }">BETA</v-chip>
<span>{{ __('ui_beta_warn') }}</span>
</v-tooltip>
</v-list-tile-title>
<v-list-tile-sub-title>
{{ bossSubtitle }}
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "__EXT_NAME__",
"version": "1.4.6",
"version": "1.4.7",
"default_locale": "en",
"description": "__MSG_ext_desc__",
"author": "WangJie <[email protected]>",
Expand Down

0 comments on commit df8cf7c

Please sign in to comment.