Pre release!!!

This commit is contained in:
Mauro Balades
2024-07-05 01:14:29 +02:00
parent c97c17456f
commit f03aa78fde
3 changed files with 8 additions and 4 deletions

View File

@@ -361,7 +361,7 @@ jobs:
set -x
pnpm package
mv ./dist/output.mar windows.mar
mv ./dist/zen-$(pnpm gluon get version | xargs).en-US.win64.zip zen.en-US.win64.zip
mv ./dist/zen-$(pnpm gluon get version | xargs).en-US.win64.zip zen.win64.zip
ls ./dist
ls .
@@ -375,7 +375,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: zen.win64.zip
path: ./zen.en-US.win64.zip
path: ./zen.win64.zip
- name: Upload mar
uses: actions/upload-artifact@v3
@@ -587,6 +587,9 @@ jobs:
path: updates
token: ${{ secrets.GITHUB_TOKEN }}
- name: Pull tools repo
run: git pull && git checkout main
- name: Copy update manifests
run: |
mkdir -p updates/updates

View File

@@ -29,7 +29,7 @@
"brandShortName": "Zen Browser",
"brandFullName": "Zen Browser",
"release": {
"displayVersion": "0.0.0-a.3",
"displayVersion": "0.0.0-a.0",
"github": {
"repo": "zen-browser/desktop"
},

View File

@@ -246,11 +246,12 @@ var gZenViewSplitter = {
}
selector.addEventListener("click", ((gridType) => {
if (gridType === "unsplit") {
let currentTab = gBrowser.selectedTab;
let tabs = this._data[this.currentView].tabs;
for (const tab of tabs) {
this.onTabClose({ target: tab, forUnsplit: true });
}
gBrowser.selectedTab = tabs[0];
gBrowser.selectedTab = currentTab;
panel.hidePopup();
this.updateSplitViewButton(true);
return;