repo
stringlengths
5
53
pr_number
int32
1
321k
task_type
stringclasses
2 values
issue_text
stringlengths
0
81.2k
pr_title
stringlengths
1
319
pr_body
stringlengths
0
105k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
gold_diff
stringlengths
0
202M
changed_files
listlengths
0
100
review_threads
listlengths
0
100
test_patch
stringlengths
0
23.4M
merged
bool
1 class
zen-browser/desktop
13,598
comment_to_fix
Add space and container sync
nit: no need for default arg
818c448dfc3ed7507e9055c538fa2a05ecb6a6aa
1ac926bea21e0ea1482583196d427fb08ef8d73c
diff --git a/src/zen/spaces/ZenSpaceManager.mjs b/src/zen/spaces/ZenSpaceManager.mjs index a97dd097814..54e1e2d1dd0 100644 --- a/src/zen/spaces/ZenSpaceManager.mjs +++ b/src/zen/spaces/ZenSpaceManager.mjs @@ -11,6 +11,7 @@ const lazy = {}; ChromeUtils.defineESModuleGetters(lazy, { ZenSessionStore: "resource:///mo...
[ "src/zen/spaces/ZenSpaceManager.mjs" ]
[ { "comment": "nit: no need for default arg", "path": "src/zen/spaces/ZenSpaceManager.mjs", "hunk": "@@ -170,6 +171,63 @@ class nsZenWorkspaces {\n }\n }\n \n+ /**\n+ * Applies live sync changes: updates workspace cache, removes deleted items,\n+ * then creates/updates pulled items.\n+ *\n+ ...
true
zen-browser/desktop
13,598
comment_to_fix
Add space and container sync
nit: Would be nice to have a private util function to call `lazy.ZenSyncStore.markItemChanged({ type: "space", id: uuid });`
818c448dfc3ed7507e9055c538fa2a05ecb6a6aa
1ac926bea21e0ea1482583196d427fb08ef8d73c
diff --git a/src/zen/spaces/ZenSpaceManager.mjs b/src/zen/spaces/ZenSpaceManager.mjs index a97dd097814..54e1e2d1dd0 100644 --- a/src/zen/spaces/ZenSpaceManager.mjs +++ b/src/zen/spaces/ZenSpaceManager.mjs @@ -11,6 +11,7 @@ const lazy = {}; ChromeUtils.defineESModuleGetters(lazy, { ZenSessionStore: "resource:///mo...
[ "src/zen/spaces/ZenSpaceManager.mjs" ]
[ { "comment": "nit: Would be nice to have a private util function to call `lazy.ZenSyncStore.markItemChanged({ type: \"space\", id: uuid });`", "path": "src/zen/spaces/ZenSpaceManager.mjs", "hunk": "@@ -1367,30 +1433,50 @@ class nsZenWorkspaces {\n if (this.privateWindowOrDisabled) {\n return;\...
true
zen-browser/desktop
13,598
comment_to_fix
Add space and container sync
`createChangedItemKey` only uses the raw `id` as the Map key. Because the tracker stores *both* spaces (UUID strings) and containers (numeric userContextIds), this can collide if a workspace id ever matches a container id string (e.g., a workspace uuid of "1"), causing one change to overwrite the other and potentially ...
818c448dfc3ed7507e9055c538fa2a05ecb6a6aa
1ac926bea21e0ea1482583196d427fb08ef8d73c
diff --git a/src/zen/sync/ZenWorkspacesSync.sys.mjs b/src/zen/sync/ZenWorkspacesSync.sys.mjs new file mode 100644 index 00000000000..175319169aa --- /dev/null +++ b/src/zen/sync/ZenWorkspacesSync.sys.mjs @@ -0,0 +1,404 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a ...
[ "src/zen/sync/ZenWorkspacesSync.sys.mjs" ]
[ { "comment": "`createChangedItemKey` only uses the raw `id` as the Map key. Because the tracker stores *both* spaces (UUID strings) and containers (numeric userContextIds), this can collide if a workspace id ever matches a container id string (e.g., a workspace uuid of \"1\"), causing one change to overwrite th...
true
zen-browser/desktop
13,598
comment_to_fix
Add space and container sync
If there is no synced browser window (or `gZenWorkspaces` isn’t initialized yet), incoming *workspace* changes are silently dropped here (containers still apply). That can cause remote workspace updates/deletes to never be applied. Consider failing the batch (so Sync retries later) when there are space changes and no s...
818c448dfc3ed7507e9055c538fa2a05ecb6a6aa
1ac926bea21e0ea1482583196d427fb08ef8d73c
diff --git a/src/zen/sync/ZenSyncManager.sys.mjs b/src/zen/sync/ZenSyncManager.sys.mjs new file mode 100644 index 00000000000..1b454da8166 --- /dev/null +++ b/src/zen/sync/ZenSyncManager.sys.mjs @@ -0,0 +1,160 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of t...
[ "src/zen/sync/ZenSyncManager.sys.mjs" ]
[ { "comment": "If there is no synced browser window (or `gZenWorkspaces` isn’t initialized yet), incoming *workspace* changes are silently dropped here (containers still apply). That can cause remote workspace updates/deletes to never be applied. Consider failing the batch (so Sync retries later) when there are ...
true
zen-browser/desktop
13,598
comment_to_fix
Add space and container sync
The new `id` parameter is used verbatim for `userContextId` and for the identity existence check. If a caller passes a string (e.g. "5"), it won’t match existing numeric ids via `===`, and the created identity may get a non-integer/string `userContextId`. Coerce/validate `id` to a positive safe integer before using it ...
818c448dfc3ed7507e9055c538fa2a05ecb6a6aa
1ac926bea21e0ea1482583196d427fb08ef8d73c
diff --git a/src/toolkit/components/contextualidentity/ContextualIdentityService-sys-mjs.patch b/src/toolkit/components/contextualidentity/ContextualIdentityService-sys-mjs.patch new file mode 100644 index 00000000000..1b108254d1f --- /dev/null +++ b/src/toolkit/components/contextualidentity/ContextualIdentityService-s...
[ "src/toolkit/components/contextualidentity/ContextualIdentityService-sys-mjs.patch" ]
[ { "comment": "The new `id` parameter is used verbatim for `userContextId` and for the identity existence check. If a caller passes a string (e.g. \"5\"), it won’t match existing numeric ids via `===`, and the created identity may get a non-integer/string `userContextId`. Coerce/validate `id` to a positive safe ...
true
zen-browser/desktop
14,047
issue_to_patch
"X" button to close update notice is not properly visible ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced ...
gh-14045: Fixed sidebar notifications overflowing text
880d61df16db2bc039636025482e07a9c42767d0
035085519475f9fdb0df16711278461ba077c6cb
diff --git a/src/zen/common/styles/zen-sidebar-notification.css b/src/zen/common/styles/zen-sidebar-notification.css index fdddbe54978..b80f94e9b16 100644 --- a/src/zen/common/styles/zen-sidebar-notification.css +++ b/src/zen/common/styles/zen-sidebar-notification.css @@ -27,7 +27,7 @@ display: flex; position: re...
[ "src/zen/common/styles/zen-sidebar-notification.css", "src/zen/spaces/ZenSpaceManager.mjs" ]
[ { "comment": "The heading is absolutely positioned with a hard-coded `width: calc(100% - 40px)`. This makes `flex: 1` a no-op (positioned elements don’t participate in flex layout) and makes the layout more brittle for text scaling/localization. You can keep the heading in normal flow and still prevent overlap/...
true
zen-browser/desktop
14,047
comment_to_fix
gh-14045: Fixed sidebar notifications overflowing text
The heading is absolutely positioned with a hard-coded `width: calc(100% - 40px)`. This makes `flex: 1` a no-op (positioned elements don’t participate in flex layout) and makes the layout more brittle for text scaling/localization. You can keep the heading in normal flow and still prevent overlap/overflow by vertically...
880d61df16db2bc039636025482e07a9c42767d0
035085519475f9fdb0df16711278461ba077c6cb
diff --git a/src/zen/common/styles/zen-sidebar-notification.css b/src/zen/common/styles/zen-sidebar-notification.css index fdddbe54978..b80f94e9b16 100644 --- a/src/zen/common/styles/zen-sidebar-notification.css +++ b/src/zen/common/styles/zen-sidebar-notification.css @@ -27,7 +27,7 @@ display: flex; position: re...
[ "src/zen/common/styles/zen-sidebar-notification.css" ]
[ { "comment": "The heading is absolutely positioned with a hard-coded `width: calc(100% - 40px)`. This makes `flex: 1` a no-op (positioned elements don’t participate in flex layout) and makes the layout more brittle for text scaling/localization. You can keep the heading in normal flow and still prevent overlap/...
true
zen-browser/desktop
14,012
issue_to_patch
Switching to a tab in a second Zen Window shows "New Tab" and doesn't load the tab (shows a blank window) ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I ha...
gh-13027: fix window sync lockup that left synced tabs blank in new windows (gh-14012)
Fixes #13027 `on_SSWindowClosing` never reset `#docShellSwitchPromise` to `null`, so after a window close every `on_TabSelect`/`on_focus` saw the resolved-but-truthy promise and skipped the window swap. Now it clears on window close and the swap only happens when the new tab is blank and another window holds the ...
5383737b238e2be8f278de1f1394a476b3bc4074
84a0a157b775b4758e8171fe11ce22b411a9f798
diff --git a/src/zen/sessionstore/ZenWindowSync.sys.mjs b/src/zen/sessionstore/ZenWindowSync.sys.mjs index 12993d74bcc..1c1ba7b2213 100644 --- a/src/zen/sessionstore/ZenWindowSync.sys.mjs +++ b/src/zen/sessionstore/ZenWindowSync.sys.mjs @@ -521,10 +521,13 @@ class nsZenWindowSync { if (flags & SYNC_FLAG_ICON) { ...
[ "src/zen/sessionstore/ZenWindowSync.sys.mjs" ]
[ { "comment": "`delete otherSelectedTab._zenContentsVisible` used to run whenever `otherSelectedTab` existed, but now it only runs when `!selHasContent`. This can leave `_zenContentsVisible` set on `otherSelectedTab` in cases where `selHasContent` is true, potentially creating inconsistent visibility bookkeeping...
true
zen-browser/desktop
14,012
comment_to_fix
gh-13027: fix window sync lockup that left synced tabs blank in new windows (gh-14012)
`delete otherSelectedTab._zenContentsVisible` used to run whenever `otherSelectedTab` existed, but now it only runs when `!selHasContent`. This can leave `_zenContentsVisible` set on `otherSelectedTab` in cases where `selHasContent` is true, potentially creating inconsistent visibility bookkeeping (two tabs marked visi...
5383737b238e2be8f278de1f1394a476b3bc4074
84a0a157b775b4758e8171fe11ce22b411a9f798
diff --git a/src/zen/sessionstore/ZenWindowSync.sys.mjs b/src/zen/sessionstore/ZenWindowSync.sys.mjs index 12993d74bcc..1c1ba7b2213 100644 --- a/src/zen/sessionstore/ZenWindowSync.sys.mjs +++ b/src/zen/sessionstore/ZenWindowSync.sys.mjs @@ -521,10 +521,13 @@ class nsZenWindowSync { if (flags & SYNC_FLAG_ICON) { ...
[ "src/zen/sessionstore/ZenWindowSync.sys.mjs" ]
[ { "comment": "`delete otherSelectedTab._zenContentsVisible` used to run whenever `otherSelectedTab` existed, but now it only runs when `!selHasContent`. This can leave `_zenContentsVisible` set on `otherSelectedTab` in cases where `selHasContent` is true, potentially creating inconsistent visibility bookkeeping...
true
zen-browser/desktop
14,012
comment_to_fix
gh-13027: fix window sync lockup that left synced tabs blank in new windows (gh-14012)
The check only treats the exact string `"about:blank"` as non-live. If `currentURI.spec` can be `"about:blank#..."` (or otherwise include a ref/query), this will be classified as “live” even though it is still an `about:blank` page, which could cause the swap gating to behave incorrectly. Consider using a more robust `...
5383737b238e2be8f278de1f1394a476b3bc4074
84a0a157b775b4758e8171fe11ce22b411a9f798
diff --git a/src/zen/sessionstore/ZenWindowSync.sys.mjs b/src/zen/sessionstore/ZenWindowSync.sys.mjs index 12993d74bcc..1c1ba7b2213 100644 --- a/src/zen/sessionstore/ZenWindowSync.sys.mjs +++ b/src/zen/sessionstore/ZenWindowSync.sys.mjs @@ -521,10 +521,13 @@ class nsZenWindowSync { if (flags & SYNC_FLAG_ICON) { ...
[ "src/zen/sessionstore/ZenWindowSync.sys.mjs" ]
[ { "comment": "The check only treats the exact string `\"about:blank\"` as non-live. If `currentURI.spec` can be `\"about:blank#...\"` (or otherwise include a ref/query), this will be classified as “live” even though it is still an `about:blank` page, which could cause the swap gating to behave incorrectly. Cons...
true
zen-browser/desktop
14,012
comment_to_fix
gh-13027: fix window sync lockup that left synced tabs blank in new windows (gh-14012)
This is not needed, we shouldn't care about the current url, imo the fix at `docShellSwitchPromise` should be enough
5383737b238e2be8f278de1f1394a476b3bc4074
84a0a157b775b4758e8171fe11ce22b411a9f798
diff --git a/src/zen/sessionstore/ZenWindowSync.sys.mjs b/src/zen/sessionstore/ZenWindowSync.sys.mjs index 12993d74bcc..1c1ba7b2213 100644 --- a/src/zen/sessionstore/ZenWindowSync.sys.mjs +++ b/src/zen/sessionstore/ZenWindowSync.sys.mjs @@ -521,10 +521,13 @@ class nsZenWindowSync { if (flags & SYNC_FLAG_ICON) { ...
[ "src/zen/sessionstore/ZenWindowSync.sys.mjs" ]
[ { "comment": "This is not needed, we shouldn't care about the current url, imo the fix at `docShellSwitchPromise` should be enough", "path": "src/zen/sessionstore/ZenWindowSync.sys.mjs", "hunk": "@@ -1154,12 +1167,16 @@ class nsZenWindowSync {\n aWindow,\n selectedTab.id\n );\n+ ...
true
zen-browser/desktop
14,012
comment_to_fix
gh-13027: fix window sync lockup that left synced tabs blank in new windows (gh-14012)
Empty catch block here makes it hard to understand which failures are expected/benign (e.g., tab removed/detached during sync) vs. real bugs. Please either document why the exception is safe to ignore, or log it at a low level (debug) to aid future debugging.
5383737b238e2be8f278de1f1394a476b3bc4074
84a0a157b775b4758e8171fe11ce22b411a9f798
diff --git a/src/zen/sessionstore/ZenWindowSync.sys.mjs b/src/zen/sessionstore/ZenWindowSync.sys.mjs index 12993d74bcc..1c1ba7b2213 100644 --- a/src/zen/sessionstore/ZenWindowSync.sys.mjs +++ b/src/zen/sessionstore/ZenWindowSync.sys.mjs @@ -521,10 +521,13 @@ class nsZenWindowSync { if (flags & SYNC_FLAG_ICON) { ...
[ "src/zen/sessionstore/ZenWindowSync.sys.mjs" ]
[ { "comment": "Empty catch block here makes it hard to understand which failures are expected/benign (e.g., tab removed/detached during sync) vs. real bugs. Please either document why the exception is safe to ignore, or log it at a low level (debug) to aid future debugging.", "path": "src/zen/sessionstore/Ze...
true
zen-browser/desktop
14,012
comment_to_fix
gh-13027: fix window sync lockup that left synced tabs blank in new windows (gh-14012)
This fixes a regression-prone cross-window state edge case (window close leaving a stale sync lock). There are existing window sync browser-chrome tests, but none appear to cover the “close a synced window, then open/select tabs in a new synced window” scenario that triggered #13027. Adding a regression test would help...
5383737b238e2be8f278de1f1394a476b3bc4074
84a0a157b775b4758e8171fe11ce22b411a9f798
diff --git a/src/zen/sessionstore/ZenWindowSync.sys.mjs b/src/zen/sessionstore/ZenWindowSync.sys.mjs index 12993d74bcc..1c1ba7b2213 100644 --- a/src/zen/sessionstore/ZenWindowSync.sys.mjs +++ b/src/zen/sessionstore/ZenWindowSync.sys.mjs @@ -521,10 +521,13 @@ class nsZenWindowSync { if (flags & SYNC_FLAG_ICON) { ...
[ "src/zen/sessionstore/ZenWindowSync.sys.mjs" ]
[ { "comment": "This fixes a regression-prone cross-window state edge case (window close leaving a stale sync lock). There are existing window sync browser-chrome tests, but none appear to cover the “close a synced window, then open/select tabs in a new synced window” scenario that triggered #13027. Adding a regr...
true
zen-browser/desktop
14,007
issue_to_patch
no-bug: Fixed boosts window not resizing back properly
b812bff07e07ac690cd2175a623317736b258911
d4a830ffb9281e1f6098a9cb179cfc8b4592699d
diff --git a/src/zen/boosts/ZenBoostsEditor.mjs b/src/zen/boosts/ZenBoostsEditor.mjs index c40a541d7b0..c65b45e16e3 100644 --- a/src/zen/boosts/ZenBoostsEditor.mjs +++ b/src/zen/boosts/ZenBoostsEditor.mjs @@ -374,12 +374,6 @@ export class nsZenBoostEditor { } windowElem.setAttribute("editor", "code"); - ...
[ "src/zen/boosts/ZenBoostsEditor.mjs", "src/zen/boosts/zen-boosts.css", "src/zen/spaces/zen-workspaces.css", "src/zen/tabs/zen-tabs/vertical-tabs.css", "src/zen/tests/mochitests/sandbox/browser.toml" ]
[ { "comment": "`promiseDocumentFlushed` is not a standard `Window` API and does not appear anywhere else in this codebase. Calling it here will throw when switching back to the boost editor, preventing the resize/move logic from running.", "path": "src/zen/boosts/ZenBoostsEditor.mjs", "hunk": "@@ -413,7 ...
diff --git a/src/zen/tests/mochitests/sandbox/browser.toml b/src/zen/tests/mochitests/sandbox/browser.toml index 8e5eb47231b..f12d053b98e 100644 --- a/src/zen/tests/mochitests/sandbox/browser.toml +++ b/src/zen/tests/mochitests/sandbox/browser.toml @@ -25,11 +25,11 @@ tags = "os_integration" ["browser_content_sandbo...
true
zen-browser/desktop
14,002
issue_to_patch
no-bug: Change wine build download
e04e910a6fa2fc2001c1daf3f3ed33962591d9af
1ea6dd7b6266218b62cd14659b3437e14148c656
diff --git a/.github/workflows/windows-release-build.yml b/.github/workflows/windows-release-build.yml index d2570dbfd77..8bbfbebefe6 100644 --- a/.github/workflows/windows-release-build.yml +++ b/.github/workflows/windows-release-build.yml @@ -154,7 +154,7 @@ jobs: zlib1g-dev \ aria2 ...
[ ".github/workflows/windows-release-build.yml", "configs/windows/mozconfig" ]
[]
true
zen-browser/desktop
13,979
issue_to_patch
[META]: Boosts
gh-13439: Implement dark mode boosts panel
<img width="1021" height="653" alt="image" src="https://github.com/user-attachments/assets/b1ac0412-2c28-42dc-acf1-8efbb9178513" /> <img width="519" height="639" alt="image" src="https://github.com/user-attachments/assets/4e46134b-1f5c-4a86-a0b4-07e7ed8bbcfd" /> <img width="297" height="647" alt="image" src="http...
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/locales/ar/browser/browser/zen-boosts.ftl b/locales/ar/browser/browser/zen-boosts.ftl index 7211fa124f6..eb42026a74a 100644 --- a/locales/ar/browser/browser/zen-boosts.ftl +++ b/locales/ar/browser/browser/zen-boosts.ftl @@ -29,9 +29,9 @@ zen-boost-css-picker = .tooltiptext = Pick Selector zen-boost-c...
[ "locales/ar/browser/browser/zen-boosts.ftl", "locales/bg/browser/browser/zen-boosts.ftl", "locales/bs/browser/browser/zen-boosts.ftl", "locales/ca/browser/browser/zen-boosts.ftl", "locales/cs/browser/browser/zen-boosts.ftl", "locales/cy/browser/browser/zen-boosts.ftl", "locales/da/browser/browser/zen-bo...
[ { "comment": "```suggestion\n color-scheme: light dark;\n```", "path": "src/zen/boosts/zen-advanced-color-options.css", "hunk": "@@ -5,11 +5,10 @@\n */\n \n #zen-boost-advanced-color-options-panel {\n- color-scheme: light;", "resolving_sha": "b4c55ff368484251761e2d5a0b671985b1d2a44c", "resolv...
true
zen-browser/desktop
13,979
comment_to_fix
gh-13439: Implement dark mode boosts panel
```suggestion color-scheme: light dark; ```
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/src/zen/boosts/zen-advanced-color-options.css b/src/zen/boosts/zen-advanced-color-options.css index 4cc651de896..385d075ab78 100644 --- a/src/zen/boosts/zen-advanced-color-options.css +++ b/src/zen/boosts/zen-advanced-color-options.css @@ -5,11 +5,10 @@ */ #zen-boost-advanced-color-options-panel { - ...
[ "src/zen/boosts/zen-advanced-color-options.css" ]
[ { "comment": "```suggestion\n color-scheme: light dark;\n```", "path": "src/zen/boosts/zen-advanced-color-options.css", "hunk": "@@ -5,11 +5,10 @@\n */\n \n #zen-boost-advanced-color-options-panel {\n- color-scheme: light;", "resolving_sha": "b4c55ff368484251761e2d5a0b671985b1d2a44c", "resolv...
true
zen-browser/desktop
13,979
comment_to_fix
gh-13439: Implement dark mode boosts panel
```suggestion color-scheme: light dark; ```
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/src/zen/boosts/zen-boosts.css b/src/zen/boosts/zen-boosts.css index f0b3c43ba85..ba3e57b3c6c 100644 --- a/src/zen/boosts/zen-boosts.css +++ b/src/zen/boosts/zen-boosts.css @@ -5,10 +5,33 @@ */ #zenBoostWindow { - /* For the mica effect we want a white tint */ - @media not (-moz-platform: linux) { - ...
[ "src/zen/boosts/zen-boosts.css" ]
[ { "comment": "```suggestion\r\n color-scheme: light dark;\r\n```", "path": "src/zen/boosts/zen-boosts.css", "hunk": "@@ -5,10 +5,33 @@\n */\n \n #zenBoostWindow {\n- /* For the mica effect we want a white tint */\n- @media not (-moz-platform: linux) {\n- color-scheme: light;", "resolving_sh...
true
zen-browser/desktop
13,979
comment_to_fix
gh-13439: Implement dark mode boosts panel
The editor window is instantiated immediately, but `ZenBoostsManager.openBoostWindow()` assigns `editor.domain` and `editor.openerWindow` *after* `openWindow()` returns. Without waiting for `load`, `window.domain` / `window.openerWindow` can still be unset here, which can crash the constructor (e.g. `openerWindow.gZenT...
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/src/zen/boosts/zen-boost-editor.inc.xhtml b/src/zen/boosts/zen-boost-editor.inc.xhtml index 15c75f57cb5..9cd64e411f2 100644 --- a/src/zen/boosts/zen-boost-editor.inc.xhtml +++ b/src/zen/boosts/zen-boost-editor.inc.xhtml @@ -34,14 +34,6 @@ <link rel="stylesheet" href="chrome://browser/content/zen-styles/...
[ "src/zen/boosts/zen-boost-editor.inc.xhtml" ]
[ { "comment": "The editor window is instantiated immediately, but `ZenBoostsManager.openBoostWindow()` assigns `editor.domain` and `editor.openerWindow` *after* `openWindow()` returns. Without waiting for `load`, `window.domain` / `window.openerWindow` can still be unset here, which can crash the constructor (e....
true
zen-browser/desktop
13,979
comment_to_fix
gh-13439: Implement dark mode boosts panel
`this.openerWindow.gZenThemePicker` is assumed to exist, but `openerWindow` can be temporarily unset during window startup (and there are other call sites in the codebase that guard with optional chaining). This can throw and prevent the editor from opening. Consider guarding and falling back to the editor window's `pr...
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/src/zen/boosts/ZenBoostsEditor.mjs b/src/zen/boosts/ZenBoostsEditor.mjs index 6956c124a48..c40a541d7b0 100644 --- a/src/zen/boosts/ZenBoostsEditor.mjs +++ b/src/zen/boosts/ZenBoostsEditor.mjs @@ -44,6 +44,7 @@ export class nsZenBoostEditor { this.lastDotSetPos = { x: 0, y: 0 }; this.currentBoostD...
[ "src/zen/boosts/ZenBoostsEditor.mjs" ]
[ { "comment": "`this.openerWindow.gZenThemePicker` is assumed to exist, but `openerWindow` can be temporarily unset during window startup (and there are other call sites in the codebase that guard with optional chaining). This can throw and prevent the editor from opening. Consider guarding and falling back to t...
true
zen-browser/desktop
13,979
comment_to_fix
gh-13439: Implement dark mode boosts panel
Setting `color-scheme: light dark` here overrides the editor window's forced scheme (set via `documentElement.style.colorScheme`), so the advanced options panel can end up rendering with a different scheme than the rest of the boost editor when the app forces light/dark independent of system preference. Let it inherit ...
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/src/zen/boosts/zen-advanced-color-options.css b/src/zen/boosts/zen-advanced-color-options.css index 4cc651de896..385d075ab78 100644 --- a/src/zen/boosts/zen-advanced-color-options.css +++ b/src/zen/boosts/zen-advanced-color-options.css @@ -5,11 +5,10 @@ */ #zen-boost-advanced-color-options-panel { - ...
[ "src/zen/boosts/zen-advanced-color-options.css" ]
[ { "comment": "Setting `color-scheme: light dark` here overrides the editor window's forced scheme (set via `documentElement.style.colorScheme`), so the advanced options panel can end up rendering with a different scheme than the rest of the boost editor when the app forces light/dark independent of system prefe...
true
zen-browser/desktop
13,979
comment_to_fix
gh-13439: Implement dark mode boosts panel
`openerWindow.gZenThemePicker` can be undefined (e.g. when the theme picker hasn't been initialized for the opening window), which will throw here and prevent the boost editor from opening. Use optional chaining and a safe fallback (e.g. `matchMedia`) when determining dark mode.
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/src/zen/boosts/ZenBoostsEditor.mjs b/src/zen/boosts/ZenBoostsEditor.mjs index 6956c124a48..c40a541d7b0 100644 --- a/src/zen/boosts/ZenBoostsEditor.mjs +++ b/src/zen/boosts/ZenBoostsEditor.mjs @@ -44,6 +44,7 @@ export class nsZenBoostEditor { this.lastDotSetPos = { x: 0, y: 0 }; this.currentBoostD...
[ "src/zen/boosts/ZenBoostsEditor.mjs" ]
[ { "comment": "`openerWindow.gZenThemePicker` can be undefined (e.g. when the theme picker hasn't been initialized for the opening window), which will throw here and prevent the boost editor from opening. Use optional chaining and a safe fallback (e.g. `matchMedia`) when determining dark mode.", "path": "src...
true
zen-browser/desktop
13,979
comment_to_fix
gh-13439: Implement dark mode boosts panel
Instantiating `nsZenBoostEditor` immediately can race with `openBoostWindow()` assigning `editor.domain` / `editor.openerWindow` (those are set on the window right after `openWindow()` returns). If this runs before those properties are assigned, `window.openerWindow`/`window.domain` will be undefined and the constructo...
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/src/zen/boosts/zen-boost-editor.inc.xhtml b/src/zen/boosts/zen-boost-editor.inc.xhtml index 15c75f57cb5..9cd64e411f2 100644 --- a/src/zen/boosts/zen-boost-editor.inc.xhtml +++ b/src/zen/boosts/zen-boost-editor.inc.xhtml @@ -34,14 +34,6 @@ <link rel="stylesheet" href="chrome://browser/content/zen-styles/...
[ "src/zen/boosts/zen-boost-editor.inc.xhtml" ]
[ { "comment": "Instantiating `nsZenBoostEditor` immediately can race with `openBoostWindow()` assigning `editor.domain` / `editor.openerWindow` (those are set on the window right after `openWindow()` returns). If this runs before those properties are assigned, `window.openerWindow`/`window.domain` will be undefi...
true
zen-browser/desktop
13,979
comment_to_fix
gh-13439: Implement dark mode boosts panel
Setting `color-scheme: light dark` on the panel makes the UA pick the used scheme based on system preference, which can diverge from the boost editor window's forced scheme (set via `documentElement.style.colorScheme`). Let the panel inherit the window's scheme instead (or remove the override).
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/src/zen/boosts/zen-advanced-color-options.css b/src/zen/boosts/zen-advanced-color-options.css index 4cc651de896..385d075ab78 100644 --- a/src/zen/boosts/zen-advanced-color-options.css +++ b/src/zen/boosts/zen-advanced-color-options.css @@ -5,11 +5,10 @@ */ #zen-boost-advanced-color-options-panel { - ...
[ "src/zen/boosts/zen-advanced-color-options.css" ]
[ { "comment": "Setting `color-scheme: light dark` on the panel makes the UA pick the used scheme based on system preference, which can diverge from the boost editor window's forced scheme (set via `documentElement.style.colorScheme`). Let the panel inherit the window's scheme instead (or remove the override).", ...
true
zen-browser/desktop
13,979
comment_to_fix
gh-13439: Implement dark mode boosts panel
`padding: auto;` is not a valid value (it will be ignored by the parser). If the intent is no padding for these grid buttons, set it explicitly (e.g. `0`).
2311e183f1d1dccc749c82fde2d0795fc35e1724
b4c55ff368484251761e2d5a0b671985b1d2a44c
diff --git a/src/zen/boosts/zen-boosts.css b/src/zen/boosts/zen-boosts.css index f0b3c43ba85..ba3e57b3c6c 100644 --- a/src/zen/boosts/zen-boosts.css +++ b/src/zen/boosts/zen-boosts.css @@ -5,10 +5,33 @@ */ #zenBoostWindow { - /* For the mica effect we want a white tint */ - @media not (-moz-platform: linux) { - ...
[ "src/zen/boosts/zen-boosts.css" ]
[ { "comment": "`padding: auto;` is not a valid value (it will be ignored by the parser). If the intent is no padding for these grid buttons, set it explicitly (e.g. `0`).", "path": "src/zen/boosts/zen-boosts.css", "hunk": "@@ -232,6 +259,7 @@ body {\n padding: 2px;\n \n & button {\n+ color: var(--...
true
zen-browser/desktop
13,991
issue_to_patch
no-bug: Sync upstream Firefox to version `151.0.3`
This PR syncs the upstream Firefox to version 151.0.3. * ✅ All patches applied cleanly. @mr-cheffy please review and merge this PR.
2311e183f1d1dccc749c82fde2d0795fc35e1724
3ed89ee2b7b7840a40514b3d516e18550692c608
diff --git a/README.md b/README.md index cb51a0f6129..f2655b75a6f 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,8 @@ Zen is a firefox-based browser with the aim of pushing your productivity to a ne ### Firefox Versions -- [`Release`](https://zen-browser.app/download) - Is currently built using Firefox versio...
[ "README.md", "build/firefox-cache/l10n-last-commit-hash", "src/zen/tests/mochitests/sandbox/browser.toml", "surfer.json" ]
[]
diff --git a/src/zen/tests/mochitests/sandbox/browser.toml b/src/zen/tests/mochitests/sandbox/browser.toml index f12d053b98e..8e5eb47231b 100644 --- a/src/zen/tests/mochitests/sandbox/browser.toml +++ b/src/zen/tests/mochitests/sandbox/browser.toml @@ -25,11 +25,11 @@ tags = "os_integration" ["browser_content_sandbo...
true
zen-browser/desktop
13,987
issue_to_patch
Cannot open Twilight without Nightly popup ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced on Mozilla Fire...
gh-13745: Disable desktop launcher for windows
8ea65cba48263a7d655cb0aceeaea1b28648a7c5
3496e4ecee378bfea7dd8c5d57c8c000ca245150
diff --git a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch index f33a99404cc..43314bcc02f 100644 --- a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch +++ b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch @@ -140,9 +140,...
[ "src/browser/components/urlbar/content/UrlbarInput-mjs.patch", "src/browser/installer/windows/nsis/defines-nsi-in.patch", "src/toolkit/moz-configure.patch" ]
[ { "comment": "Inline comment spacing here doesn’t follow the typical Python style (2+ spaces before an inline comment). Using the standard spacing avoids lint noise if moz.configure is checked by style tooling.", "path": "src/toolkit/moz-configure.patch", "hunk": "@@ -64,3 +64,12 @@ index 226d0c5a93a9a2...
true
zen-browser/desktop
13,987
comment_to_fix
gh-13745: Disable desktop launcher for windows
Inline comment spacing here doesn’t follow the typical Python style (2+ spaces before an inline comment). Using the standard spacing avoids lint noise if moz.configure is checked by style tooling.
8ea65cba48263a7d655cb0aceeaea1b28648a7c5
3496e4ecee378bfea7dd8c5d57c8c000ca245150
diff --git a/src/toolkit/moz-configure.patch b/src/toolkit/moz-configure.patch index cacaabb60df..48f198e0c3c 100644 --- a/src/toolkit/moz-configure.patch +++ b/src/toolkit/moz-configure.patch @@ -1,8 +1,8 @@ diff --git a/toolkit/moz.configure b/toolkit/moz.configure -index 226d0c5a93a9a2404e1974001da4e34b7b670067..b7...
[ "src/toolkit/moz-configure.patch" ]
[ { "comment": "Inline comment spacing here doesn’t follow the typical Python style (2+ spaces before an inline comment). Using the standard spacing avoids lint noise if moz.configure is checked by style tooling.", "path": "src/toolkit/moz-configure.patch", "hunk": "@@ -64,3 +64,12 @@ index 226d0c5a93a9a2...
true
zen-browser/desktop
13,987
comment_to_fix
gh-13745: Disable desktop launcher for windows
This UrlbarInput behavior/timing change appears unrelated to the PR’s stated goal (disabling the Windows desktop launcher). Consider splitting this into a separate PR, or update the PR title/description to reflect the additional functional change (and rationale).
8ea65cba48263a7d655cb0aceeaea1b28648a7c5
3496e4ecee378bfea7dd8c5d57c8c000ca245150
diff --git a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch index f33a99404cc..43314bcc02f 100644 --- a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch +++ b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch @@ -140,9 +140,...
[ "src/browser/components/urlbar/content/UrlbarInput-mjs.patch" ]
[ { "comment": "This UrlbarInput behavior/timing change appears unrelated to the PR’s stated goal (disabling the Windows desktop launcher). Consider splitting this into a separate PR, or update the PR title/description to reflect the additional functional change (and rationale).", "path": "src/browser/compone...
true
zen-browser/desktop
13,976
issue_to_patch
New window does not auto focus url bar with zen.urlbar.replace-newtab set to false ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this is...
gh-12112: Fixed auto focus for new windows not working
64e2e49a00c7b22cbaa90680116452615f5bef2b
0058ab898ba770fcd6778be531ff7f57e91a4502
diff --git a/.github/workflows/sync-upstream.yml b/.github/workflows/sync-upstream.yml index e4bca915621..e2662de2192 100644 --- a/.github/workflows/sync-upstream.yml +++ b/.github/workflows/sync-upstream.yml @@ -129,7 +129,7 @@ jobs: token: ${{ secrets.DEPLOY_KEY }} commit-message: "chore: Sync u...
[ ".github/workflows/sync-upstream.yml", "src/browser/components/urlbar/content/UrlbarInput-mjs.patch", "src/browser/themes/shared/zen-icons/icons.css", "src/zen/common/styles/zen-single-components.css", "src/zen/spaces/ZenSpaceManager.mjs", "src/zen/tests/spaces/browser.toml", "src/zen/tests/spaces/brows...
[ { "comment": "`#zen-site-data-icon-button image` sets `-moz-context-properties: fill, fill-opacity` but doesn’t set a `fill` value. Throughout this file, rules that use `-moz-context-properties: fill` also set `fill: currentColor` (e.g. icons.css:13-15), so `color` changes reliably drive the SVG’s context fill....
diff --git a/src/zen/tests/spaces/browser.toml b/src/zen/tests/spaces/browser.toml index deacec1f7de..99c7db0037a 100644 --- a/src/zen/tests/spaces/browser.toml +++ b/src/zen/tests/spaces/browser.toml @@ -14,6 +14,8 @@ support-files = [ ["browser_issue_10455.js"] +["browser_issue_12112.js"] + ["browser_issue_8699...
true
zen-browser/desktop
13,976
comment_to_fix
gh-12112: Fixed auto focus for new windows not working
`#zen-site-data-icon-button image` sets `-moz-context-properties: fill, fill-opacity` but doesn’t set a `fill` value. Throughout this file, rules that use `-moz-context-properties: fill` also set `fill: currentColor` (e.g. icons.css:13-15), so `color` changes reliably drive the SVG’s context fill. Consider aligning wit...
64e2e49a00c7b22cbaa90680116452615f5bef2b
0058ab898ba770fcd6778be531ff7f57e91a4502
diff --git a/src/browser/themes/shared/zen-icons/icons.css b/src/browser/themes/shared/zen-icons/icons.css index ed143a42b73..bf563df958a 100644 --- a/src/browser/themes/shared/zen-icons/icons.css +++ b/src/browser/themes/shared/zen-icons/icons.css @@ -520,7 +520,8 @@ list-style-image: url("permissions-fill.svg");...
[ "src/browser/themes/shared/zen-icons/icons.css" ]
[ { "comment": "`#zen-site-data-icon-button image` sets `-moz-context-properties: fill, fill-opacity` but doesn’t set a `fill` value. Throughout this file, rules that use `-moz-context-properties: fill` also set `fill: currentColor` (e.g. icons.css:13-15), so `color` changes reliably drive the SVG’s context fill....
true
zen-browser/desktop
13,670
issue_to_patch
no-bug: Sync upstream Firefox to version `150.0.3`
This PR syncs the upstream Firefox to version 150.0.3. * ⚠️ Some patches did not apply cleanly. Please review them carefully. @mr-cheffy please review and merge this PR.
0a7ee3fcf0048c00b4e1e639b3c28a96b18a5f2f
0dbe7019d15beff12eb3b134d714d90f861576b0
diff --git a/.github/workflows/sync-upstream.yml b/.github/workflows/sync-upstream.yml index a8f81b400e1..e4bca915621 100644 --- a/.github/workflows/sync-upstream.yml +++ b/.github/workflows/sync-upstream.yml @@ -129,7 +129,7 @@ jobs: token: ${{ secrets.DEPLOY_KEY }} commit-message: "chore: Sync u...
[ ".github/workflows/sync-upstream.yml", "README.md", "build/firefox-cache/l10n-last-commit-hash", "surfer.json" ]
[]
true
zen-browser/desktop
13,977
issue_to_patch
[META]: Boosts
gh-13439: Add tests coverage for boosts
64e2e49a00c7b22cbaa90680116452615f5bef2b
d555912e2ac7267dfedfc3129282ca035f034a7b
diff --git a/package.json b/package.json index 6e7fd8fd098..c62853c08fa 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "surfer": "surfer", "test": "python3 scripts/run_tests.py", "test:dbg": "python3 scripts/run_tests.py --jsdebugger --debug-on-failure", - "test:gtest": "cd engine && ....
[ "package.json", "src/zen/boosts/gtest/TestZenBoostsAccentCache.cpp", "src/zen/boosts/gtest/TestZenBoostsResolveStyleColor.cpp", "src/zen/boosts/gtest/moz.build", "src/zen/boosts/nsZenBoostsBackend.cpp", "src/zen/boosts/nsZenBoostsBackend.h", "src/zen/tests/boosts/browser.toml", "src/zen/tests/boosts/b...
[ { "comment": "## Unused variable, import, function or class\n\n<p>Unused function setBoost.</p>", "path": "src/zen/tests/boosts/head.js", "hunk": "@@ -5,3 +5,108 @@\n const { SelectorComponent } = ChromeUtils.importESModule(\n \"resource:///modules/zen/boosts/ZenSelectorComponent.sys.mjs\"\n );\n+\n+/...
diff --git a/src/zen/tests/boosts/browser.toml b/src/zen/tests/boosts/browser.toml index 9cacfe47f93..a514586e625 100644 --- a/src/zen/tests/boosts/browser.toml +++ b/src/zen/tests/boosts/browser.toml @@ -8,6 +8,41 @@ support-files = [ ] ["browser_boost_selector_basic.js"] + ["browser_boost_selector_escaping.js"] ...
true
zen-browser/desktop
13,977
comment_to_fix
gh-13439: Add tests coverage for boosts
`pixelAt` renders the entire viewport into a full-size canvas just to read a single pixel. With many pixel samples across these tests, this can add significant time/memory overhead and increase test flakiness on large test window sizes. You can draw just a 1×1 region at (x,y) into a 1×1 canvas and read back (0,0).
64e2e49a00c7b22cbaa90680116452615f5bef2b
d555912e2ac7267dfedfc3129282ca035f034a7b
diff --git a/src/zen/tests/boosts/head.js b/src/zen/tests/boosts/head.js index 7514c6dea02..011447b43f9 100644 --- a/src/zen/tests/boosts/head.js +++ b/src/zen/tests/boosts/head.js @@ -5,3 +5,108 @@ const { SelectorComponent } = ChromeUtils.importESModule( "resource:///modules/zen/boosts/ZenSelectorComponent.sys.mj...
[ "src/zen/tests/boosts/head.js" ]
[ { "comment": "`pixelAt` renders the entire viewport into a full-size canvas just to read a single pixel. With many pixel samples across these tests, this can add significant time/memory overhead and increase test flakiness on large test window sizes. You can draw just a 1×1 region at (x,y) into a 1×1 canvas and...
true
zen-browser/desktop
13,977
comment_to_fix
gh-13439: Add tests coverage for boosts
This suite later assumes the accent cache size is exactly 4 (`ASSERT_EQ(AccentCacheSize(), 4u)`), but this test only asserts ">= 4". That inconsistency makes the intended contract unclear and will cause confusing failures if the size is ever adjusted. Either make all tests size-agnostic or explicitly assert the current...
64e2e49a00c7b22cbaa90680116452615f5bef2b
d555912e2ac7267dfedfc3129282ca035f034a7b
diff --git a/src/zen/boosts/gtest/TestZenBoostsAccentCache.cpp b/src/zen/boosts/gtest/TestZenBoostsAccentCache.cpp new file mode 100644 index 00000000000..39896f8639e --- /dev/null +++ b/src/zen/boosts/gtest/TestZenBoostsAccentCache.cpp @@ -0,0 +1,104 @@ +/* This Source Code Form is subject to the terms of the Mozilla ...
[ "src/zen/boosts/gtest/TestZenBoostsAccentCache.cpp" ]
[ { "comment": "This suite later assumes the accent cache size is exactly 4 (`ASSERT_EQ(AccentCacheSize(), 4u)`), but this test only asserts \">= 4\". That inconsistency makes the intended contract unclear and will cause confusing failures if the size is ever adjusted. Either make all tests size-agnostic or expli...
true
zen-browser/desktop
13,977
comment_to_fix
gh-13439: Add tests coverage for boosts
Changing `test:gtest` to only run `Zen*` gtests narrows coverage for anyone (or any automation) relying on `npm run test:gtest` to run the full gtest suite. If you want a convenient Zen-only target, it’s safer to keep `test:gtest` running all gtests and add a separate script (e.g. `test:gtest:zen`).
64e2e49a00c7b22cbaa90680116452615f5bef2b
d555912e2ac7267dfedfc3129282ca035f034a7b
diff --git a/package.json b/package.json index 6e7fd8fd098..c62853c08fa 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "surfer": "surfer", "test": "python3 scripts/run_tests.py", "test:dbg": "python3 scripts/run_tests.py --jsdebugger --debug-on-failure", - "test:gtest": "cd engine && ....
[ "package.json" ]
[ { "comment": "Changing `test:gtest` to only run `Zen*` gtests narrows coverage for anyone (or any automation) relying on `npm run test:gtest` to run the full gtest suite. If you want a convenient Zen-only target, it’s safer to keep `test:gtest` running all gtests and add a separate script (e.g. `test:gtest:zen`...
true
zen-browser/desktop
13,975
issue_to_patch
Boost button appears on extension pages but does nothing ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced o...
gh-13941: Fixed boost button viable when non-effective, CSS part
In PR #13953, I thought there is a CSS rule for disabled buttons to prevent them from pressed. Turns out, there is, but only applies on this area <img width="231" height="47" alt="image" src="https://github.com/user-attachments/assets/a09c8f89-010a-4812-b65a-deaddef8caff" /> So in this PR, same rules are added to...
feca914821a6ea510691ee3f2120b62ed44830c2
5216fa29077cb8db4fe9c91afbb494d35f4a4b2a
diff --git a/src/zen/common/styles/zen-single-components.css b/src/zen/common/styles/zen-single-components.css index d34677a83cf..02a2d64d2fc 100644 --- a/src/zen/common/styles/zen-single-components.css +++ b/src/zen/common/styles/zen-single-components.css @@ -540,6 +540,10 @@ & toolbarbutton { margin: 0; + +...
[ "src/zen/common/styles/zen-single-components.css" ]
[ { "comment": "What if we just not show it at all? `visibility: hidden;`", "path": "src/zen/common/styles/zen-single-components.css", "hunk": "@@ -540,6 +540,11 @@\n \n & toolbarbutton {\n margin: 0;\n+\n+ &[disabled] {", "resolving_sha": "5216fa29077cb8db4fe9c91afbb494d35f4a4b2a", "reso...
true
zen-browser/desktop
13,975
comment_to_fix
gh-13941: Fixed boost button viable when non-effective, CSS part
What if we just not show it at all? `visibility: hidden;`
feca914821a6ea510691ee3f2120b62ed44830c2
5216fa29077cb8db4fe9c91afbb494d35f4a4b2a
diff --git a/src/zen/common/styles/zen-single-components.css b/src/zen/common/styles/zen-single-components.css index d34677a83cf..02a2d64d2fc 100644 --- a/src/zen/common/styles/zen-single-components.css +++ b/src/zen/common/styles/zen-single-components.css @@ -540,6 +540,10 @@ & toolbarbutton { margin: 0; + +...
[ "src/zen/common/styles/zen-single-components.css" ]
[ { "comment": "What if we just not show it at all? `visibility: hidden;`", "path": "src/zen/common/styles/zen-single-components.css", "hunk": "@@ -540,6 +540,11 @@\n \n & toolbarbutton {\n margin: 0;\n+\n+ &[disabled] {", "resolving_sha": "5216fa29077cb8db4fe9c91afbb494d35f4a4b2a", "reso...
true
zen-browser/desktop
13,975
comment_to_fix
gh-13941: Fixed boost button viable when non-effective, CSS part
The new disabled styling for footer toolbarbuttons hides the button (`visibility: hidden`) rather than matching the existing disabled behavior used elsewhere in this file (e.g., `#zen-site-data-header & toolbarbutton[disabled]` uses reduced opacity + `pointer-events: none`). Hiding can leave an empty gap and removes th...
feca914821a6ea510691ee3f2120b62ed44830c2
5216fa29077cb8db4fe9c91afbb494d35f4a4b2a
diff --git a/src/zen/common/styles/zen-single-components.css b/src/zen/common/styles/zen-single-components.css index d34677a83cf..02a2d64d2fc 100644 --- a/src/zen/common/styles/zen-single-components.css +++ b/src/zen/common/styles/zen-single-components.css @@ -540,6 +540,10 @@ & toolbarbutton { margin: 0; + +...
[ "src/zen/common/styles/zen-single-components.css" ]
[ { "comment": "The new disabled styling for footer toolbarbuttons hides the button (`visibility: hidden`) rather than matching the existing disabled behavior used elsewhere in this file (e.g., `#zen-site-data-header & toolbarbutton[disabled]` uses reduced opacity + `pointer-events: none`). Hiding can leave an em...
true
zen-browser/desktop
13,965
issue_to_patch
Boosts "Text Color" bugs out if dragged while using auto theme ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reprod...
gh-13949: Secondary dot snapping to center in a new Boost
c7818fe35554b76932754f30e26a7b8e2c212139
39746d3d84c2bef01e8f0bd0d41a82043cdb722c
diff --git a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch index bb291a8b8a3..f4e335a6dc0 100644 --- a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch +++ b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch @@ -1,5 +1,5 @@...
[ "src/browser/components/urlbar/content/UrlbarInput-mjs.patch", "src/zen/boosts/ZenBoostsEditor.mjs", "src/zen/boosts/ZenBoostsManager.sys.mjs" ]
[ { "comment": "The comment has a grammatical typo: \"they dot\" should be \"the dot\".", "path": "src/zen/boosts/ZenBoostsEditor.mjs", "hunk": "@@ -853,6 +858,23 @@ ${cssSelector} {\n const centerX = rect.left + rect.width / 2;\n const centerY = rect.top + rect.height / 2;\n const radius = (r...
true
zen-browser/desktop
13,965
comment_to_fix
gh-13949: Secondary dot snapping to center in a new Boost
The comment has a grammatical typo: "they dot" should be "the dot".
c7818fe35554b76932754f30e26a7b8e2c212139
39746d3d84c2bef01e8f0bd0d41a82043cdb722c
diff --git a/src/zen/boosts/ZenBoostsEditor.mjs b/src/zen/boosts/ZenBoostsEditor.mjs index 723229743f3..6956c124a48 100644 --- a/src/zen/boosts/ZenBoostsEditor.mjs +++ b/src/zen/boosts/ZenBoostsEditor.mjs @@ -824,13 +824,19 @@ ${cssSelector} { const dotSec = this.doc.querySelector( "#zen-boost-color-picker-...
[ "src/zen/boosts/ZenBoostsEditor.mjs" ]
[ { "comment": "The comment has a grammatical typo: \"they dot\" should be \"the dot\".", "path": "src/zen/boosts/ZenBoostsEditor.mjs", "hunk": "@@ -853,6 +858,23 @@ ${cssSelector} {\n const centerX = rect.left + rect.width / 2;\n const centerY = rect.top + rect.height / 2;\n const radius = (r...
true
zen-browser/desktop
13,965
comment_to_fix
gh-13949: Secondary dot snapping to center in a new Boost
You removed the close call but left in the comments about closing the popup, is this intentional?
c7818fe35554b76932754f30e26a7b8e2c212139
39746d3d84c2bef01e8f0bd0d41a82043cdb722c
diff --git a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch index bb291a8b8a3..f4e335a6dc0 100644 --- a/src/browser/components/urlbar/content/UrlbarInput-mjs.patch +++ b/src/browser/components/urlbar/content/UrlbarInput-mjs.patch @@ -1,5 +1,5 @@...
[ "src/browser/components/urlbar/content/UrlbarInput-mjs.patch" ]
[ { "comment": "You removed the close call but left in the comments about closing the popup, is this intentional?", "path": "src/browser/components/urlbar/content/UrlbarInput-mjs.patch", "hunk": "@@ -242,23 +244,23 @@ index d6615ec5a29f3e3327ac4171f3fc5d9a69bd09fe..e1128b0d7f5accfd48af27f99e3b2e64\n ...
true
zen-browser/desktop
13,956
issue_to_patch
Material Symbols are broken when using custom font through boosts ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be rep...
gh-13839: Fix icons when using custom fonts
072d874f7832f1383500b4bf6fd271ae7a1047d8
6d1a0681ece7a409a71ebf77f42e9e5d3b9863f4
diff --git a/src/zen/boosts/ZenBoostStyles.sys.mjs b/src/zen/boosts/ZenBoostStyles.sys.mjs index 40c230f6f05..ac2a022f8bb 100644 --- a/src/zen/boosts/ZenBoostStyles.sys.mjs +++ b/src/zen/boosts/ZenBoostStyles.sys.mjs @@ -82,7 +82,7 @@ export class nsZenBoostStyles { if (fontCase != "" || fontFamily != "") { ...
[ "src/zen/boosts/ZenBoostStyles.sys.mjs" ]
[ { "comment": "i'd remove \"span\"", "path": "src/zen/boosts/ZenBoostStyles.sys.mjs", "hunk": "@@ -82,7 +82,7 @@ export class nsZenBoostStyles {\n \n if (fontCase != \"\" || fontFamily != \"\") {\n style += `/* Text Format */\\n`;\n- style += `body * {\\n`;\n+ style += `body *:not(spa...
true
zen-browser/desktop
13,956
comment_to_fix
gh-13839: Fix icons when using custom fonts
i'd remove "span"
072d874f7832f1383500b4bf6fd271ae7a1047d8
6d1a0681ece7a409a71ebf77f42e9e5d3b9863f4
diff --git a/src/zen/boosts/ZenBoostStyles.sys.mjs b/src/zen/boosts/ZenBoostStyles.sys.mjs index 40c230f6f05..ac2a022f8bb 100644 --- a/src/zen/boosts/ZenBoostStyles.sys.mjs +++ b/src/zen/boosts/ZenBoostStyles.sys.mjs @@ -82,7 +82,7 @@ export class nsZenBoostStyles { if (fontCase != "" || fontFamily != "") { ...
[ "src/zen/boosts/ZenBoostStyles.sys.mjs" ]
[ { "comment": "i'd remove \"span\"", "path": "src/zen/boosts/ZenBoostStyles.sys.mjs", "hunk": "@@ -82,7 +82,7 @@ export class nsZenBoostStyles {\n \n if (fontCase != \"\" || fontFamily != \"\") {\n style += `/* Text Format */\\n`;\n- style += `body * {\\n`;\n+ style += `body *:not(spa...
true
zen-browser/desktop
13,964
issue_to_patch
Cannot open Twilight without Nightly popup ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced on Mozilla Fire...
gh-13745: Fixed nightly being installed accidentally
193d004a37bbe6cca5c27ad1f39dd529d4edc89d
dee4cf176abc699ea51fe37e799adccf11a98060
diff --git a/src/browser/installer/windows/nsis/defines-nsi-in.patch b/src/browser/installer/windows/nsis/defines-nsi-in.patch index 862ac618b77..f423ee10dde 100644 --- a/src/browser/installer/windows/nsis/defines-nsi-in.patch +++ b/src/browser/installer/windows/nsis/defines-nsi-in.patch @@ -1,8 +1,16 @@ diff --git a/...
[ "src/browser/installer/windows/nsis/defines-nsi-in.patch", "surfer.json" ]
[]
true
zen-browser/desktop
13,959
issue_to_patch
Video controls going under the screen when in fullscreen using Zen in fullscreen mode ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this...
gh-10594: Change conditional for triggering padding bump
Intended to fix video controls going off-screen when in compact mode: #10594 Tested to no longer overflow with: - Compact mode enabled & disabled - `zen.theme.content-element-separation` set to 8 (default) & 0 (to remove borders)
072d874f7832f1383500b4bf6fd271ae7a1047d8
4567657130a38ffd66e665c84661de0ba37f0ec5
diff --git a/src/zen/common/zenThemeModifier.js b/src/zen/common/zenThemeModifier.js index 30f2a42ce3a..314e5fc6e49 100644 --- a/src/zen/common/zenThemeModifier.js +++ b/src/zen/common/zenThemeModifier.js @@ -168,17 +168,17 @@ document.documentElement.setAttribute("zen-no-padding", true); } else { ...
[ "src/zen/common/zenThemeModifier.js" ]
[]
true
zen-browser/desktop
13,953
issue_to_patch
Boost button appears on extension pages but does nothing ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced o...
gh-13941: Fixed boost button viable when non-effective
This PR attempts to adds an attribute `disabled="true"` to boost button when uri is not legit for boost. The button would then become dimmed and not interactable to cursor based on existing CSS rules. Fix #13941
7aa0ca05ec289ba5ebb441e93cb94c88501033ac
ad4fd66fec591825e6115ca5fb35079c26c3f8e5
diff --git a/src/zen/urlbar/ZenSiteDataPanel.sys.mjs b/src/zen/urlbar/ZenSiteDataPanel.sys.mjs index b8d7e79f5f2..90e037b09a6 100644 --- a/src/zen/urlbar/ZenSiteDataPanel.sys.mjs +++ b/src/zen/urlbar/ZenSiteDataPanel.sys.mjs @@ -250,12 +250,12 @@ export class nsZenSiteDataPanel { const boostButton = this.document....
[ "src/zen/urlbar/ZenSiteDataPanel.sys.mjs" ]
[ { "comment": "Now that I see it, can we early return here? Not sure why there's a second if statement", "path": "src/zen/urlbar/ZenSiteDataPanel.sys.mjs", "hunk": "@@ -250,12 +250,15 @@ export class nsZenSiteDataPanel {\n const boostButton = this.document.getElementById(\"zen-site-data-boost\");\n ...
true
zen-browser/desktop
13,953
comment_to_fix
gh-13941: Fixed boost button viable when non-effective
Now that I see it, can we early return here? Not sure why there's a second if statement
7aa0ca05ec289ba5ebb441e93cb94c88501033ac
ad4fd66fec591825e6115ca5fb35079c26c3f8e5
diff --git a/src/zen/urlbar/ZenSiteDataPanel.sys.mjs b/src/zen/urlbar/ZenSiteDataPanel.sys.mjs index b8d7e79f5f2..90e037b09a6 100644 --- a/src/zen/urlbar/ZenSiteDataPanel.sys.mjs +++ b/src/zen/urlbar/ZenSiteDataPanel.sys.mjs @@ -250,12 +250,12 @@ export class nsZenSiteDataPanel { const boostButton = this.document....
[ "src/zen/urlbar/ZenSiteDataPanel.sys.mjs" ]
[ { "comment": "Now that I see it, can we early return here? Not sure why there's a second if statement", "path": "src/zen/urlbar/ZenSiteDataPanel.sys.mjs", "hunk": "@@ -250,12 +250,15 @@ export class nsZenSiteDataPanel {\n const boostButton = this.document.getElementById(\"zen-site-data-boost\");\n ...
true
zen-browser/desktop
13,954
issue_to_patch
The "loading" bar at the top ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced on Mozilla Firefox. - [x] I h...
gh-13947: Fixed loading bar appearing on dom fullscreen
d76fa13eddf127eaea33b624e82981086987b138
b6da7ce7856fbdc60b6a157b9c4769773d806271
diff --git a/src/zen/common/styles/zen-single-components.css b/src/zen/common/styles/zen-single-components.css index 2544b8b11dc..d34677a83cf 100644 --- a/src/zen/common/styles/zen-single-components.css +++ b/src/zen/common/styles/zen-single-components.css @@ -786,4 +786,8 @@ @media not -moz-pref("zen.view.enable-lo...
[ "src/zen/common/styles/zen-single-components.css" ]
[]
true
zen-browser/desktop
13,938
issue_to_patch
Add Boosts animated icons and minor adjustments
Extends #12655 1. Added animated icon for Boosts 2. Improved linear gradients for Downloads and Spaces icons
2c11b9295e72038edb3a26e64aaa7ba894109883
591edceb23e8ce2da5f16035cb5affed5bbad4ec
diff --git a/src/browser/themes/shared/zen-icons/common/library/library-boosts-active.svg b/src/browser/themes/shared/zen-icons/common/library/library-boosts-active.svg new file mode 100644 index 00000000000..747efb9b9fb --- /dev/null +++ b/src/browser/themes/shared/zen-icons/common/library/library-boosts-active.svg @@...
[ "src/browser/themes/shared/zen-icons/common/library/library-boosts-active.svg", "src/browser/themes/shared/zen-icons/common/library/library-boosts.svg", "src/browser/themes/shared/zen-icons/common/library/library-downloads-active.svg", "src/browser/themes/shared/zen-icons/common/library/library-spaces-active....
[]
true
zen-browser/desktop
13,924
issue_to_patch
empty keyboard shortcut label ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced on Mozilla Firefox. - [x] I ...
gh-13923: fix empty keyboard shortcut label caused by `key_duplicateTab`
fixes: #13923 didn't add `key_duplicateTab` in `zenIgnoreKeyboardShortcutIDs` in #13856 PR
5bbbadd77be956deaf91633cd4f0611403b0ba53
4a039679fd961cf4fa51c37ea5c9ab530d0f9a76
diff --git a/src/browser/components/preferences/zen-settings.js b/src/browser/components/preferences/zen-settings.js index 2d6bef1a8bd..288b342d63e 100644 --- a/src/browser/components/preferences/zen-settings.js +++ b/src/browser/components/preferences/zen-settings.js @@ -825,6 +825,7 @@ var zenIgnoreKeyboardShortcutID...
[ "src/browser/components/preferences/zen-settings.js" ]
[]
true
zen-browser/desktop
13,896
issue_to_patch
Toolbar Download and share button icons are not at consistent sizes ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be r...
gh-13857: Use Zen icon for share toolbar button
Fixes #13857. This updates the toolbar share button to use Zen's shared icon set instead of the upstream Firefox asset. The downloads button already points at the Zen icon set, so this keeps the two toolbar icons visually consistent. Validation: - Checked that `share-tab-button` is the Firefox toolbar share button id...
8a0a6cbede134bd54aa809441c96817fd360c9dc
8b6d56d9a40e2e6575f580e5ab81ac232bd88c4d
diff --git a/src/browser/themes/shared/zen-icons/icons.css b/src/browser/themes/shared/zen-icons/icons.css index cb1b6f89282..ed143a42b73 100644 --- a/src/browser/themes/shared/zen-icons/icons.css +++ b/src/browser/themes/shared/zen-icons/icons.css @@ -435,6 +435,7 @@ } #zen-copy-current-url-button, +#share-tab-but...
[ "src/browser/themes/shared/zen-icons/icons.css" ]
[]
true
zen-browser/desktop
13,893
issue_to_patch
Boost color customization doesn't persist ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced on Mozilla Firef...
gh-13844: Part 3 - Fixed text inputs not being filtered through boosts
89267dfea01466a78aa4d2229f0f2d1d3e57eaa5
a5907737cf3bea903ed3ab611a8794f66eb4e62b
diff --git a/src/image/AutoRestoreSVGState-h.patch b/src/image/AutoRestoreSVGState-h.patch new file mode 100644 index 00000000000..bd650213592 --- /dev/null +++ b/src/image/AutoRestoreSVGState-h.patch @@ -0,0 +1,14 @@ +diff --git a/image/AutoRestoreSVGState.h b/image/AutoRestoreSVGState.h +index be639a7b78c13c2d56be49a...
[ "src/image/AutoRestoreSVGState-h.patch", "src/layout/base/nsPresContext-h.patch", "src/layout/painting/nsImageRenderer-cpp.patch", "src/layout/svg/SVGImageContext-cpp.patch", "src/layout/svg/SVGImageContext-h.patch", "src/widget/Theme-cpp.patch", "src/widget/Theme-h.patch", "src/zen/boosts/nsZenBoosts...
[ { "comment": "The new check `content->HasBeenInUAWidget()` un-exempts all content inside any UA widget shadow tree, but the doc comment immediately above still claims scrollbars (and other native-anonymous UI) are exempt. In current Firefox, several pieces of UA-rendered chrome — most notably scrollbars, as wel...
true
zen-browser/desktop
13,893
comment_to_fix
gh-13844: Part 3 - Fixed text inputs not being filtered through boosts
The new check `content->HasBeenInUAWidget()` un-exempts all content inside any UA widget shadow tree, but the doc comment immediately above still claims scrollbars (and other native-anonymous UI) are exempt. In current Firefox, several pieces of UA-rendered chrome — most notably scrollbars, as well as `<video>`/`<audio...
89267dfea01466a78aa4d2229f0f2d1d3e57eaa5
a5907737cf3bea903ed3ab611a8794f66eb4e62b
diff --git a/src/zen/boosts/nsZenBoostsBackend.cpp b/src/zen/boosts/nsZenBoostsBackend.cpp index f9eaf646104..6a64cd72483 100644 --- a/src/zen/boosts/nsZenBoostsBackend.cpp +++ b/src/zen/boosts/nsZenBoostsBackend.cpp @@ -386,8 +386,9 @@ inline static nscolor zenInvertColorChannel(nscolor aColor) { * not touch (devtoo...
[ "src/zen/boosts/nsZenBoostsBackend.cpp" ]
[ { "comment": "The new check `content->HasBeenInUAWidget()` un-exempts all content inside any UA widget shadow tree, but the doc comment immediately above still claims scrollbars (and other native-anonymous UI) are exempt. In current Firefox, several pieces of UA-rendered chrome — most notably scrollbars, as wel...
true
zen-browser/desktop
13,893
comment_to_fix
gh-13844: Part 3 - Fixed text inputs not being filtered through boosts
The updated doc comment lists `::placeholder` as a pseudo-element that is "not exempt" from boosting, but `::placeholder` is implemented as a UA-widget anonymous element rather than via `PseudoStyleType::Placeholder` on the NAC root. The actual non-exemption for placeholder text now comes from the `HasBeenInUAWidget()`...
89267dfea01466a78aa4d2229f0f2d1d3e57eaa5
a5907737cf3bea903ed3ab611a8794f66eb4e62b
diff --git a/src/zen/boosts/nsZenBoostsBackend.cpp b/src/zen/boosts/nsZenBoostsBackend.cpp index f9eaf646104..6a64cd72483 100644 --- a/src/zen/boosts/nsZenBoostsBackend.cpp +++ b/src/zen/boosts/nsZenBoostsBackend.cpp @@ -386,8 +386,9 @@ inline static nscolor zenInvertColorChannel(nscolor aColor) { * not touch (devtoo...
[ "src/zen/boosts/nsZenBoostsBackend.cpp" ]
[ { "comment": "The updated doc comment lists `::placeholder` as a pseudo-element that is \"not exempt\" from boosting, but `::placeholder` is implemented as a UA-widget anonymous element rather than via `PseudoStyleType::Placeholder` on the NAC root. The actual non-exemption for placeholder text now comes from t...
true
zen-browser/desktop
13,886
issue_to_patch
no-bug: New Crowdin updates
89267dfea01466a78aa4d2229f0f2d1d3e57eaa5
b04f1559864de955abef33ef7ffbd2271eb4077a
diff --git a/locales/ca/browser/browser/preferences/zen-preferences.ftl b/locales/ca/browser/browser/preferences/zen-preferences.ftl index b7477fb9778..853f1628742 100644 --- a/locales/ca/browser/browser/preferences/zen-preferences.ftl +++ b/locales/ca/browser/browser/preferences/zen-preferences.ftl @@ -281,7 +281,7 @@...
[ "locales/ca/browser/browser/preferences/zen-preferences.ftl", "locales/ca/browser/browser/zen-boosts.ftl", "locales/cs/browser/browser/preferences/zen-preferences.ftl", "locales/es-ES/browser/browser/preferences/zen-preferences.ftl", "locales/es-ES/browser/browser/zen-boosts.ftl", "locales/ga-IE/browser/b...
[ { "comment": "`zen-workspace-shortcut-create` uses mixed terminology (“Workspace”) while surrounding strings in this file consistently translate workspace as “pracovní prostor” (e.g., `zen-workspace-shortcut-switch-*`, `zen-workspace-shortcut-forward/backward`). Consider using the same translated term here for ...
true
zen-browser/desktop
13,886
comment_to_fix
no-bug: New Crowdin updates
`zen-workspace-shortcut-create` uses mixed terminology (“Workspace”) while surrounding strings in this file consistently translate workspace as “pracovní prostor” (e.g., `zen-workspace-shortcut-switch-*`, `zen-workspace-shortcut-forward/backward`). Consider using the same translated term here for consistency.
89267dfea01466a78aa4d2229f0f2d1d3e57eaa5
b04f1559864de955abef33ef7ffbd2271eb4077a
diff --git a/locales/cs/browser/browser/preferences/zen-preferences.ftl b/locales/cs/browser/browser/preferences/zen-preferences.ftl index 97baced60ae..b0194f74715 100644 --- a/locales/cs/browser/browser/preferences/zen-preferences.ftl +++ b/locales/cs/browser/browser/preferences/zen-preferences.ftl @@ -281,7 +281,7 @@...
[ "locales/cs/browser/browser/preferences/zen-preferences.ftl" ]
[ { "comment": "`zen-workspace-shortcut-create` uses mixed terminology (“Workspace”) while surrounding strings in this file consistently translate workspace as “pracovní prostor” (e.g., `zen-workspace-shortcut-switch-*`, `zen-workspace-shortcut-forward/backward`). Consider using the same translated term here for ...
true
zen-browser/desktop
13,886
comment_to_fix
no-bug: New Crowdin updates
`zen-key-find-selection` is translated as “Najít Část”, which is inconsistent with the English meaning (“Find Selection”) and also uses unusual capitalization (second word capitalized) compared to other “Najít …” entries in this file. Please adjust the wording/capitalization to match the intended “selection” action and...
89267dfea01466a78aa4d2229f0f2d1d3e57eaa5
b04f1559864de955abef33ef7ffbd2271eb4077a
diff --git a/locales/cs/browser/browser/preferences/zen-preferences.ftl b/locales/cs/browser/browser/preferences/zen-preferences.ftl index 97baced60ae..b0194f74715 100644 --- a/locales/cs/browser/browser/preferences/zen-preferences.ftl +++ b/locales/cs/browser/browser/preferences/zen-preferences.ftl @@ -281,7 +281,7 @@...
[ "locales/cs/browser/browser/preferences/zen-preferences.ftl" ]
[ { "comment": "`zen-key-find-selection` is translated as “Najít Část”, which is inconsistent with the English meaning (“Find Selection”) and also uses unusual capitalization (second word capitalized) compared to other “Najít …” entries in this file. Please adjust the wording/capitalization to match the intended ...
true
zen-browser/desktop
13,884
issue_to_patch
no-bug: Add a `New Boost` urlbar action
0863d7f4c05f5d0625ce12d82cd1b3ada7515ef9
eeb53d64ef8dd4f14dc90f18800844a280d35c39
diff --git a/src/zen/urlbar/ZenUBGlobalActions.sys.mjs b/src/zen/urlbar/ZenUBGlobalActions.sys.mjs index 607b05ada36..bfc789bb503 100644 --- a/src/zen/urlbar/ZenUBGlobalActions.sys.mjs +++ b/src/zen/urlbar/ZenUBGlobalActions.sys.mjs @@ -81,6 +81,49 @@ const globalActionsTemplate = [ return !tab.hasAttribute("zen...
[ "src/zen/urlbar/ZenUBGlobalActions.sys.mjs" ]
[ { "comment": "`New Boost` can be triggered on non-HTTP(S) pages (e.g. about:, file:) where `currentURI.host` may throw or be empty. In that case `createNewBoost(domain)` returns null and `openBoostWindow` will throw when accessing `boost.domain`. Also, the action should respect the `zen.boosts.enabled` pref lik...
true
zen-browser/desktop
13,884
comment_to_fix
no-bug: Add a `New Boost` urlbar action
`New Boost` can be triggered on non-HTTP(S) pages (e.g. about:, file:) where `currentURI.host` may throw or be empty. In that case `createNewBoost(domain)` returns null and `openBoostWindow` will throw when accessing `boost.domain`. Also, the action should respect the `zen.boosts.enabled` pref like the existing site-da...
0863d7f4c05f5d0625ce12d82cd1b3ada7515ef9
eeb53d64ef8dd4f14dc90f18800844a280d35c39
diff --git a/src/zen/urlbar/ZenUBGlobalActions.sys.mjs b/src/zen/urlbar/ZenUBGlobalActions.sys.mjs index 607b05ada36..bfc789bb503 100644 --- a/src/zen/urlbar/ZenUBGlobalActions.sys.mjs +++ b/src/zen/urlbar/ZenUBGlobalActions.sys.mjs @@ -81,6 +81,49 @@ const globalActionsTemplate = [ return !tab.hasAttribute("zen...
[ "src/zen/urlbar/ZenUBGlobalActions.sys.mjs" ]
[ { "comment": "`New Boost` can be triggered on non-HTTP(S) pages (e.g. about:, file:) where `currentURI.host` may throw or be empty. In that case `createNewBoost(domain)` returns null and `openBoostWindow` will throw when accessing `boost.domain`. Also, the action should respect the `zen.boosts.enabled` pref lik...
true
zen-browser/desktop
13,866
issue_to_patch
New Crowdin updates
346219c3b4877cc325c65e8934d8ed7c498498f1
058cbefde55922bfa103d069af587519e28bbc2f
diff --git a/locales/ar/browser/browser/preferences/zen-preferences.ftl b/locales/ar/browser/browser/preferences/zen-preferences.ftl index c8d4332a57e..a7b2acc9217 100644 --- a/locales/ar/browser/browser/preferences/zen-preferences.ftl +++ b/locales/ar/browser/browser/preferences/zen-preferences.ftl @@ -281,6 +281,7 @@...
[ "locales/ar/browser/browser/preferences/zen-preferences.ftl", "locales/ar/browser/browser/zen-boosts.ftl", "locales/bg/browser/browser/preferences/zen-preferences.ftl", "locales/bg/browser/browser/zen-boosts.ftl", "locales/bs/browser/browser/preferences/zen-preferences.ftl", "locales/bs/browser/browser/ze...
[]
true
zen-browser/desktop
13,875
issue_to_patch
Closing a window lead sometimes to window sync to stop working ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reprod...
gh-12284: Sync upstream Firefox to version `151.0.2`
This PR syncs the upstream Firefox to version 151.0.2. * ⚠️ Some patches did not apply cleanly. Please review them carefully. @mr-cheffy please review and merge this PR.
7f08cf437abbacaf7b381af64c5ea6ffd8c503b6
8356d37a331a20132509890dde659690905fd75a
diff --git a/README.md b/README.md index 5e46f4dc902..cb51a0f6129 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,8 @@ Zen is a firefox-based browser with the aim of pushing your productivity to a ne ### Firefox Versions -- [`Release`](https://zen-browser.app/download) - Is currently built using Firefox versio...
[ "README.md", "build/firefox-cache/l10n-last-commit-hash", "src/browser/modules/URILoadingHelper-sys-mjs.patch", "src/zen/sessionstore/ZenWindowSync.sys.mjs", "surfer.json" ]
[]
true
zen-browser/desktop
13,882
issue_to_patch
Boost color customization doesn't persist ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced on Mozilla Firef...
gh-13844: Part 2 - Fixed boosts not working for linear gradients
e82012ff1c5bab351afecea714ca1f3aa4fb336b
8b8ebcffd5b4917ec82ed50d2cb7317946bf5ec2
diff --git a/src/accessible/base/TextAttrs-cpp.patch b/src/accessible/base/TextAttrs-cpp.patch new file mode 100644 index 00000000000..b88ca20d483 --- /dev/null +++ b/src/accessible/base/TextAttrs-cpp.patch @@ -0,0 +1,18 @@ +diff --git a/accessible/base/TextAttrs.cpp b/accessible/base/TextAttrs.cpp +index d2ce06bef67ec...
[ "src/accessible/base/TextAttrs-cpp.patch", "src/accessible/windows/ia2/ia2AccessibleComponent-cpp.patch", "src/dom/canvas/CanvasRenderingContext2D-cpp.patch", "src/dom/html/HTMLInputElement-cpp.patch", "src/editor/libeditor/HTMLAbsPositionEditor-cpp.patch", "src/gfx/thebes/gfxUtils-cpp.patch", "src/gfx/...
[ { "comment": "This file removes app menu/profile avatar styling and a root variable, which appears unrelated to the PR’s stated goal (boosts + linear gradients). If this is intentional, consider moving it to a dedicated UI/style PR or documenting why it’s needed here to keep the change focused.", "path": "s...
true
zen-browser/desktop
13,882
comment_to_fix
gh-13844: Part 2 - Fixed boosts not working for linear gradients
This file removes app menu/profile avatar styling and a root variable, which appears unrelated to the PR’s stated goal (boosts + linear gradients). If this is intentional, consider moving it to a dedicated UI/style PR or documenting why it’s needed here to keep the change focused.
e82012ff1c5bab351afecea714ca1f3aa4fb336b
8b8ebcffd5b4917ec82ed50d2cb7317946bf5ec2
diff --git a/src/zen/common/styles/zen-popup.css b/src/zen/common/styles/zen-popup.css index 8c29733b091..68c64b713e0 100644 --- a/src/zen/common/styles/zen-popup.css +++ b/src/zen/common/styles/zen-popup.css @@ -8,7 +8,6 @@ @import url("chrome://browser/content/zen-styles/zen-panels/dialog.css"); :root { - --pane...
[ "src/zen/common/styles/zen-popup.css" ]
[ { "comment": "This file removes app menu/profile avatar styling and a root variable, which appears unrelated to the PR’s stated goal (boosts + linear gradients). If this is intentional, consider moving it to a dedicated UI/style PR or documenting why it’s needed here to keep the change focused.", "path": "s...
true
zen-browser/desktop
13,880
issue_to_patch
sidebar UI breaking when cancelling a space creation ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced on Mo...
gh-13879: fix sidebar UI breaking on cancelling space creation
fixes: #13879
b94dd3b927b0419c47eb3b41a92dfc8a0b28ce19
369e2db8cd05c781b20be24a88810cd94de9661a
diff --git a/src/zen/spaces/ZenSpaceCreation.mjs b/src/zen/spaces/ZenSpaceCreation.mjs index 5792d21202b..330ca9e0271 100644 --- a/src/zen/spaces/ZenSpaceCreation.mjs +++ b/src/zen/spaces/ZenSpaceCreation.mjs @@ -261,6 +261,7 @@ class nsZenWorkspaceCreation extends MozXULElement { } async onCancelButtonCommand(...
[ "src/zen/spaces/ZenSpaceCreation.mjs" ]
[]
true
zen-browser/desktop
13,869
issue_to_patch
Dragging subfolder inside another while tab is selected and collapsing main folder causes tab to clip ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have c...
gh-13868: Fixed tabs getting clipped when collapsing folders
346219c3b4877cc325c65e8934d8ed7c498498f1
06c1ec044401442d801f34a064d6e5b62ff004af
diff --git a/src/zen/folders/ZenFolders.mjs b/src/zen/folders/ZenFolders.mjs index bce1923a4d7..3267d579fee 100644 --- a/src/zen/folders/ZenFolders.mjs +++ b/src/zen/folders/ZenFolders.mjs @@ -1566,7 +1566,7 @@ class nsZenFolders extends nsZenDOMOperatedFeature { const tabsContainer = group.groupContainer; ...
[ "src/zen/folders/ZenFolders.mjs" ]
[]
true
zen-browser/desktop
13,847
issue_to_patch
Boost color customization doesn't persist ### Preliminary Checks - [x] I have read and understood the important section above. - [x] I have searched existing issues and avoided creating duplicates. - [x] I am not filing an enhancement request. - [x] I have checked that this issue cannot be reproduced on Mozilla Firef...
gh-13844: Part 1 - Fixed boosts not working when anon content exists
8f905e7abd9d4b0c145ea9f5ad3b02190308831f
f8959c4576dd342df492dca436b6f183c3d623a7
diff --git a/src/gfx/layers/AnimationInfo-cpp.patch b/src/gfx/layers/AnimationInfo-cpp.patch index aa58cdcbcc2..7a91671c667 100644 --- a/src/gfx/layers/AnimationInfo-cpp.patch +++ b/src/gfx/layers/AnimationInfo-cpp.patch @@ -1,5 +1,5 @@ diff --git a/gfx/layers/AnimationInfo.cpp b/gfx/layers/AnimationInfo.cpp -index 1d...
[ "src/gfx/layers/AnimationInfo-cpp.patch", "src/layout/base/PresShell-cpp.patch", "src/layout/generic/ViewportFrame-cpp.patch", "src/layout/generic/nsContainerFrame-cpp.patch", "src/layout/generic/nsIFrame-h.patch", "src/layout/generic/nsImageFrame-cpp.patch", "src/layout/generic/nsTextFrame-cpp.patch", ...
[ { "comment": "ZenBoostsChild is still registered for the DOMWindowCreated JSWindowActor event (see ZenActorsManager.sys.mjs), but this class no longer defines handleEvent(). JSWindowActor \"events\" are dispatched to handleEvent, so this can cause runtime errors when DOMWindowCreated fires. Add a (possibly no-o...
true
zen-browser/desktop
13,847
comment_to_fix
gh-13844: Part 1 - Fixed boosts not working when anon content exists
ZenBoostsChild is still registered for the DOMWindowCreated JSWindowActor event (see ZenActorsManager.sys.mjs), but this class no longer defines handleEvent(). JSWindowActor "events" are dispatched to handleEvent, so this can cause runtime errors when DOMWindowCreated fires. Add a (possibly no-op) handleEvent implement...
8f905e7abd9d4b0c145ea9f5ad3b02190308831f
f8959c4576dd342df492dca436b6f183c3d623a7
diff --git a/src/zen/boosts/actors/ZenBoostsChild.sys.mjs b/src/zen/boosts/actors/ZenBoostsChild.sys.mjs index 637d8190936..597a74c0985 100644 --- a/src/zen/boosts/actors/ZenBoostsChild.sys.mjs +++ b/src/zen/boosts/actors/ZenBoostsChild.sys.mjs @@ -70,6 +70,17 @@ export class ZenBoostsChild extends JSWindowActorChild {...
[ "src/zen/boosts/actors/ZenBoostsChild.sys.mjs" ]
[ { "comment": "ZenBoostsChild is still registered for the DOMWindowCreated JSWindowActor event (see ZenActorsManager.sys.mjs), but this class no longer defines handleEvent(). JSWindowActor \"events\" are dispatched to handleEvent, so this can cause runtime errors when DOMWindowCreated fires. Add a (possibly no-o...
true
zen-browser/desktop
13,847
comment_to_fix
gh-13844: Part 1 - Fixed boosts not working when anon content exists
foreground is fetched with GetVisitedDependentColor(..., nullptr), which bypasses boost resolution (StyleAbsoluteColor::ToColor skips boosts when the frame is null). For currentColor keyframes this means the animated color won’t be boost-filtered. Pass aFrame here so currentColor resolves with boosts, and keep ResolveS...
8f905e7abd9d4b0c145ea9f5ad3b02190308831f
f8959c4576dd342df492dca436b6f183c3d623a7
diff --git a/src/gfx/layers/AnimationInfo-cpp.patch b/src/gfx/layers/AnimationInfo-cpp.patch index aa58cdcbcc2..7a91671c667 100644 --- a/src/gfx/layers/AnimationInfo-cpp.patch +++ b/src/gfx/layers/AnimationInfo-cpp.patch @@ -1,5 +1,5 @@ diff --git a/gfx/layers/AnimationInfo.cpp b/gfx/layers/AnimationInfo.cpp -index 1d...
[ "src/gfx/layers/AnimationInfo-cpp.patch" ]
[ { "comment": "foreground is fetched with GetVisitedDependentColor(..., nullptr), which bypasses boost resolution (StyleAbsoluteColor::ToColor skips boosts when the frame is null). For currentColor keyframes this means the animated color won’t be boost-filtered. Pass aFrame here so currentColor resolves with boo...
true
zenorocha/clipboard.js
807
issue_to_patch
Trigger loses focus after copy event ## 🐛 Bug Report Setting keyboard focus on one of the "Copy" buttons and activating it, focus is then lost/reset to the start of the page. While browsers try to error-correct for this (meaning that a subsequent Tab moves to the next focusable element), the issue becomes evident ...
Fix #805 don't `blur()` the trigger after a clipboard action
**What kind of change does this PR introduce?** (check at least one) - [x] Bugfix - [ ] Feature - [ ] Code style update - [ ] Refactor - [ ] Build-related changes - [ ] Other, please describe: **Does this PR introduce a breaking change?** (check one) - [x] Yes - [ ] No If yes, please describe the impa...
98c96a1136f78bd0b6fc5f5d3da964550fc9cd17
0df402284eae270cf90a377e22af990ae69fbcae
diff --git a/src/clipboard.js b/src/clipboard.js index 34aef606..ee5fe56b 100644 --- a/src/clipboard.js +++ b/src/clipboard.js @@ -86,7 +86,6 @@ class Clipboard extends Emitter { if (trigger) { trigger.focus(); } - document.activeElement.blur(); window.getSelection().removeA...
[ "src/clipboard.js", "test/clipboard.js" ]
[ { "comment": "Hey, could you please update this test to ensure that current `document.activeElement` is the trigger? You can use the following approach:\r\n\r\n```javascript\r\n it('should clear text selection', (done) => {\r\n let clipboard = new Clipboard('.btn');\r\n\r\n clipboard.on('success', ...
diff --git a/test/clipboard.js b/test/clipboard.js index a35cfdf4..8aa11753 100644 --- a/test/clipboard.js +++ b/test/clipboard.js @@ -171,16 +171,16 @@ describe('Clipboard', () => { }); describe('#clearSelection', () => { - it('should remove focus from target and text selection', (done) => { + it('should...
true
zenorocha/clipboard.js
807
comment_to_fix
Fix #805 don't `blur()` the trigger after a clipboard action
Hey, could you please update this test to ensure that current `document.activeElement` is the trigger? You can use the following approach: ```javascript it('should clear text selection', (done) => { let clipboard = new Clipboard('.btn'); clipboard.on('success', (e) => { e.clearSelection...
98c96a1136f78bd0b6fc5f5d3da964550fc9cd17
0df402284eae270cf90a377e22af990ae69fbcae
diff --git a/test/clipboard.js b/test/clipboard.js index a35cfdf4..8aa11753 100644 --- a/test/clipboard.js +++ b/test/clipboard.js @@ -171,16 +171,16 @@ describe('Clipboard', () => { }); describe('#clearSelection', () => { - it('should remove focus from target and text selection', (done) => { + it('should...
[ "test/clipboard.js" ]
[ { "comment": "Hey, could you please update this test to ensure that current `document.activeElement` is the trigger? You can use the following approach:\r\n\r\n```javascript\r\n it('should clear text selection', (done) => {\r\n let clipboard = new Clipboard('.btn');\r\n\r\n clipboard.on('success', ...
true
zenorocha/clipboard.js
835
issue_to_patch
chore(deps): bump nanoid and mocha
Bumps [nanoid](https://github.com/ai/nanoid) to 3.3.3 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `nanoid` from 3.1.12 to 3.3.3 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ai/nanoid/blob/ma...
07ba4a89dae8c6679c3694176969c0b3a5ffffb5
8dbb6ad74709b7d45c1404b5ee26a53a76bf6b6c
diff --git a/package-lock.json b/package-lock.json index 0b56b914..66fa4a26 100644 --- a/package-lock.json +++ b/package-lock.json @@ -32,7 +32,7 @@ "karma-sinon": "^1.0.4", "karma-webpack": "^5.0.0-alpha.5", "lint-staged": "^10.5.3", - "mocha": "^8.2.1", + "mocha": "^10.1.0", ...
[ "package-lock.json", "package.json" ]
[]
true
zenorocha/clipboard.js
833
issue_to_patch
chore(deps): bump qs and body-parser
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [qs](https://github.com/ljharb/qs) an...
b31ef09fd01497d5a88bf2537af31fa656366506
a753e60488318be78b0f7f690cc28380e23c4d5d
diff --git a/package-lock.json b/package-lock.json index deee70f0..f806f4da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2289,21 +2289,36 @@ "dev": true }, "node_modules/body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1....
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
831
issue_to_patch
chore(deps): bump engine.io and socket.io
Bumps [engine.io](https://github.com/socketio/engine.io) and [socket.io](https://github.com/socketio/socket.io). These dependencies needed to be updated together. Updates `engine.io` from 6.1.2 to 6.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/socketio/engine.io/release...
07ba4a89dae8c6679c3694176969c0b3a5ffffb5
865ec21efebd0153ff10cf348604558bc02274d2
diff --git a/package-lock.json b/package-lock.json index 0b56b914..de2bddd5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1486,19 +1486,10 @@ "integrity": "sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==", "dev": true }, - "node_modules/...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
832
issue_to_patch
chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/SamVerschueren/decode-uri-component/releases">decode-uri-component's releases</a>.</em></p> <blockquote> <h2>v0.2.2</h2> <u...
b31ef09fd01497d5a88bf2537af31fa656366506
768e73cd2c47db4c5c8ddce12b02227ee6abffc3
diff --git a/package-lock.json b/package-lock.json index deee70f0..595e3b8d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3180,9 +3180,9 @@ } }, "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-ur...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
830
issue_to_patch
chore(deps): bump loader-utils from 1.4.0 to 1.4.2
Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/webpack/loader-utils/releases">loader-utils's releases</a>.</em></p> <blockquote> <h2>v1.4.2</h2> <h3><a href="https://github.com/webpack/loader-u...
b31ef09fd01497d5a88bf2537af31fa656366506
2ac79237cd102596a69e94f6acdd901524de694d
diff --git a/package-lock.json b/package-lock.json index deee70f0..ea57d494 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6589,9 +6589,9 @@ } }, "node_modules/loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", ...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
829
issue_to_patch
chore(deps): bump socket.io-parser from 4.0.4 to 4.0.5
Bumps [socket.io-parser](https://github.com/socketio/socket.io-parser) from 4.0.4 to 4.0.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/socketio/socket.io-parser/releases">socket.io-parser's releases</a>.</em></p> <blockquote> <h2>4.0.5</h2> <h3>Bug Fixes</h3> <ul> <li>che...
b31ef09fd01497d5a88bf2537af31fa656366506
e6bf495cd51abf7545ff0fa1067a02f408a87dfc
diff --git a/package-lock.json b/package-lock.json index deee70f0..6a2884cb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9202,9 +9202,9 @@ "dev": true }, "node_modules/socket.io-parser": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket....
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
813
issue_to_patch
chore(deps): bump terser from 5.5.1 to 5.14.2
Bumps [terser](https://github.com/terser/terser) from 5.5.1 to 5.14.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/terser/terser/blob/master/CHANGELOG.md">terser's changelog</a>.</em></p> <blockquote> <h2>v5.14.2</h2> <ul> <li>Security fix for RegExps that should not be evalua...
2b2f9eef6fd1cf951612740e16e422db2848c00a
a1cd3389d44c4e714d65d3c33ee8a221c900474f
diff --git a/package-lock.json b/package-lock.json index 79e9133b..deee70f0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "clipboard", - "version": "2.0.10", + "version": "2.0.11", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "clipbo...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
808
issue_to_patch
Support more HTML input types. Close #800
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/zenorocha/clipboard.js/blob/master/contributing.md#proposing-pull-requests --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - ...
9b0c87b184c064e6dedaf8651532e729e27518d4
ca882fd16f1b088dabc5750dcd891235764aa140
diff --git a/demo/target-input-number.html b/demo/target-input-number.html new file mode 100644 index 00000000..c5373845 --- /dev/null +++ b/demo/target-input-number.html @@ -0,0 +1,37 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <title>target-input-number</title> + <meta name="...
[ "demo/target-input-number.html", "dist/clipboard.js", "dist/clipboard.min.js", "src/actions/copy.js", "test/actions/copy.js" ]
[ { "comment": "Just remember to remove the `it.only`.", "path": "test/actions/copy.js", "hunk": "@@ -51,5 +51,19 @@ describe('ClipboardActionCopy', () => {\n \n assert.equal(selectedText, text);\n });\n+\n+ it.only('should select its value based on text', () => {", "resolving_sha": "ca88...
diff --git a/test/actions/copy.js b/test/actions/copy.js index 201c1d68..6c13b5d5 100644 --- a/test/actions/copy.js +++ b/test/actions/copy.js @@ -51,5 +51,19 @@ describe('ClipboardActionCopy', () => { assert.equal(selectedText, text); }); + + it('should select its value in a input number based on text...
true
zenorocha/clipboard.js
806
issue_to_patch
chore(deps): bump ansi-regex from 3.0.0 to 3.0.1
Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 3.0.0 to 3.0.1. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/chalk/ansi-regex/commit/f545bdb80048f527889eddb9ac1a851c6f2a2241"><code>f545bdb</code></a> 3.0.1</li> <li><a href="https://github.com/chalk/ansi-regex/commit/c57d4c2fdbe...
98c96a1136f78bd0b6fc5f5d3da964550fc9cd17
de1b106783a66e7cf5ccde9b8a2e742d7bb3d3da
diff --git a/package-lock.json b/package-lock.json index 5ca46636..79e9133b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1812,9 +1812,9 @@ } }, "node_modules/ansi-align/node_modules/ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
795
issue_to_patch
Fix type for copy function
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/zenorocha/clipboard.js/blob/master/contributing.md#proposing-pull-requests --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - ...
98d92f2a42e8efbe014c5c9465d3e3a9d7a0729e
9f64e2d679208b907d7911546f94dd3d77c93f05
diff --git a/src/clipboard.d.ts b/src/clipboard.d.ts index 98b959f2..aeb3fe83 100644 --- a/src/clipboard.d.ts +++ b/src/clipboard.d.ts @@ -39,7 +39,7 @@ declare class ClipboardJS { /** * Fires a copy action */ - static copy(target: string | Element, options: CopyActionOptions): string; + static copy(targe...
[ "src/clipboard.d.ts" ]
[]
true
zenorocha/clipboard.js
803
issue_to_patch
chore(deps): bump minimist from 1.2.5 to 1.2.6
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/substack/minimist/commit/7efb22a518b53b06f5b02a1038a88bd6290c2846"><code>7efb22a</code></a> 1.2.6</li> <li><a href="https://github.com/substack/minimist/commit/ef88b9325f...
7bb4433be0e425b1a8d6c439835bac4d8842dd78
4691bf0809df125635186277ebd5ee2ac5c1a720
diff --git a/package-lock.json b/package-lock.json index 60ae177b..5ca46636 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2096,31 +2096,6 @@ "webpack": ">=2" } }, - "node_modules/babel-loader/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
799
issue_to_patch
chore(deps-dev): bump karma from 6.3.14 to 6.3.16
Bumps [karma](https://github.com/karma-runner/karma) from 6.3.14 to 6.3.16. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/karma-runner/karma/releases">karma's releases</a>.</em></p> <blockquote> <h2>v6.3.16</h2> <h2><a href="https://github.com/karma-runner/karma/compare/v6.3...
67067f316f47ccf5e4cd6cfee755e1b0c739a07b
f341866d84b723f663a46022dee154ff0f2070bc
diff --git a/package-lock.json b/package-lock.json index de8f8273..60ae177b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6100,12 +6100,6 @@ "node": ">=6" } }, - "node_modules/json5/node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/m...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
796
issue_to_patch
Bump pathval from 1.1.0 to 1.1.1
Bumps [pathval](https://github.com/chaijs/pathval) from 1.1.0 to 1.1.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/chaijs/pathval/releases">pathval's releases</a>.</em></p> <blockquote> <h2>v1.1.1</h2> <p>Fixes a security issue around prototype pollution.</p> </blockquote...
98d92f2a42e8efbe014c5c9465d3e3a9d7a0729e
96774463eac9bfdda3d32cf5e2022f4b378b1424
diff --git a/package-lock.json b/package-lock.json index 6559d615..78fcf92f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "clipboard", - "version": "2.0.9", + "version": "2.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "clipboa...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
797
issue_to_patch
Bump karma from 6.0.0 to 6.3.14
Bumps [karma](https://github.com/karma-runner/karma) from 6.0.0 to 6.3.14. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/karma-runner/karma/releases">karma's releases</a>.</em></p> <blockquote> <h2>v6.3.14</h2> <h2><a href="https://github.com/karma-runner/karma/compare/v6.3....
98d92f2a42e8efbe014c5c9465d3e3a9d7a0729e
33a1b65257a2bd97523e3bf3673d5a6b05d7b031
diff --git a/package-lock.json b/package-lock.json index 6559d615..9c94b85f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "clipboard", - "version": "2.0.9", + "version": "2.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "clipboa...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
798
issue_to_patch
Bump follow-redirects from 1.14.7 to 1.14.8
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.7 to 1.14.8. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/follow-redirects/follow-redirects/commit/3d81dc3237b4ffe8b722bb3d1c70a7866657166e"><code>3d81dc3</code></a> Release version 1.14.8 of the npm pa...
98d92f2a42e8efbe014c5c9465d3e3a9d7a0729e
6179528f792e311424beca921a4f16fa8925dab9
diff --git a/package-lock.json b/package-lock.json index 6559d615..2445f4d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "clipboard", - "version": "2.0.9", + "version": "2.0.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "clipboa...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
793
issue_to_patch
Event action is now a function not a string <!-- ! PLEASE HELP US HELP YOU ! Bugs are fixed faster if you include: - a repro repository to inspect the code - an url to see the problem live --> ## 🐛 Bug Report Event action parameter used to return a string but now returns a function. The JSFid...
fix #792
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/zenorocha/clipboard.js/blob/master/contributing.md#proposing-pull-requests --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - ...
9698b1176ae68bc8d9a3507aa8a6fc935099d9fe
b716947eb94ec91231d0c9edcfb623e0c9acb8dc
diff --git a/demo/constructor-node.html b/demo/constructor-node.html index 2135152d..2780ebc2 100644 --- a/demo/constructor-node.html +++ b/demo/constructor-node.html @@ -20,11 +20,15 @@ var clipboard = new ClipboardJS(btn); clipboard.on('success', function (e) { - console.log(e); + consol...
[ "demo/constructor-node.html", "demo/constructor-nodelist.html", "demo/constructor-selector.html", "demo/function-target.html", "demo/function-text.html", "demo/target-div.html", "demo/target-input.html", "demo/target-textarea.html", "dist/clipboard.js", "dist/clipboard.min.js", "src/clipboard.js...
[]
diff --git a/test/clipboard.js b/test/clipboard.js index b5059c68..a35cfdf4 100644 --- a/test/clipboard.js +++ b/test/clipboard.js @@ -158,6 +158,7 @@ describe('Clipboard', () => { clipboard.on('success', (e) => { assert.property(e, 'action'); + assert.equal(e.action, 'copy'); assert.p...
true
zenorocha/clipboard.js
355
issue_to_patch
Add API to check if copy action is supported Code examples * all commands are checked for support - http://codepen.io/netsi1964/pen/QbLLGW * "copy" command is checked for support - http://jsfiddle.net/the_ghost/679drp3r/ (`!!document.queryCommandSupported && !!document.queryCommandSupported('copy')`) I think i...
Add isSupported method
This fixes #337.
402c9ee17bed6f273bcbc7efa81874fd9a50b84c
44edd008bff9bf29e783b471ef36c81f30637a5f
diff --git a/dist/clipboard.js b/dist/clipboard.js index 60741829..b31aec3d 100644 --- a/dist/clipboard.js +++ b/dist/clipboard.js @@ -728,6 +728,20 @@ module.exports = E; this.clipboardAction = null; } } + }], [{ + key: 'isSupported', + va...
[ "dist/clipboard.js", "dist/clipboard.min.js", "src/clipboard.js", "test/clipboard.js" ]
[]
diff --git a/test/clipboard.js b/test/clipboard.js index e35a7c50..bc1569d0 100644 --- a/test/clipboard.js +++ b/test/clipboard.js @@ -94,6 +94,17 @@ describe('Clipboard', () => { }); }); + describe('#static isSupported', () => { + it('should return the support of the given action', () => { + ...
true
zenorocha/clipboard.js
788
issue_to_patch
Bump follow-redirects from 1.13.1 to 1.14.7
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.13.1 to 1.14.7. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/follow-redirects/follow-redirects/commit/2ede36d7c60d3acdcd324dcd99a9dbd52e4fb3a6"><code>2ede36d</code></a> Release version 1.14.7 of the npm pa...
57345ab3ce1b3526d736e1b391257d7221854513
e2189c7e7cba61b16d544c351419a1bb5463057d
diff --git a/package-lock.json b/package-lock.json index c9552a08..e8a42994 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3954,9 +3954,9 @@ } }, "follow-redirects": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz",...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
789
issue_to_patch
Bump engine.io from 4.1.0 to 4.1.2
Bumps [engine.io](https://github.com/socketio/engine.io) from 4.1.0 to 4.1.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/socketio/engine.io/releases">engine.io's releases</a>.</em></p> <blockquote> <h2>4.1.2</h2> <p>:warning: This release contains an important security fi...
57345ab3ce1b3526d736e1b391257d7221854513
6533a68798efeeaa9a1947698e2fd5248762c1cf
diff --git a/package-lock.json b/package-lock.json index c9552a08..f0201735 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2750,9 +2750,9 @@ } }, "engine.io": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-4.1.0.tgz", - "integrity": "s...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
790
issue_to_patch
Bump log4js from 6.3.0 to 6.4.0
Bumps [log4js](https://github.com/log4js-node/log4js-node) from 6.3.0 to 6.4.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/log4js-node/log4js-node/blob/master/CHANGELOG.md">log4js's changelog</a>.</em></p> <blockquote> <h2>6.4.0</h2> <ul> <li><a href="https://github-redirect....
57345ab3ce1b3526d736e1b391257d7221854513
c98cdf8fc34cb7c069b0f5868a4252a12c58eac1
diff --git a/package-lock.json b/package-lock.json index c9552a08..e042003d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2497,12 +2497,6 @@ "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", "dev": true }, - "date-format": { - "version": "3.0.0", - "resolved": "https://regis...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
749
issue_to_patch
Isolate actions strategies in order to code improvement and programmatic usage.
<!-- Please make sure to read the Pull Request Guidelines: https://github.com/zenorocha/clipboard.js/blob/master/contributing.md#proposing-pull-requests --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "[ ]" to "[x]" to check a box) --> **What kind of change does this PR introduce?** (check at least one) - ...
734d36b6ffe3346304904a44f12e4f3f69330101
d1eac52d40c498d6003b07a5e455f9443b189a61
diff --git a/.gitignore b/.gitignore index ff4dcd82..d7aa9985 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ bower_components node_modules yarn-error.log yarn.lock +.DS_Store diff --git a/demo/target-programmatic-copy.html b/demo/target-programmatic-copy.html new file mode 100644 index 00000000..0f00ded7 -...
[ ".gitignore", "demo/target-programmatic-copy.html", "demo/target-programmatic-cut.html", "demo/text-programmatic-copy.html", "dist/clipboard.js", "dist/clipboard.min.js", "src/actions/copy.js", "src/actions/cut.js", "src/actions/default.js", "src/clipboard-action.js", "src/clipboard.d.ts", "sr...
[ { "comment": "I think in this case you can do something like:\r\n```js\r\nthis.selectedText = this.action === 'cut' ? ClipboardActionCut(this.target) : ClipboardActionCopy(this.target, { container: this.container });\r\n```\r\n\r\nWhat do you think about it?", "path": "src/clipboard-action-default.js", ...
diff --git a/test/actions/copy.js b/test/actions/copy.js new file mode 100644 index 00000000..201c1d68 --- /dev/null +++ b/test/actions/copy.js @@ -0,0 +1,55 @@ +import ClipboardActionCopy from '../../src/actions/copy'; + +describe('ClipboardActionCopy', () => { + before(() => { + global.input = document.createElem...
true
zenorocha/clipboard.js
763
issue_to_patch
Bump browserslist from 4.16.1 to 4.16.6
Bumps [browserslist](https://github.com/browserslist/browserslist) from 4.16.1 to 4.16.6. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md">browserslist's changelog</a>.</em></p> <blockquote> <h2>4.16.6</h2> <ul> <li>Fixed <code>npm-...
44df750c9fa5b573d1429159d9d63c48523d2e9c
80ee0c0aa2bd527d0e8af8bc0a9242f6573ece2b
diff --git a/package-lock.json b/package-lock.json index b9a6c081..0713075a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1916,16 +1916,42 @@ "dev": true }, "browserslist": { - "version": "4.16.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.1.tgz",...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
764
issue_to_patch
Bump ws from 7.4.2 to 7.4.6
Bumps [ws](https://github.com/websockets/ws) from 7.4.2 to 7.4.6. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/websockets/ws/releases">ws's releases</a>.</em></p> <blockquote> <h2>7.4.6</h2> <h1>Bug fixes</h1> <ul> <li>Fixed a ReDoS vulnerability (00c425ec).</li> </ul> <p>A...
44df750c9fa5b573d1429159d9d63c48523d2e9c
570ed2813a4ad6f00f74db8d5442582c9e37486a
diff --git a/package-lock.json b/package-lock.json index b9a6c081..adc8dfa5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8726,9 +8726,9 @@ } }, "ws": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.2.tgz", - "integrity": "sha512-T4tewALS3+qsrpG...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
756
issue_to_patch
Bump ssri from 6.0.1 to 6.0.2
Bumps [ssri](https://github.com/npm/ssri) from 6.0.1 to 6.0.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/npm/ssri/blob/v6.0.2/CHANGELOG.md">ssri's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/zkat/ssri/compare/v6.0.1...v6.0.2">6.0.2</a> (2021-04-07)</...
734d36b6ffe3346304904a44f12e4f3f69330101
7e05dcb9ab9819a539e56ef52291105aa61b9292
diff --git a/package-lock.json b/package-lock.json index bb621690..76a878a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7420,9 +7420,9 @@ "dev": true }, "ssri": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", - "integrity": "sha512...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
760
issue_to_patch
Bump lodash from 4.17.20 to 4.17.21
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.20 to 4.17.21. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lodash/lodash/commit/f299b52f39486275a9e6483b60a410e06520c538"><code>f299b52</code></a> Bump to v4.17.21</li> <li><a href="https://github.com/lodash/lodash/commit/c4847ebe7...
734d36b6ffe3346304904a44f12e4f3f69330101
65bce15b22552482d8129a97052c085b9824f6f8
diff --git a/package-lock.json b/package-lock.json index bb621690..45e19760 100644 --- a/package-lock.json +++ b/package-lock.json @@ -51,12 +51,6 @@ "ms": "2.1.2" } }, - "lodash": { - "version": "4.17.20", - "resolved": "https://registry.npmjs.org/lodash/-/loda...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
761
issue_to_patch
Bump ua-parser-js from 0.7.23 to 0.7.28
Bumps [ua-parser-js](https://github.com/faisalman/ua-parser-js) from 0.7.23 to 0.7.28. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/faisalman/ua-parser-js/commit/1d3c98a10c23915046a362c4e3b3b503fb40d611"><code>1d3c98a</code></a> Revert breaking fix <a href="https://github-redirect.dependabo...
734d36b6ffe3346304904a44f12e4f3f69330101
4e511ba0362c6a874fe584a2ecdd30ebe2941333
diff --git a/package-lock.json b/package-lock.json index bb621690..fbd29260 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8062,9 +8062,9 @@ "dev": true }, "ua-parser-js": { - "version": "0.7.23", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.23.tgz", -...
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
762
issue_to_patch
Bump hosted-git-info from 2.8.8 to 2.8.9
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md">hosted-git-info's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/npm/hosted-git-...
734d36b6ffe3346304904a44f12e4f3f69330101
1d848a1bf4429361863d834485b7c27ce88f6e9e
diff --git a/package-lock.json b/package-lock.json index bb621690..eba2b20b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4302,9 +4302,9 @@ "dev": true }, "hosted-git-info": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8....
[ "package-lock.json" ]
[]
true
zenorocha/clipboard.js
752
issue_to_patch
Update CI config
* add `FORCE_COLOR: 2` so that we get colored output * update to `actions/setup-node@v2` * fix formatting <!-- Please make sure to read the Pull Request Guidelines: https://github.com/zenorocha/clipboard.js/blob/master/contributing.md#proposing-pull-requests --> <!-- PULL REQUEST TEMPLATE --> <!-- (Update "...
734d36b6ffe3346304904a44f12e4f3f69330101
9c062df900c4e49173edf5565779e1786c12d5db
diff --git a/.github/workflows/test.js.yml b/.github/workflows/test.js.yml index 4f6ebd8a..04f169a0 100644 --- a/.github/workflows/test.js.yml +++ b/.github/workflows/test.js.yml @@ -5,9 +5,12 @@ name: build on: push: - branches: [ master ] + branches: [master] pull_request: - branches: [ master ] + ...
[ ".github/workflows/test.js.yml" ]
[]
true
zenorocha/clipboard.js
719
issue_to_patch
Update dev dependencies.
This PR updates the dev dependencies of the project doing the following: - Update webpack from 4 to 5 - Update Babel to the latest version - Update test frameworks dependencies - Update the test environment to support webpack 5 - As recommended on [karma-webpack](https://github.com/ryanclark/karma-webpack/blo...
5ea83e4473a2e2fbe01a4af8702ca3d3e318be64
43aa5786c9d6e7e5c46cdc9145476cbe339d9a46
diff --git a/dist/clipboard.js b/dist/clipboard.js index 95f5910e..23e2bfc8 100644 --- a/dist/clipboard.js +++ b/dist/clipboard.js @@ -1,7 +1,7 @@ /*! * clipboard.js v2.0.6 * https://clipboardjs.com/ - * + * * Licensed MIT © Zeno Rocha */ (function webpackUniversalModuleDefinition(root, factory) { @@ -14,457...
[ "dist/clipboard.js", "dist/clipboard.min.js", "karma.conf.js", "package-lock.json", "package.json" ]
[ { "comment": "Just to keep in mind to change this alpha version when having stable v5.\r\n\r\nhttps://github.com/ryanclark/karma-webpack/releases/tag/v5.0.0-alpha.5", "path": "package.json", "hunk": "@@ -17,22 +17,22 @@\n \"tiny-emitter\": \"^2.0.0\"\n },\n \"devDependencies\": {\n- \"@babel/...
true