From af98174a19c35bb49bdf3881aeba959d7ab7abf7 Mon Sep 17 00:00:00 2001 From: Jonathan Kingston Date: Fri, 14 Jul 2017 02:12:24 +0100 Subject: [PATCH 1/3] Fix assignment index loading at the end of the tab strip. Fixes #672. --- webextension/js/confirm-page.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webextension/js/confirm-page.js b/webextension/js/confirm-page.js index 78e427a..aa8c9a2 100644 --- a/webextension/js/confirm-page.js +++ b/webextension/js/confirm-page.js @@ -82,6 +82,7 @@ load(); async function openInContainer(redirectUrl, cookieStoreId) { const tab = await getCurrentTab(); await browser.tabs.create({ + index: tab[0].index + 1, cookieStoreId, url: redirectUrl }); From b646a9183c88fd580cdcaef2f7470179dbf96cef Mon Sep 17 00:00:00 2001 From: Jonathan Kingston Date: Mon, 17 Jul 2017 12:50:43 +0100 Subject: [PATCH 2/3] Set default background to fix dark linux themes. Fixes #677 --- webextension/css/popup.css | 1 + 1 file changed, 1 insertion(+) diff --git a/webextension/css/popup.css b/webextension/css/popup.css index e86a7d1..845d519 100644 --- a/webextension/css/popup.css +++ b/webextension/css/popup.css @@ -12,6 +12,7 @@ } html { + background-color: #fefefe; box-sizing: border-box; font-size: 12px; } From 4cbcfac0f4e291e9986d68ee3480a95772c5cfb0 Mon Sep 17 00:00:00 2001 From: groovecoder Date: Mon, 31 Jul 2017 11:40:18 -0500 Subject: [PATCH 3/3] bump version to 2.4.1 --- package.json | 2 +- webextension/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6311822..5ea8d37 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "testpilot-containers", "title": "Containers Experiment", "description": "Containers works by isolating cookie jars using separate origin-attributes defined visually by colored ‘Container Tabs’. This add-on is a modified version of the containers feature for Firefox Test Pilot.", - "version": "2.4.0", + "version": "2.4.1", "author": "Andrea Marchesini, Luke Crouch and Jonathan Kingston", "bugs": { "url": "https://github.com/mozilla/testpilot-containers/issues" diff --git a/webextension/manifest.json b/webextension/manifest.json index 7722b43..8f7dec0 100644 --- a/webextension/manifest.json +++ b/webextension/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Containers Experiment", - "version": "2.4.0", + "version": "2.4.1", "description": "Containers works by isolating cookie jars using separate origin-attributes defined visually by colored ‘Container Tabs’. This add-on is a modified version of the containers feature for Firefox Test Pilot.", "icons": {