This commit is contained in:
mr. m
2025-05-18 12:22:47 +02:00
4 changed files with 7 additions and 5 deletions

View File

@@ -28,7 +28,7 @@
## 🖥️ Compatibility ## 🖥️ Compatibility
Zen is currently built using Firefox version `138.0.3`! 🚀 Zen is currently built using Firefox version `138.0.4`! 🚀
- [`Zen Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 138.0.3`! - [`Zen Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 138.0.3`!
- Check out the latest [release notes](https://zen-browser.app/release-notes)! - Check out the latest [release notes](https://zen-browser.app/release-notes)!

View File

@@ -1 +1 @@
a7fc259e12695c40d6ae249950f054221fed4f95 f5fd58c29d2c9bfcc5dcfc8f4abbe69016e13b44

View File

@@ -2080,11 +2080,13 @@ var gZenWorkspaces = new (class extends ZenMultiWindowFeature {
const offset = -(newWorkspaceIndex - elementWorkspaceIndex) * 100; const offset = -(newWorkspaceIndex - elementWorkspaceIndex) * 100;
const newTransform = `translateX(${offset}%)`; const newTransform = `translateX(${offset}%)`;
if (shouldAnimate) { if (shouldAnimate) {
const existingPaddingTop = element.style.paddingTop;
animations.push( animations.push(
gZenUIManager.motion.animate( gZenUIManager.motion.animate(
element, element,
{ {
transform: existingTransform ? [existingTransform, newTransform] : newTransform, transform: existingTransform ? [existingTransform, newTransform] : newTransform,
paddingTop: existingTransform ? [existingPaddingTop, existingPaddingTop] : existingPaddingTop,
}, },
{ {
type: 'spring', type: 'spring',

View File

@@ -5,8 +5,8 @@
"binaryName": "zen", "binaryName": "zen",
"version": { "version": {
"product": "firefox", "product": "firefox",
"version": "138.0.3", "version": "138.0.4",
"candidate": "138.0.3" "candidate": "138.0.4"
}, },
"buildOptions": { "buildOptions": {
"generateBranding": true "generateBranding": true
@@ -19,7 +19,7 @@
"brandShortName": "Zen", "brandShortName": "Zen",
"brandFullName": "Zen Browser", "brandFullName": "Zen Browser",
"release": { "release": {
"displayVersion": "1.12.5b", "displayVersion": "1.12.6b",
"github": { "github": {
"repo": "zen-browser/desktop" "repo": "zen-browser/desktop"
}, },