Skip to content

Commit 53a2620

Browse files
authoredMar 10, 2025··
Merge branch 'v3-alpha' into v3-aplpha-fix/build-assets-version

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

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

Lines changed: 1 addition & 0 deletions
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
- Fixed NSIS Error because of incorrect prefix on default version in config by [@robin-samuel](https://github.com/robin-samuel) in [#4126](https://github.com/wailsapp/wails/pull/4126)
112113

113114
### Changed

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

Lines changed: 3 additions & 3 deletions
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.