From 8030a4a1c4d14b0c401e7c96aad9ca3a9585623f Mon Sep 17 00:00:00 2001 From: le king fu Date: Sat, 2 May 2026 15:01:35 -0400 Subject: [PATCH] feat(branding): bundle 64x64 icon in tauri.conf Follow-up to PR #186 review: tauri icon CLI generates 64x64.png but it was not declared in bundle.icon, so packagers (deb/rpm) weren't picking it up. Add it alongside the other Linux sizes. --- src-tauri/tauri.conf.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 1a480a6..2c71103 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -26,6 +26,7 @@ "targets": ["nsis", "deb", "rpm"], "icon": [ "icons/32x32.png", + "icons/64x64.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns",