From 9e12014c076e8a0ec53c7fb5cfc6ad4f684ce7b4 Mon Sep 17 00:00:00 2001 From: Kendall Werts Date: Thu, 13 Feb 2020 16:54:18 -0600 Subject: [PATCH 1/2] Fix for #1632: Pinned tabs cannot be loaded as 'discarded' --- src/js/background/backgroundLogic.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/js/background/backgroundLogic.js b/src/js/background/backgroundLogic.js index 96e7939..d68e51e 100644 --- a/src/js/background/backgroundLogic.js +++ b/src/js/background/backgroundLogic.js @@ -310,12 +310,13 @@ const backgroundLogic = { for (let object of containerState.hiddenTabs) { // eslint-disable-line prefer-const // do not show already opened url + const noload = !object.pinned; if (object.url !== options.alreadyShowingUrl) { promises.push(this.openNewTab({ userContextId: userContextId, url: object.url, nofocus: options.nofocus || false, - noload: true, + noload: noload, pinned: object.pinned, })); } From 8172f291dd596336aee8c82c603245b2bcf11866 Mon Sep 17 00:00:00 2001 From: Kendall Werts Date: Thu, 13 Feb 2020 17:26:31 -0600 Subject: [PATCH 2/2] bumped version --- package.json | 2 +- src/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1258571..ded707c 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.0", + "version": "6.2.1", "author": "Andrea Marchesini, Luke Crouch and Jonathan Kingston", "bugs": { "url": "https://github.com/mozilla/multi-account-containers/issues" diff --git a/src/manifest.json b/src/manifest.json index 5dfc37b..e88af90 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Firefox Multi-Account Containers", - "version": "6.2.0", + "version": "6.2.1", "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": {