rename logo assets: logo-* and appicon-* sets

Two clean sets from their SVG sources:
  logo.svg    → logo-{16..1024}.png (bare, transparent)
  appicon.svg → appicon-{16..1024}.png (on dark circle)
All rendered from 2048px masters. References updated in
pubspec.yaml, welcome view, and native runner.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-23 10:04:01 +02:00
co-authored by Claude Opus 4.6
parent fc23f4b953
commit fa0032d26d
28 changed files with 6 additions and 10 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ static void my_application_activate(GApplication* application) {
g_autofree gchar* exe_dir = g_path_get_dirname(exe_path);
g_autofree gchar* icon_path = g_build_filename(
exe_dir, "data", "flutter_assets", "assets", "logo",
"clide-taskbar-256.png", nullptr);
"appicon-256.png", nullptr);
g_autoptr(GError) icon_error = nullptr;
GdkPixbuf* icon = gdk_pixbuf_new_from_file(icon_path, &icon_error);
if (icon != nullptr) {