From 4990e164dc9d260ff6906db17488a5cfda8a1e1f Mon Sep 17 00:00:00 2001 From: Staxed Date: Fri, 17 Apr 2026 19:01:06 -0400 Subject: [PATCH] fix(desktop): drop invalid app.title, use official Tauri v2 schema URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tauri v2 rejects `app.title` with "Additional properties are not allowed"; window title lives on each entry in `app.windows[]`, which was already set correctly. Ralph's scaffold included both — removed the stray duplicate. Also swapped the $schema URL from a dead personal fork (raw.githubusercontent.com/nicovrc/tauri) to the official one (schema.tauri.app/config/2) so editor autocomplete works. Caught during first `bun tauri dev` / `bun tauri build` on Windows. Co-Authored-By: Claude Opus 4.7 (1M context) --- packages/desktop/src-tauri/tauri.conf.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/desktop/src-tauri/tauri.conf.json b/packages/desktop/src-tauri/tauri.conf.json index 8f52765d00..c2366731c0 100644 --- a/packages/desktop/src-tauri/tauri.conf.json +++ b/packages/desktop/src-tauri/tauri.conf.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/nicovrc/tauri/dev/crates/tauri-config-schema/schema.json", + "$schema": "https://schema.tauri.app/config/2", "productName": "Archon Desktop", "version": "0.1.0", "identifier": "com.archon.desktop", @@ -10,7 +10,6 @@ "beforeBuildCommand": "cd .. && bun run build" }, "app": { - "title": "Archon Desktop", "windows": [ { "title": "Archon Desktop",