Commit df8cf7c 1 parent f063e18 commit df8cf7c Copy full SHA for df8cf7c
File tree 5 files changed +18
-7
lines changed
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
+
1
8
### v1.4.6 8/8/2019
2
9
3
10
- fix: crash when click item of search result
Original file line number Diff line number Diff line change @@ -88,7 +88,11 @@ export default {
88
88
},
89
89
syncBtnClicked () {
90
90
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
+ }
92
96
return sendMessage ({refresh: true })
93
97
},
94
98
}
Original file line number Diff line number Diff line change 65
65
66
66
<v-subheader >
67
67
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 >
72
68
</v-subheader >
73
69
</v-list-tile-content >
74
70
<v-list-tile-action >
Original file line number Diff line number Diff line change 15
15
<v-list >
16
16
<v-list-tile >
17
17
<v-list-tile-content >
18
- <v-list-tile-title >
18
+ <v-list-tile-title :style = " { height: '30px' } " >
19
19
{{ __('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 >
20
24
</v-list-tile-title >
21
25
<v-list-tile-sub-title >
22
26
{{ bossSubtitle }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"manifest_version" : 2 ,
3
3
"name" : " __EXT_NAME__" ,
4
- "version" : " 1.4.6 " ,
4
+ "version" : " 1.4.7 " ,
5
5
"default_locale" : " en" ,
6
6
"description" : " __MSG_ext_desc__" ,
7
7
"author" :
" WangJie <[email protected] >" ,
You can’t perform that action at this time.
0 commit comments