Merge branch 'dev' into black-page-transitions-design-updates

This commit is contained in:
Aaron Iker 2026-01-14 16:23:00 +01:00
commit 6b63ea98d8
112 changed files with 6269 additions and 654 deletions

View file

@ -1,7 +1,7 @@
{
"name": "@opencode-ai/desktop",
"private": true,
"version": "1.1.16",
"version": "1.1.20",
"type": "module",
"license": "MIT",
"scripts": {

View file

@ -198,7 +198,7 @@ fn spawn_sidecar(app: &AppHandle, port: u32, password: &str) -> CommandChild {
}
async fn check_server_health(url: &str, password: Option<&str>) -> bool {
let health_url = format!("{}/health", url.trim_end_matches('/'));
let health_url = format!("{}/global/health", url.trim_end_matches('/'));
let client = reqwest::Client::builder()
.timeout(Duration::from_secs(3))
.build();