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
33 changes: 26 additions & 7 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,35 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-24.04, ubuntu-24.04-arm]
container:
image: fedora:43
steps:
- name: Install system dependencies
run: |
sudo apt update
sudo apt install -y \
libgtk-4-dev \
libadwaita-1-dev \
libglib2.0-dev \
libwebkitgtk-6.0-dev \
blueprint-compiler
dnf update -y
dnf install -y \
gtk4-devel \
libadwaita-devel \
glib2-devel \
webkitgtk6.0-devel \
blueprint-compiler \
rust \
cargo \
rustfmt \
git \
gcc \
gcc-c++ \
pkgconf-pkg-config \
nodejs24 \
nodejs24-npm
# Create symlinks for versioned Node.js binaries
ln -sf /usr/bin/node-24 /usr/bin/node
ln -sf /usr/bin/npm-24 /usr/bin/npm

- name: Verify versions
run: |
pkg-config --modversion gtk4
npm --version

- uses: actions/checkout@v4.2.2

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

# Changelog

## v0.1.4 (2025-10-17)

- Update to latest GTK 4.20, Libadwaita 1.8 and PhotoSphereViewer 5.14.
- Improve keyboard shortcut dialog.

## v0.1.3 (2025-07-20)

- Add keyboard shortcuts `+` and `-` for zooming in and out.
Expand Down
Loading