This repository was archived by the owner on Mar 31, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +18
-7
lines changed
Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 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 <doudou19758@gmail.com>" ,
You can’t perform that action at this time.
0 commit comments