mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 15:30:37 +08:00
* Use OutputFilename instead of Name * #3200: add changelog entry --------- Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
This commit is contained in:
parent
482f19e6b9
commit
e941f36267
@ -83,10 +83,10 @@ func packageApplicationForDarwin(options *Options) error {
|
||||
return err
|
||||
}
|
||||
// Copy binary
|
||||
packedBinaryPath := filepath.Join(exeDir, options.ProjectData.Name)
|
||||
packedBinaryPath := filepath.Join(exeDir, options.ProjectData.OutputFilename)
|
||||
err = fs.MoveFile(options.CompiledBinary, packedBinaryPath)
|
||||
if err != nil {
|
||||
return errors.Wrap(err, "Cannot move file: "+options.ProjectData.OutputFilename)
|
||||
return errors.Wrap(err, "Cannot move file: "+options.CompiledBinary)
|
||||
}
|
||||
|
||||
// Generate Info.plist
|
||||
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
## [Unreleased]
|
||||
|
||||
### Fixed
|
||||
- Fixed MacOS build to use `outputfilename` from wails.json. [#3200](https://github.com/wailsapp/wails/issues/3200)
|
||||
- Fixed file drop events on windows. Fixed in [PR](https://github.com/wailsapp/wails/pull/3595) by @FrancescoLuzzi
|
||||
+ Fixed file drop events on Windows in [PR](https://github.com/wailsapp/wails/pull/3595) by @FrancescoLuzzi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user