From d1be724f41949ceeb297b164ed6cefa53b7a3013 Mon Sep 17 00:00:00 2001 From: robinsamuel Date: Sun, 9 Mar 2025 23:17:35 +0100 Subject: [PATCH 1/3] fix: correct filename for Windows icon generation in Taskfile --- v3/internal/commands/build_assets/Taskfile.tmpl.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v3/internal/commands/build_assets/Taskfile.tmpl.yml b/v3/internal/commands/build_assets/Taskfile.tmpl.yml index f4e9be52141..0b7ff9c5b3b 100644 --- a/v3/internal/commands/build_assets/Taskfile.tmpl.yml +++ b/v3/internal/commands/build_assets/Taskfile.tmpl.yml @@ -67,9 +67,9 @@ tasks: - "appicon.png" generates: - "icons.icns" - - "icons.ico" + - "icon.ico" cmds: - - wails3 generate icons -input appicon.png -macfilename darwin/icons.icns -windowsfilename windows/icons.ico + - wails3 generate icons -input appicon.png -macfilename darwin/icons.icns -windowsfilename windows/icon.ico dev:frontend: summary: Runs the frontend in development mode From 1a0096c1699eb6cb2cb3b793e7c21246e2d49693 Mon Sep 17 00:00:00 2001 From: robinsamuel Date: Sun, 9 Mar 2025 23:34:12 +0100 Subject: [PATCH 2/3] fix: update output paths for generated icons in Taskfile --- v3/internal/commands/build_assets/Taskfile.tmpl.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v3/internal/commands/build_assets/Taskfile.tmpl.yml b/v3/internal/commands/build_assets/Taskfile.tmpl.yml index 0b7ff9c5b3b..34f0659e750 100644 --- a/v3/internal/commands/build_assets/Taskfile.tmpl.yml +++ b/v3/internal/commands/build_assets/Taskfile.tmpl.yml @@ -66,8 +66,8 @@ tasks: sources: - "appicon.png" generates: - - "icons.icns" - - "icon.ico" + - "darwin/icons.icns" + - "windows/icon.ico" cmds: - wails3 generate icons -input appicon.png -macfilename darwin/icons.icns -windowsfilename windows/icon.ico From 1bb14e16a5596cc0325003c923882f15a94f1d3a Mon Sep 17 00:00:00 2001 From: robinsamuel Date: Mon, 10 Mar 2025 15:23:05 +0100 Subject: [PATCH 3/3] feat: update changelog --- docs/src/content/docs/changelog.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/content/docs/changelog.mdx b/docs/src/content/docs/changelog.mdx index b18c0bcd6ce..a64d2e71845 100644 --- a/docs/src/content/docs/changelog.mdx +++ b/docs/src/content/docs/changelog.mdx @@ -108,6 +108,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - The dragging and resizing mechanism is now more robust and matches expected platform behaviour more closely by [@fbbdev](https://github.com/fbbdev) in [#4100](https://github.com/wailsapp/wails/pull/4100) - Fixed [#4097](https://github.com/wailsapp/wails/issues/4097) Webpack/angular discards runtime init code by [@fbbdev](https://github.com/fbbdev) in [#4100](https://github.com/wailsapp/wails/pull/4100) - Fixed assetFileServer not serving `.html` files when non-extension request when `[request]` doesn't exist but `[request].html` does +- Fixed icon generation paths by [@robin-samuel](https://github.com/robin-samuel) in [#4125](https://github.com/wailsapp/wails/pull/4125) ### Changed