Skip to content

Commit 6400952

Browse files
authored
Merge pull request #1996 from floccusaddon/feat/tab-groups
feat(TabGroups): Allow syncing tab groups
2 parents 9f17214 + 7780699 commit 6400952

File tree

8 files changed

+1265
-107
lines changed

8 files changed

+1265
-107
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ jobs:
141141

142142
services:
143143
hub:
144-
image: selenium/hub:4.20.0-20240425
144+
image: selenium/hub:4.34.0-20250717
145145
ports:
146146
- 4442:4442
147147
- 4443:4443
148148
- 4444:4444
149149
firefox:
150-
image: selenium/node-firefox:4.20.0-20240425
150+
image: selenium/node-firefox:4.34.0-20250717
151151
env:
152152
SE_EVENT_BUS_HOST: hub
153153
SE_EVENT_BUS_PUBLISH_PORT: 4442
@@ -279,9 +279,9 @@ jobs:
279279
npm run test
280280
if: matrix.floccus-adapter != 'git-xbel' && matrix.floccus-adapter != 'git-html'
281281

282-
- name: Cancelling parallel jobs
283-
if: failure() && matrix.floccus-adapter == 'fake' && matrix.test-name == 'test'
284-
uses: andymckay/[email protected]
282+
# - name: Cancelling parallel jobs
283+
# if: failure() && matrix.floccus-adapter == 'fake' && matrix.test-name == 'test'
284+
# uses: andymckay/[email protected]
285285

286286
summary:
287287
runs-on: ubuntu-latest

manifest.chrome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
"default_locale": "en",
1414

15-
"permissions": ["alarms", "bookmarks", "storage", "unlimitedStorage", "tabs", "identity"],
15+
"permissions": ["alarms", "bookmarks", "storage", "unlimitedStorage", "tabs", "tabGroups", "identity"],
1616
"optional_permissions": ["history"],
1717
"host_permissions": [
1818
"*://*/*"

manifest.firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
"default_locale": "en",
2121

22-
"permissions": ["*://*/*", "alarms", "bookmarks", "storage", "unlimitedStorage", "tabs", "identity"],
22+
"permissions": ["*://*/*", "alarms", "bookmarks", "storage", "unlimitedStorage", "tabs", "tabGroups", "identity"],
2323
"optional_permissions": ["history"],
2424
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
2525

0 commit comments

Comments
 (0)