Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build-linux-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get install -y \
git curl zip unzip cmake build-essential pkg-config \
p7zip-full \
p7zip-full libssl-dev \
libgtk-3-dev libwebkit2gtk-4.1-dev libnss3-dev libgdk-pixbuf2.0-dev libxtst-dev libxss-dev libdbus-glib-1-dev libcurl4-openssl-dev
run: |
set -euo pipefail
Expand Down Expand Up @@ -148,7 +148,8 @@ jobs:
echo "${VER:-Unknown}" > build/ultralight_sdk_version.txt
echo "== ARM64: Configure & Build =="
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DULTRALIGHT_SDK_ROOT="$ROOT" -DBUILD_TESTING=OFF -DAUTO_INSTALL_CURL=ON -DWEBBROWSER_VERSION="$WEBBROWSER_VERSION"
cmake --build build --parallel
# Limit parallelism to 2 jobs to avoid compiler crashes under QEMU emulation
cmake --build build --parallel 2
echo "== ARM64: Package (TGZ) =="
cpack --config build/CPackConfig.cmake -C Release -G TGZ -D CPACK_OUTPUT_FILE_PREFIX="$GITHUB_WORKSPACE/build"
# Rename package to final name
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,8 @@ jobs:
libxtst-dev \
libxss-dev \
libdbus-glib-1-dev \
libcurl4-openssl-dev
libcurl4-openssl-dev \
libssl-dev

- name: 5.5 AUTO_INSTALL_CURL (helper script)
run: |
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ set(SOURCES
"src/DownloadManager.cpp"
"src/ExtensionManager.h"
"src/ExtensionManager.cpp"
"src/PasswordManager.h"
"src/PasswordManager.cpp"
"src/Tab.h"
"src/Tab.cpp"
"src/UI.h"
Expand Down
4 changes: 4 additions & 0 deletions assets/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
<div class="menu-separator"></div>
<div class="menu-item" data-action="history">History [Ctrl+H]</div>
<div class="menu-item" data-action="downloads">Downloads [Ctrl+J]</div>
<div class="menu-item" data-action="passwords">Passwords</div>
<div class="menu-item" data-action="extensions">Extensions [Ctrl+Shift+E]</div>
<div class="menu-item" data-action="settings">Settings [Ctrl+,]</div>
</div>
Expand Down Expand Up @@ -147,6 +148,9 @@
case 'downloads':
if (window.OnOpenDownloadsNewTab) OnOpenDownloadsNewTab();
break;
case 'passwords':
if (window.OnOpenPasswordsNewTab) OnOpenPasswordsNewTab();
break;
case 'extensions':
if (window.OnOpenExtensionsNewTab) OnOpenExtensionsNewTab();
break;
Expand Down
Loading
Loading