Skip to content

Commit

Permalink
Fix AMD64 appimage generation (#3898)
Browse files Browse the repository at this point in the history
changelog

Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
  • Loading branch information
atterpac and leaanthony authored Nov 22, 2024
1 parent c54fbdb commit 76e7654
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions mkdocs-website/docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions v3/internal/commands/appimage.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}

Expand Down

0 comments on commit 76e7654

Please sign in to comment.