mirror of
https://github.com/zen-browser/desktop.git
synced 2025-07-08 00:10:00 +02:00
chore: Updated to firefox 138, b=(no-bug), c=common, tabs
This commit is contained in:
parent
053bc28e68
commit
be54733b13
5 changed files with 6 additions and 5 deletions
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
## 🖥️ Compatibility
|
## 🖥️ Compatibility
|
||||||
|
|
||||||
Zen is currently built using Firefox version `137.0.2`! 🚀
|
Zen is currently built using Firefox version `138.0`! 🚀
|
||||||
|
|
||||||
- [`Zen Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 138.0`!
|
- [`Zen Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 138.0`!
|
||||||
- Check out the latest [release notes](https://zen-browser.app/release-notes)!
|
- Check out the latest [release notes](https://zen-browser.app/release-notes)!
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
7113caf804fda45f011f1900c25de638398d586e
|
8113a66aeeec42dca9739c7b742a3408cb5b7cf7
|
|
@ -36,6 +36,7 @@ class ZenMultiWindowFeature {
|
||||||
}
|
}
|
||||||
for (const browser of ZenMultiWindowFeature.browsers) {
|
for (const browser of ZenMultiWindowFeature.browsers) {
|
||||||
try {
|
try {
|
||||||
|
if (browser.closed) continue;
|
||||||
await callback(browser);
|
await callback(browser);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
|
|
|
@ -585,9 +585,9 @@
|
||||||
const state = JSON.parse(tabState);
|
const state = JSON.parse(tabState);
|
||||||
|
|
||||||
const foundEntryIndex = state.entries?.findIndex((entry) => entry.url === pin.url);
|
const foundEntryIndex = state.entries?.findIndex((entry) => entry.url === pin.url);
|
||||||
if (!foundEntryIndex || foundEntryIndex === -1) {
|
if (foundEntryIndex === -1) {
|
||||||
state.entries = [
|
state.entries = [
|
||||||
{
|
[state.entries[0]] ?? {
|
||||||
url: pin.url,
|
url: pin.url,
|
||||||
title: pin.title,
|
title: pin.title,
|
||||||
triggeringPrincipal_base64: lazy.E10SUtils.SERIALIZED_SYSTEMPRINCIPAL,
|
triggeringPrincipal_base64: lazy.E10SUtils.SERIALIZED_SYSTEMPRINCIPAL,
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"binaryName": "zen",
|
"binaryName": "zen",
|
||||||
"version": {
|
"version": {
|
||||||
"product": "firefox",
|
"product": "firefox",
|
||||||
"version": "137.0.2",
|
"version": "138.0",
|
||||||
"candidate": "138.0"
|
"candidate": "138.0"
|
||||||
},
|
},
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue