chore: bump to v1.29.0 — release prep

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Psychotoxical
2026-04-02 22:24:41 +02:00
parent 7263d93d42
commit a932e7c2db
6 changed files with 48 additions and 15 deletions
+2 -2
View File
@@ -43,10 +43,9 @@ fn exit_app(app_handle: tauri::AppHandle) {
/// prevent_close() and releases the single-instance lock immediately.
#[tauri::command]
fn relaunch_after_update(app: tauri::AppHandle) {
let exe = std::env::current_exe().unwrap_or_default();
#[cfg(target_os = "windows")]
{
let exe = std::env::current_exe().unwrap_or_default();
let exe_str = exe.to_string_lossy().to_string().replace('\'', "''");
let script = format!(
"Start-Sleep -Milliseconds 1500; Start-Process '{exe_str}'"
@@ -58,6 +57,7 @@ fn relaunch_after_update(app: tauri::AppHandle) {
#[cfg(target_os = "macos")]
{
let exe = std::env::current_exe().unwrap_or_default();
// exe lives at Psysonic.app/Contents/MacOS/psysonic — walk up to the bundle.
let bundle = exe
.parent() // MacOS/
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Psysonic",
"version": "1.28.0",
"version": "1.29.0",
"identifier": "dev.psysonic.player",
"build": {
"beforeDevCommand": "npm run dev",