From f5bee069c09202cc2e1e3a78287fb3c93b34dd2e Mon Sep 17 00:00:00 2001 From: Duncan Tourolle Date: Thu, 20 Aug 2026 19:36:21 +0200 Subject: [PATCH] fix(desktop): give the window a real title and a usable default size tauri.conf.json still carried the scaffold defaults: a lowercase "jellytau" title in an 800x600 window. The title is what the OS shows in the task switcher and window list, and 800x600 is too small for a media library grid with a mini player docked at the bottom. Now "JellyTau" at 1280x800, with minWidth/minHeight held at the old 800x600 so the layout still has a defined floor when a user drags the window small. --- src-tauri/tauri.conf.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 5f47bbb8..610dcfd4 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -12,9 +12,12 @@ "app": { "windows": [ { - "title": "jellytau", - "width": 800, - "height": 600 + "title": "JellyTau", + "width": 1280, + "height": 800, + "minWidth": 800, + "minHeight": 600, + "resizable": true } ], "security": {