diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d9c8e5..deab4cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v1.3.8 9/21/2018 + + - fix: popup simple list is too short + - fix: store all tabs in all window command not work + - change: untitled list will show the title of tabs in popup simple list + - change: do not display the change logs in about page + - change: apply the nightmode to the popup simple list + ### v1.3.7 9/19/2018 - feat: search function in the detail list page & add an option to allow to enable or disable it diff --git a/src/background.js b/src/background.js index c7c1d1e..9a9d5a5 100644 --- a/src/background.js +++ b/src/background.js @@ -119,8 +119,10 @@ const dynamicDisableMenu = async () => { } const commandHandler = async command => { + console.log('received command', command) if (command === 'store-selected-tabs') tabs.storeSelectedTabs() else if (command === 'store-all-tabs') tabs.storeAllTabs() + else if (command === 'store-all-in-all-windows') tabs.storeAllTabInAllWindows() else if (command === 'restore-lastest-list') { const lists = await storage.getLists() if (lists.length === 0) return true diff --git a/src/manifest.json b/src/manifest.json index c7e65f8..99f0fd9 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "__MSG_ext_name__", - "version": "1.3.7", + "version": "1.3.8", "default_locale": "en", "description": "__MSG_ext_desc__", "author": "WangJie ", diff --git a/src/page/About.vue b/src/page/About.vue index 983b8aa..b349952 100644 --- a/src/page/About.vue +++ b/src/page/About.vue @@ -29,24 +29,19 @@ Change Logs - - - - + Click to view the whole change logs