diff --git a/README.md b/README.md index 9f6e395c1..8a138cffc 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ ## 🖥️ 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`! - Check out the latest [release notes](https://zen-browser.app/release-notes)! diff --git a/build/firefox-cache/l10n-last-commit-hash b/build/firefox-cache/l10n-last-commit-hash index 3c026b98f..5ec4a514c 100644 --- a/build/firefox-cache/l10n-last-commit-hash +++ b/build/firefox-cache/l10n-last-commit-hash @@ -1 +1 @@ -a7fc259e12695c40d6ae249950f054221fed4f95 \ No newline at end of file +f5fd58c29d2c9bfcc5dcfc8f4abbe69016e13b44 \ No newline at end of file diff --git a/src/zen/workspaces/ZenWorkspaces.mjs b/src/zen/workspaces/ZenWorkspaces.mjs index 04229e906..37616c19c 100644 --- a/src/zen/workspaces/ZenWorkspaces.mjs +++ b/src/zen/workspaces/ZenWorkspaces.mjs @@ -2080,11 +2080,13 @@ var gZenWorkspaces = new (class extends ZenMultiWindowFeature { const offset = -(newWorkspaceIndex - elementWorkspaceIndex) * 100; const newTransform = `translateX(${offset}%)`; if (shouldAnimate) { + const existingPaddingTop = element.style.paddingTop; animations.push( gZenUIManager.motion.animate( element, { transform: existingTransform ? [existingTransform, newTransform] : newTransform, + paddingTop: existingTransform ? [existingPaddingTop, existingPaddingTop] : existingPaddingTop, }, { type: 'spring', diff --git a/surfer.json b/surfer.json index 00ee0815b..4190c7ca9 100644 --- a/surfer.json +++ b/surfer.json @@ -5,8 +5,8 @@ "binaryName": "zen", "version": { "product": "firefox", - "version": "138.0.3", - "candidate": "138.0.3" + "version": "138.0.4", + "candidate": "138.0.4" }, "buildOptions": { "generateBranding": true @@ -19,7 +19,7 @@ "brandShortName": "Zen", "brandFullName": "Zen Browser", "release": { - "displayVersion": "1.12.5b", + "displayVersion": "1.12.6b", "github": { "repo": "zen-browser/desktop" },