chore: Update alpha.yml workflow to use pnpm for packaging
2
.github/workflows/alpha.yml
vendored
@@ -312,10 +312,12 @@ jobs:
|
||||
|
||||
- name: Package
|
||||
run: |
|
||||
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
|
||||
ls ./dist
|
||||
ls .
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
|
||||
|
Before Width: | Height: | Size: 396 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 1014 B After Width: | Height: | Size: 501 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 629 B |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 646 B |
|
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 8.0 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 830 B |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 396 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 1014 B After Width: | Height: | Size: 501 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 629 B |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 646 B |
|
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 8.0 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 830 B |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 1.5 KiB |
@@ -34,7 +34,6 @@ var gZenBrowserManagerSidebar = {
|
||||
Services.prefs.addObserver("zen.sidebar.enabled", this.handleEvent.bind(this));
|
||||
Services.prefs.addObserver("zen.sidebar.floating", this.handleEvent.bind(this));
|
||||
|
||||
|
||||
let sidebar = document.getElementById("zen-sidebar-web-panel");
|
||||
this.splitterElement.addEventListener("mousedown", (function(event) {
|
||||
let computedStyle = window.getComputedStyle(sidebar);
|
||||
@@ -65,6 +64,8 @@ var gZenBrowserManagerSidebar = {
|
||||
document.addEventListener("mouseup", mouseUp);
|
||||
}
|
||||
}).bind(this));
|
||||
|
||||
this.handleEvent();
|
||||
},
|
||||
|
||||
handleEvent() {
|
||||
@@ -240,6 +241,9 @@ var gZenBrowserManagerSidebar = {
|
||||
this._updateButtons();
|
||||
let sidebar = this._openAndGetWebPanelWrapper();
|
||||
this._hideAllWebPanels();
|
||||
if (!this._currentPanel) {
|
||||
return;
|
||||
}
|
||||
let existantWebview = sidebar.querySelector(`browser[zen-sidebar-id="${this._currentPanel}"]`);
|
||||
if (existantWebview) {
|
||||
existantWebview.browsingContext.isActive = true;
|
||||
|
||||
@@ -172,3 +172,7 @@
|
||||
min-height: fit-content;
|
||||
}
|
||||
|
||||
#zen-sidepanel-button[hidden="true"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||