From e808443631697243488b18840ad46f680ef37a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mauro=20=F0=9F=A4=99?= <91018726+mauro-balades@users.noreply.github.com> Date: Thu, 22 Aug 2024 23:14:57 +0200 Subject: [PATCH 1/4] Update vertical-tabs.css --- src/browser/base/content/zen-styles/zen-tabs/vertical-tabs.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/base/content/zen-styles/zen-tabs/vertical-tabs.css b/src/browser/base/content/zen-styles/zen-tabs/vertical-tabs.css index 1ae3741c7..a0265a2bd 100644 --- a/src/browser/base/content/zen-styles/zen-tabs/vertical-tabs.css +++ b/src/browser/base/content/zen-styles/zen-tabs/vertical-tabs.css @@ -9,7 +9,7 @@ margin-top: 0; /* Issue #156 */ } - :root[inFullscreen="true"] #navigator-toolbox { + #navigator-toolbox { margin-top: 0 !important; } From 04af43909e1b4d54d7e970e8876e6a3f18ad97eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mauro=20=F0=9F=A4=99?= <91018726+mauro-balades@users.noreply.github.com> Date: Fri, 23 Aug 2024 01:32:38 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 296b142f9..d12bd8de9 100644 --- a/README.md +++ b/README.md @@ -78,3 +78,13 @@ Zen coudn't be in its current state without the help of these amazing projects! [MPL LICENSE](./LICENSE) +## Star History + + + + + + Star History Chart + + + From 5c1decc77bd5546488dce8f13c95201092834b60 Mon Sep 17 00:00:00 2001 From: Gunir <134402102+gunir@users.noreply.github.com> Date: Fri, 23 Aug 2024 08:27:02 +0700 Subject: [PATCH 3/4] Disable Edge font style for Mac Disable Edge font style for Mac --- src/browser/app/profile/zen-browser.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/browser/app/profile/zen-browser.js b/src/browser/app/profile/zen-browser.js index c235f45e0..fd2603986 100644 --- a/src/browser/app/profile/zen-browser.js +++ b/src/browser/app/profile/zen-browser.js @@ -135,9 +135,11 @@ pref('dom.script_loader.bytecode_cache.strategy', 2); // Extremly experimental features pref("dom.webgpu.enabled", true); -// Font rendering +// Font rendering, not for MacOSX +#ifndef XP_MACOSX pref('gfx.font_rendering.cleartype_params.rendering_mode', 5); pref('gfx.font_rendering.cleartype_params.gamma', 1750); +#endif #include better-fox.js From bcabada80e0ae11bb051e8fcd4fc7045d1b180d1 Mon Sep 17 00:00:00 2001 From: Gunir <134402102+gunir@users.noreply.github.com> Date: Fri, 23 Aug 2024 11:16:13 +0700 Subject: [PATCH 4/4] Update zen-browser.js --- src/browser/app/profile/zen-browser.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/browser/app/profile/zen-browser.js b/src/browser/app/profile/zen-browser.js index fd2603986..c013583e3 100644 --- a/src/browser/app/profile/zen-browser.js +++ b/src/browser/app/profile/zen-browser.js @@ -135,11 +135,13 @@ pref('dom.script_loader.bytecode_cache.strategy', 2); // Extremly experimental features pref("dom.webgpu.enabled", true); -// Font rendering, not for MacOSX +// Font rendering, not for MacOSX and Linux +#ifndef XP_UNIX #ifndef XP_MACOSX pref('gfx.font_rendering.cleartype_params.rendering_mode', 5); pref('gfx.font_rendering.cleartype_params.gamma', 1750); #endif +#endif #include better-fox.js