diff --git a/package.json b/package.json index ded707c..cad3a7a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "testpilot-containers", "title": "Multi-Account Containers", "description": "Containers helps you keep all the parts of your online life contained in different tabs. Custom labels and color-coded tabs help keep different activities — like online shopping, travel planning, or checking work email — separate.", - "version": "6.2.1", + "version": "6.2.2", "author": "Andrea Marchesini, Luke Crouch and Jonathan Kingston", "bugs": { "url": "https://github.com/mozilla/multi-account-containers/issues" diff --git a/src/js/background/backgroundLogic.js b/src/js/background/backgroundLogic.js index 996539f..f35ddac 100644 --- a/src/js/background/backgroundLogic.js +++ b/src/js/background/backgroundLogic.js @@ -9,12 +9,10 @@ const backgroundLogic = { ]), unhideQueue: [], init() { - console.log("init") browser.commands.onCommand.addListener(function (command) { for (let i=0; i < NUMBER_OF_KEYBOARD_SHORTCUTS; i++) { const key = "open_container_" + i; const cookieStoreId = identityState.keyboardShortcut[key]; - console.log(cookieStoreId); if (command === key) { browser.tabs.create({cookieStoreId}); } diff --git a/src/js/background/messageHandler.js b/src/js/background/messageHandler.js index fbd06a1..5c15b91 100644 --- a/src/js/background/messageHandler.js +++ b/src/js/background/messageHandler.js @@ -11,7 +11,7 @@ const messageHandler = { switch (m.method) { case "getShortcuts": - console.log(identityState.keyboardShortcut); + console.log(identityState.keyboardShortcut); response = identityState.keyboardShortcut; break; case "setShortcut": @@ -91,7 +91,7 @@ const messageHandler = { ); break; } - console.log(response) + console.log(response); return response; }); diff --git a/src/js/options.js b/src/js/options.js index 86d3a7f..0b3638e 100644 --- a/src/js/options.js +++ b/src/js/options.js @@ -25,7 +25,6 @@ async function enableDisableSync() { } async function setupOptions() { - console.log("setup") const hasPermission = await browser.permissions.contains({permissions: ["bookmarks"]}); const { syncEnabled } = await browser.storage.local.get("syncEnabled"); if (hasPermission) { diff --git a/src/manifest.json b/src/manifest.json index 242a64e..2bb044c 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Firefox Multi-Account Containers", - "version": "6.2.1", + "version": "6.2.2", "incognito": "not_allowed", "description": "Multi-Account Containers helps you keep all the parts of your online life contained in different tabs. Custom labels and color-coded tabs help keep different activities — like online shopping, travel planning, or checking work email — separate.", "icons": { diff --git a/test/features/sync.test.js b/test/features/sync.test.js index 1e4070a..70c452f 100644 --- a/test/features/sync.test.js +++ b/test/features/sync.test.js @@ -11,7 +11,7 @@ describe("Sync", function() { delete this.syncHelper; }); - it("testIdentityStateCleanup", async function() { + it.only("testIdentityStateCleanup", async function() { await this.syncHelper.stopSyncListeners(); await this.syncHelper.setState({}, LOCAL_DATA, TEST_CONTAINERS, []);