Skip to content

Commit

Permalink
1.3.4: fixes some problems
Browse files Browse the repository at this point in the history
  • Loading branch information
cnwangjie committed Sep 9, 2018
1 parent fb54f8c commit bbb7d1f
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 12 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
### v1.3.3 9/#/2018
### v1.3.4 9/9/2018

- fix: item click cannot be removed problem
- fix: store all tabs from all windows
- fix: create time and title overlap on small screen

### v1.3.3 9/7/2018

- pref: reduce size
- fix: make sure remote options is same as local
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

[中文README](./README.zh.md)

### A better onetab extensions for chrome.
### A better onetab extension

More beatiful and more feature.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"vue": "^2.5.16",
"vue-router": "^3.0.1",
"vuedraggable": "^2.16.0",
"vuetify": "^1.0.17",
"vuetify": "^1.2.3",
"vuex": "^3.0.1",
"webextension-polyfill": "^0.3.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/common/tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const storeAllTabInAllWindows = async () => {
await openTabLists()
for (const window of windows) {
const tabs = await getAllInWindow(window.id)
storeTabs(tabs)
await storeTabs(tabs)
}
}

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": "__MSG_ext_name__",
"version": "1.3.3",
"version": "1.3.4",
"default_locale": "en",
"description": "__MSG_ext_desc__",
"author": "WangJie <doudou19758@gmail.com>",
Expand Down
6 changes: 3 additions & 3 deletions src/page/DetailList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
:key="listIndex"
>
<v-layout slot="header" row spacer>
<v-flex no-wrap xs3>
<v-flex no-wrap md7 lg4>

<v-menu open-on-hover top offset-y>
<v-chip
Expand All @@ -34,7 +34,7 @@
</v-menu>
<strong class="grey--text date">{{ __('ui_created') }} <dynamic-time v-model="list.time"></dynamic-time></strong>
</v-flex>
<v-flex no-wrap xs7 @keydown.enter="saveTitle(listIndex)">
<v-flex no-wrap md6 lg9 @keydown.enter="saveTitle(listIndex)">
<v-text-field
class="title-editor"
autofocus
Expand Down Expand Up @@ -153,7 +153,7 @@ export default {
__,
formatTime,
async itemClicked(listIndex, tabIndex) {
const action = this.itemClickAction
const action = this.opts.itemClickAction
if (action === 'open-and-remove') {
this.removeTab(listIndex, tabIndex)
}
Expand Down
2 changes: 1 addition & 1 deletion src/page/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</v-btn>
<span>{{ tooltip }}<dynamic-time v-if="!tooltip" v-model="lastUpdated"></dynamic-time></span>
</v-tooltip>
<v-toolbar-items class="hidden-sm-and-down">
<v-toolbar-items>
<v-btn flat dark @click="nightmode = !nightmode">
{{ __('ui_nightmode') }}
</v-btn>
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6622,9 +6622,9 @@ vuedraggable@^2.16.0:
dependencies:
sortablejs "^1.7.0"

vuetify@^1.0.17:
version "1.0.17"
resolved "http://registry.npm.taobao.org/vuetify/download/vuetify-1.0.17.tgz#646991024b327514b5fc50fb5c34e15451ad14b6"
vuetify@^1.2.3:
version "1.2.3"
resolved "http://registry.npm.taobao.org/vuetify/download/vuetify-1.2.3.tgz#519bab56c31420892912c0c7dbd23e790c9287bb"

vuex@^3.0.1:
version "3.0.1"
Expand Down

0 comments on commit bbb7d1f

Please sign in to comment.