mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
Fix AMD64 appimage generation (#3898)
changelog Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
This commit is contained in:
parent
c54fbdb075
commit
76e7654242
2 changed files with 2 additions and 0 deletions
|
|
@ -41,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Consolidated dev config into `config.yml` by [leaanthony](https://github.com/leaanthony)
|
||||
|
||||
### Fixed
|
||||
- Fixed amd64 appimage compile by @atterpac in [#3898](https://github.com/wailsapp/wails/pull/3898)
|
||||
- Fixed build assets update by @ansxuman in [#3900](https://github.com/wailsapp/wails/pull/3900)
|
||||
- Fixed Linux systray `OnClick` and `OnRightClick` implementation by @atterpac in [#3886](https://github.com/wailsapp/wails/pull/3886)
|
||||
- Fixed `AlwaysOnTop` not working on Mac by [leaanthony](https://github.com/leaanthony) in [#3841](https://github.com/wailsapp/wails/pull/3841)
|
||||
|
|
|
|||
|
|
@ -76,6 +76,7 @@ func generateAppImage(options *GenerateAppImageOptions) error {
|
|||
// Architecture-specific variables using a map
|
||||
archDetails := map[string]string{
|
||||
"arm64": "aarch64",
|
||||
"amd64": "x86_64",
|
||||
"x86_64": "x86_64",
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue