From ee49258c4a4b57faadbbe0916c06f972c39b2cf7 Mon Sep 17 00:00:00 2001 From: Psychotoxical Date: Wed, 11 Mar 2026 23:12:00 +0100 Subject: [PATCH] chore: release v1.0.2 - fix GStreamer bundling for Linux --- .github/workflows/release.yml | 14 +++++++++++++- CHANGELOG.md | 6 ++++++ package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 5 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 77b5ee1a..5a212ba9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,18 @@ jobs: if: matrix.settings.platform == 'ubuntu-22.04' run: | sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf + sudo apt-get install -y \ + libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf \ + libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \ + gstreamer1.0-plugins-base gstreamer1.0-plugins-good \ + gstreamer1.0-plugins-bad gstreamer1.0-libav + + - name: install linuxdeploy gstreamer plugin (ubuntu only) + if: matrix.settings.platform == 'ubuntu-22.04' + run: | + wget -q "https://raw.githubusercontent.com/linuxdeploy/linuxdeploy-plugin-gstreamer/master/linuxdeploy-plugin-gstreamer.sh" \ + -O /usr/local/bin/linuxdeploy-plugin-gstreamer.sh + chmod +x /usr/local/bin/linuxdeploy-plugin-gstreamer.sh - name: setup node uses: actions/setup-node@v4 @@ -48,6 +59,7 @@ jobs: - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + APPIMAGE_EXTRACT_AND_RUN: 1 with: tagName: app-v__VERSION__ releaseName: 'Psysonic v__VERSION__' diff --git a/CHANGELOG.md b/CHANGELOG.md index fa4ea895..eae1f7c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.2] - 2026-03-11 + +### Fixed +- **Linux AppImage**: Integrated GStreamer bundling fix in CI/CD workflow to ensure audio playback works on systems without pre-installed GStreamer plugins (e.g., Arch, CachyOS). +- **CI/CD Reliability**: Set `APPIMAGE_EXTRACT_AND_RUN=1` to prevent FUSE-related issues during the AppImage build process. + ## [1.0.1] - 2026-03-11 ### Fixed diff --git a/package.json b/package.json index cb003209..57e51016 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "psysonic", - "version": "1.0.1", + "version": "1.0.2", "private": true, "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 0194999f..4577c99f 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "psysonic" -version = "1.0.1" +version = "1.0.2" description = "Psysonic Desktop Music Player" authors = [] license = "" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index aea5c6eb..b90ad82c 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": "Psysonic", - "version": "1.0.1", + "version": "1.0.2", "identifier": "dev.psysonic.app", "build": { "beforeDevCommand": "npm run dev",