Skip to content

Commit df8cf7c

Browse files
committed
chore: hide sync login shortcut & new version release
1 parent f063e18 commit df8cf7c

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### v1.4.7 8/24/2019
2+
3+
- fix: display error when import anything
4+
- fix: increase import filesize limit from 32KB to 1MB
5+
- fix: won't scroll to search result item
6+
- fix: remove item before open link
7+
18
### v1.4.6 8/8/2019
29

310
- fix: crash when click item of search result

src/app/component/main/Toolbar.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,11 @@ export default {
8888
},
8989
syncBtnClicked() {
9090
if (this.uploadSuccess) return
91-
if (!this.hasToken) return browser.tabs.create({url: SYNC_SERVICE_URL + '/login'})
91+
if (!this.hasToken) {
92+
// TODO: temporarily hide the login shortcut
93+
return this.$router.push('/app/options/sync')
94+
// return browser.tabs.create({url: SYNC_SERVICE_URL + '/login'})
95+
}
9296
return sendMessage({refresh: true})
9397
},
9498
}

src/app/page/main/Options.vue

-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,6 @@
6565

6666
<v-subheader>
6767
Sync
68-
<v-tooltip top>
69-
<v-chip slot="activator" outline color="red" small>BETA</v-chip>
70-
<span>{{ __('ui_beta_warn') }}</span>
71-
</v-tooltip>
7268
</v-subheader>
7369
</v-list-tile-content>
7470
<v-list-tile-action>

src/app/page/main/SyncInfo.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,12 @@
1515
<v-list>
1616
<v-list-tile>
1717
<v-list-tile-content>
18-
<v-list-tile-title>
18+
<v-list-tile-title :style="{ height: '30px' }">
1919
{{ __('ui_boss') }}
20+
<v-tooltip top>
21+
<v-chip slot="activator" outline color="red" small :style="{ margin: 0 }">BETA</v-chip>
22+
<span>{{ __('ui_beta_warn') }}</span>
23+
</v-tooltip>
2024
</v-list-tile-title>
2125
<v-list-tile-sub-title>
2226
{{ bossSubtitle }}

src/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "__EXT_NAME__",
4-
"version": "1.4.6",
4+
"version": "1.4.7",
55
"default_locale": "en",
66
"description": "__MSG_ext_desc__",
77
"author": "WangJie <[email protected]>",

0 commit comments

Comments
 (0)