From 45955dbbecb914f915d5f814483f825a40bf2694 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Tue, 2 Jun 2026 13:10:52 -0400 Subject: [PATCH 1/5] Bump version to 1.0.4-alpha --- src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index b87d2b1..153d276 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Lightningbeam", - "version": "1.0.3-alpha", + "version": "1.0.4-alpha", "identifier": "org.lightningbeam.core", "build": { "frontendDist": "../src" From a36553ccbb4e60993ea0e476d800137fd9d5fc6f Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Tue, 2 Jun 2026 13:23:30 -0400 Subject: [PATCH 2/5] fix build issues --- .github/workflows/build.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 57dc572..cff1cad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: include: - - platform: ubuntu-22.04 + - platform: ubuntu-24.04 target: '' artifact-name: linux-x86_64 - platform: macos-latest @@ -62,7 +62,7 @@ jobs: # ── Linux dependencies ── - name: Install dependencies (Linux) - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-24.04' run: | sudo apt-get update sudo apt-get install -y \ @@ -74,7 +74,7 @@ jobs: libpulse-dev squashfs-tools dpkg rpm - name: Install cargo packaging tools (Linux) - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-24.04' uses: taiki-e/install-action@v2 with: tool: cargo-deb,cargo-generate-rpm @@ -135,7 +135,7 @@ jobs: rm -f lightningbeam-ui/lightningbeam-editor/assets/presets/README.md - name: Inject preset entries into RPM metadata (Linux) - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-24.04' shell: bash run: | cd lightningbeam-ui @@ -190,7 +190,7 @@ jobs: # Linux Packaging # ══════════════════════════════════════════════ - name: Build .deb package - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-24.04' shell: bash run: | cd lightningbeam-ui @@ -206,14 +206,14 @@ jobs: rm -rf "$WORK" - name: Build .rpm package - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-24.04' shell: bash run: | cd lightningbeam-ui cargo generate-rpm -p lightningbeam-editor - name: Build AppImage - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-24.04' shell: bash run: | cd lightningbeam-ui @@ -259,7 +259,7 @@ jobs: chmod +x "Lightningbeam_Editor-${VERSION}-x86_64.AppImage" - name: Upload .deb - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-24.04' uses: actions/upload-artifact@v4 with: name: deb-package @@ -267,7 +267,7 @@ jobs: if-no-files-found: error - name: Upload .rpm - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-24.04' uses: actions/upload-artifact@v4 with: name: rpm-package @@ -275,7 +275,7 @@ jobs: if-no-files-found: error - name: Upload AppImage - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-24.04' uses: actions/upload-artifact@v4 with: name: appimage @@ -380,7 +380,7 @@ jobs: release: needs: build - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 permissions: contents: write steps: From 37f4abd1f53fc4abdd16c78cfeb4dc1c5a4c8afb Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Tue, 2 Jun 2026 13:41:10 -0400 Subject: [PATCH 3/5] fix build issues --- lightningbeam-ui/lightningbeam-editor/src/tablet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningbeam-ui/lightningbeam-editor/src/tablet.rs b/lightningbeam-ui/lightningbeam-editor/src/tablet.rs index e39a5e5..8186b4f 100644 --- a/lightningbeam-ui/lightningbeam-editor/src/tablet.rs +++ b/lightningbeam-ui/lightningbeam-editor/src/tablet.rs @@ -213,7 +213,7 @@ impl TabletInput { let pressure = ctx.input(|i| { i.events.iter().rev().find_map(|e| { if let egui::Event::Touch { - force: Some(egui::TouchForce::Normalized(f)), + force: Some(f), .. } = e { From 2a0c7da5ea644c17b958892536e19db7175ac9c9 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Tue, 2 Jun 2026 13:52:32 -0400 Subject: [PATCH 4/5] fix build issues --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cff1cad..7257b45 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -210,7 +210,8 @@ jobs: shell: bash run: | cd lightningbeam-ui - cargo generate-rpm -p lightningbeam-editor + RPM_VERSION=$(grep '^version' lightningbeam-editor/Cargo.toml | sed 's/.*"\(.*\)"/\1/' | tr '-' '~') + cargo generate-rpm -p lightningbeam-editor --set-metadata="version = \"$RPM_VERSION\"" - name: Build AppImage if: matrix.platform == 'ubuntu-24.04' From d7de5ce3f1ece206502f306d4f20227e6d6ae6bd Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Tue, 2 Jun 2026 14:37:07 -0400 Subject: [PATCH 5/5] Bump version to 1.0.4-alpha --- lightningbeam-ui/lightningbeam-editor/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningbeam-ui/lightningbeam-editor/Cargo.toml b/lightningbeam-ui/lightningbeam-editor/Cargo.toml index d15a9cf..8d36026 100644 --- a/lightningbeam-ui/lightningbeam-editor/Cargo.toml +++ b/lightningbeam-ui/lightningbeam-editor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightningbeam-editor" -version = "1.0.3-alpha" +version = "1.0.4-alpha" edition = "2021" description = "Multimedia editor for audio, video and 2D animation" license = "GPL-3.0-or-later"