From 0a1b951f3d6f7bf2afd293e5ef096de98cfa2a29 Mon Sep 17 00:00:00 2001 From: David McKay Date: Sun, 6 Sep 2026 13:04:50 -0700 Subject: [PATCH] Fetch the deployment at v0.0.8, which is the first release the shell can start v0.0.7's app has no `serve` script, so the shell refused it by name rather than crash-looping, and its compose file mounts /var/run/docker.sock literally, which does not exist under rootless Podman. Both are fixed in v0.0.8, along with the Vite host and the database URL parsing, so this is the first tag a clean install can actually complete against. --- desktop/src-tauri/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/src-tauri/src/main.rs b/desktop/src-tauri/src/main.rs index 5bec7819..df4336b8 100644 --- a/desktop/src-tauri/src/main.rs +++ b/desktop/src-tauri/src/main.rs @@ -13,7 +13,7 @@ use openbot_desktop_lib::{ /// Pinned rather than "latest": the images a release runs are pinned per release, so the tree that /// names them has to be too, and an app that fetches whatever shipped this morning is not a version /// anybody can be given. Moved deliberately, with the app. -const DEPLOYMENT_VERSION: &str = "v0.0.7"; +const DEPLOYMENT_VERSION: &str = "v0.0.8"; use serde::Serialize; use tauri::{Emitter, Manager};