Skip to content

Commit 3b10170

Browse files
authoredMar 10, 2025··
Merge pull request #4125 from robin-samuel/v3-aplpha-fix/generate-icons
fix: correct filename for Windows icon generation in Taskfile

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎docs/src/content/docs/changelog.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108108
- 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)
109109
- 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)
110110
- Fixed assetFileServer not serving `.html` files when non-extension request when `[request]` doesn't exist but `[request].html` does
111+
- Fixed icon generation paths by [@robin-samuel](https://github.com/robin-samuel) in [#4125](https://github.com/wailsapp/wails/pull/4125)
111112

112113
### Changed
113114

‎v3/internal/commands/build_assets/Taskfile.tmpl.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ tasks:
6666
sources:
6767
- "appicon.png"
6868
generates:
69-
- "icons.icns"
70-
- "icons.ico"
69+
- "darwin/icons.icns"
70+
- "windows/icon.ico"
7171
cmds:
72-
- wails3 generate icons -input appicon.png -macfilename darwin/icons.icns -windowsfilename windows/icons.ico
72+
- wails3 generate icons -input appicon.png -macfilename darwin/icons.icns -windowsfilename windows/icon.ico
7373

7474
dev:frontend:
7575
summary: Runs the frontend in development mode

0 commit comments

Comments
 (0)
Please sign in to comment.