From 76e76542426bed1e0667e07c802511e4697cf555 Mon Sep 17 00:00:00 2001 From: Atterpac <89053530+atterpac@users.noreply.github.com> Date: Fri, 22 Nov 2024 02:45:27 -0700 Subject: [PATCH] Fix AMD64 appimage generation (#3898) changelog Co-authored-by: Lea Anthony --- mkdocs-website/docs/en/changelog.md | 1 + v3/internal/commands/appimage.go | 1 + 2 files changed, 2 insertions(+) diff --git a/mkdocs-website/docs/en/changelog.md b/mkdocs-website/docs/en/changelog.md index c91b1d0f6..b73e49d87 100644 --- a/mkdocs-website/docs/en/changelog.md +++ b/mkdocs-website/docs/en/changelog.md @@ -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) diff --git a/v3/internal/commands/appimage.go b/v3/internal/commands/appimage.go index a018fb745..b2a148651 100644 --- a/v3/internal/commands/appimage.go +++ b/v3/internal/commands/appimage.go @@ -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", }