arieleli01212
5bbbadd77b
gh-13857: Use Zen icon for share toolbar button (gh-13896)
...
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.
- Confirmed the repo lint script requires the generated `engine`
checkout, which is not present in this clone.
Co-authored-by: arieleli01212 <207917221+arieleli01212@users.noreply.github.com >
2026-05-27 16:24:28 +02:00
mr. m
8a0a6cbede
gh-13844: Part 3 - Fixed text inputs not being filtered through boosts (gh-13893)
2026-05-27 13:39:22 +02:00
mr. m
89267dfea0
no-bug: Add a New Boost urlbar action (gh-13884)
...
Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com >
2026-05-27 08:45:30 +02:00
mr. m
1c29206e07
gh-12284: Sync upstream Firefox to version 151.0.2 (gh-13875)
...
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.
---------
Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com >
2026-05-26 23:14:36 +02:00
mr. m
7f08cf437a
gh-13844: Part 2 - Fixed boosts not working for linear gradients (gh-13882)
...
Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com >
2026-05-26 22:27:54 +02:00
Ashvin Jangid
e82012ff1c
gh-13879: fix sidebar UI breaking on cancelling space creation (gh-13880)
2026-05-26 21:52:37 +02:00
mr. m
b94dd3b927
gh-13868: Fixed tabs getting clipped when collapsing folders (gh-13869)
2026-05-26 12:00:14 +02:00
mr. m
346219c3b4
gh-13851: Fixed pressing u duplicating tabs (gh-13856)
2026-05-25 21:47:27 +02:00
mr. m
69e76e51b7
gh-13844: Fixed boosts not working when anon content exists (gh-13847)
2026-05-25 19:58:38 +02:00
mr. m
7e449ccdc9
gh-10594: Increase the padding size when entering fullscreen (gh-13848)
2026-05-25 19:58:28 +02:00
mr. m
8f905e7abd
no-bug: Fix boosts picker showing wrong auto theme choice (gh-13821)
2026-05-24 11:00:54 +02:00
fen4flo
999a78d656
no-bug: Fix manager not writing to file after boost toggle (gh-13815)
2026-05-23 15:28:45 +02:00
Ashvin Jangid
09ed192fc4
gh-13642: fix unexpected sidebar width increase in compact mode (gh-13794)
...
`getAndApplySidebarWidth()` does handle this case but in the condition
it requires the event.
```
if (
event &&
shouldRecalculate &&
sidebarExpanded &&
!gZenVerticalTabsManager._hadSidebarCollapse
) {
return;
}
```
If the function does not return here then it makes the
`--zen-sidebar-width` = `--actual-zen-sidebar-width` which adds the
padding's width to the sidebar.
I don't know if not passing event in the function was intentional, but
this seems to fix the issue.
fixes : #13642
2026-05-23 12:26:13 +02:00
fen4flo
7196527509
gh-13796: Fix tab order reversing on dnd & boosts window size / initial color state (gh-13799)
...
Co-authored-by: Mr. M <mr.m@tuta.com >
Signed-off-by: fen4flo <75260616+FlorianButz@users.noreply.github.com >
2026-05-22 17:31:25 +02:00
mr. m
cd1616d1c0
gh-13761: Fixed closing a split view selecting it on other windows (gh-13790)
2026-05-21 18:18:18 +02:00
mr. m
0b9f0bbe91
no-bug: Lower boosts radius for macos (gh-13784)
2026-05-21 09:21:19 +02:00
Ashvin Jangid
b726dc8052
gh-13612: display "Space" key name correctly in keyboard shortcuts page (gh-13774)
2026-05-21 09:14:33 +02:00
Ashvin Jangid
81d30b906a
gh-13776: fix shortcut conflict detection failing with special keys (gh-13777)
2026-05-21 09:14:18 +02:00
mr. m
1c3b74c508
no-bug: Increase toolbar overflow threshold (gh-13771)
2026-05-20 13:35:55 +02:00
Ashvin Jangid
f9c4575c78
gh-13767: fix special key shortcuts displaying incorrectly until page reload (gh-13768)
...
The problem was that `input.value` was getting the raw shortcut and not
really converting it to the normalized displayable string.
There was no method to just get the `displayString` for a shortcut
without creating a new one, so I put that logic into
`gZenZenKeyboardShortcutsManager`. The static function in `KeyShortcut`
class is just to reduce code duplication.
fixes : #13767
2026-05-20 12:46:11 +02:00
mr. m
035e5931fc
gh-10594: Video controls going under the screen when in fullscreen (gh-13769)
2026-05-20 11:53:23 +02:00
mr. m
d5d86dbfa5
no-bug: Fixed continue where you left off not working anymore (gh-13764)
2026-05-20 00:29:25 +02:00
mr. m
1b9408ecb0
no-bug: Add polish to finished boosts implementation (gh-13762)
...
Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com >
2026-05-19 23:58:00 +02:00
Andrey Bochkarev
ef259f58aa
no-bug: Fix cyclic workspace switching (gh-13743)
2026-05-18 22:26:49 +02:00
mr. m
149fc12366
no-bug: Remove panel padding reset from patch (gh-13736)
2026-05-18 00:10:30 +02:00
mr. m
77c513511b
gh-12949: Fixed reset url indicator showing for sub documents (gh-13735)
2026-05-17 22:51:20 +02:00
Ashvin Jangid
99e647a7a8
gh-13653: fix copy url button/shortcut to respect decodeURLsOnCopy spec (gh-13659)
...
Co-authored-by: mr. m <91018726+mr-cheffy@users.noreply.github.com >
2026-05-17 22:35:20 +02:00
mr. m
41893aa6f3
gh-13716: Fixed greyed out urlbar text color (gh-13727)
2026-05-17 20:35:25 +02:00
fen4flo
62a91aefd2
no-bug: Move boost import/export buttons (gh-13724)
2026-05-17 20:35:10 +02:00
mr. m
644c75e3e8
gh-13719: Correctly set scroll left to the urlbar input (gh-13726)
2026-05-17 15:38:36 +02:00
mr. m
8752bf089e
gh-13703: Fixed space swiping ocassionally being stuck (gh-13725)
2026-05-17 15:38:15 +02:00
mr. m
c6c3b89a45
no-bug: Fixed clang-tidy forming invalid syntax on boosts manager (gh-13711)
2026-05-16 04:12:57 +02:00
fen4flo
ba348e04f0
no-bug: Add secondary color dot, Rearrange buttons & Editor UI Updates (gh-13708)
...
Co-authored-by: mr. m <91018726+mr-cheffy@users.noreply.github.com >
2026-05-16 02:53:35 +02:00
mr. m
90a6ebe948
no-bug: Sync upstream Firefox to version 151.0 (gh-13706)
2026-05-16 00:29:01 +02:00
mr. m
1659838194
no-bug: Prevent active attribute from being set when a popup opens (gh-13695)
2026-05-14 09:41:20 +02:00
mr. m
a82e145b1d
no-bug: Fixed opening new private windows removing initial tabs (gh-13687)
2026-05-13 23:10:54 +02:00
mr. m
3dd0ec9b65
no-bug: Fixed startup hang when release notes open (gh-13683)
2026-05-13 16:37:16 +02:00
mr. m
f0a63fa7c5
no-bug: Fixed overflowable addons clipping button badges (gh-13679)
2026-05-13 12:38:31 +02:00
Guilherme Luiz Cella
0a7ee3fcf0
no-bug: Refactor _oppositeSide method using OPPOSITE_SIDES (gh-13613)
...
Signed-off-by: Guilherme Luiz Cella <151692400+guilherme-luiz-cella@users.noreply.github.com >
Co-authored-by: mr. m <91018726+mr-cheffy@users.noreply.github.com >
2026-05-12 11:57:56 +02:00
jakubiakdev
78c37a122e
no-bug: Improve flaky URLBar scrolling (gh-13645)
...
Co-authored-by: mr. m <mr.m@tuta.com >
2026-05-10 23:26:52 +02:00
mr. m
d9c6dcdca4
no-bug: Improve space swipe performance (gh-13631)
2026-05-09 18:20:05 +02:00
mr. m
4983c0a877
no-bug: Lint project (gh-13632)
2026-05-09 17:53:52 +02:00
sporocyst
4e6521a713
gh-13629: fix tab renaming input field too narrow (gh-13630)
2026-05-09 16:50:29 +02:00
mr. m
da9838e478
gh-13620: Fixed unresponsive tabs when opening external links (gh-13628)
2026-05-09 12:17:13 +02:00
mr. m
639bf29de3
gh-13623: Fixed native popovers not working after using dropdowns (gh-13627)
2026-05-09 12:17:00 +02:00
mr. m
cfd1e7a6aa
no-bug: Make extensions list hidden for double toolbar (gh-13610)
2026-05-08 13:08:17 +02:00
mr. m
9c88e3a84f
no-bug: Sync upstream Firefox to version 150.0.2 (gh-13601)
2026-05-07 18:28:25 +02:00
mr. m
b999a932ac
no-bug: Improve swipe feel and avoid big jumps while swiping (gh-13603)
2026-05-07 17:08:50 +02:00
mr. m
dcf272f620
gh-13516: Show the loading indicator ontop of the webview for toolbar mode (gh-13588)
2026-05-06 16:23:05 +02:00
mr. m
3ffdf6b299
gh-13583: Fixed Previous Space in menu bar not working (gh-13587)
2026-05-06 16:10:02 +02:00