mirror of
https://github.com/zen-browser/desktop.git
synced 2025-12-16 03:15:29 +00:00
Compare commits
3 Commits
drag-and-d
...
1.17.14b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e73ea97ea0 | ||
|
|
fb9bbc3a51 | ||
|
|
bdfb810212 |
@@ -15,6 +15,5 @@
|
||||
"ebay",
|
||||
"ebay-*"
|
||||
]
|
||||
},
|
||||
"timestamp": 1765455207275
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,3 +8,12 @@
|
||||
|
||||
- name: network.predictor.enable-hover-on-ssl
|
||||
value: true
|
||||
|
||||
# See https://github.com/zen-browser/desktop/issues/11599, this pref seems to
|
||||
# have disabled itself on macos for some unknown reason.
|
||||
# Make sure its in sync with:
|
||||
# https://searchfox.org/firefox-main/rev/1477feb9706f4ccc5bd571c1c215832a6fbb7464/modules/libpref/init/StaticPrefList.yaml#7741-7748
|
||||
- name: gfx.webrender.compositor
|
||||
condition: 'defined(XP_WIN) || defined(XP_DARWIN)'
|
||||
value: '@cond'
|
||||
mirror: once
|
||||
|
||||
@@ -7,3 +7,9 @@
|
||||
|
||||
- name: zen.downloads.download-animation-duration
|
||||
value: 1000 # ms
|
||||
|
||||
- name: zen.downloads.icon-popup-position
|
||||
# 0: Follow tab's position
|
||||
# 1: Left side always
|
||||
# 2: Right side always
|
||||
value: 0
|
||||
|
||||
@@ -131,6 +131,9 @@ class nsZenDownloadAnimationElement extends HTMLElement {
|
||||
}
|
||||
|
||||
#areTabsOnRightSide() {
|
||||
const position = Services.prefs.getIntPref('zen.downloads.icon-popup-position', 0);
|
||||
if (position === 1) return false;
|
||||
if (position === 2) return true;
|
||||
return Services.prefs.getBoolPref('zen.tabs.vertical.right-side');
|
||||
}
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
"brandShortName": "Zen",
|
||||
"brandFullName": "Zen Browser",
|
||||
"release": {
|
||||
"displayVersion": "1.17.13b",
|
||||
"displayVersion": "1.17.14b",
|
||||
"github": {
|
||||
"repo": "zen-browser/desktop"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user