5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 03:51:18 +08:00

Rename -noPackage flag to -nopackage (#3422)

* Rename `-noPackage` flag to `-nopackage`

* Update PR link
This commit is contained in:
Lea Anthony 2024-05-03 00:13:55 +10:00 committed by GitHub
parent b7713da70e
commit d44b5e9c46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,7 @@ type Build struct {
Common
BuildCommon
NoPackage bool `name:"noPackage" description:"Skips platform specific packaging"`
NoPackage bool `description:"Skips platform specific packaging"`
Upx bool `description:"Compress final binary with UPX (if installed)"`
UpxFlags string `description:"Flags to pass to upx"`
Platform string `description:"Platform to target. Comma separate multiple platforms"`

View File

@ -14,7 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
### Breaking Change
- The `-noPackage` flag was misnamed and is being renamed to `nopackage` to match the other flags. Changed by @leaanthony in [PR](https://github.com/wailsapp/wails/issues/3421).
### Fixed
- Fixed an issue with missing icon for Windows. Fixed by [@APshenkin](https://github.com/wailsapp/wails/pull/3400)