Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add arm64 gogdl, nile, and legendary #4292

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ mac:
extendInfo:
com.apple.security.cs.allow-jit: true
files:
- build/bin/*/darwin/*
- build/bin/${arch}/darwin/*
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You know, I did wonder why they were both included in the arm macOS build when I was looking for stuff for #4164, but then saw some fallback code and was scared to break something were it to be removed.

- build/bin/x64/win32/GalaxyCommunication.exe

dmg:
Expand All @@ -67,7 +67,7 @@ linux:
Comment[de]: Ein OSS-Spielelauncher für GOG, Epic Games und Amazon Games
Comment[pl]: Otwartoźródłowy launcher dla GOG, Epic Games i Amazon Games
files:
- build/bin/*/linux/*
- build/bin/${arch}/linux/*
- build/bin/x64/win32/GalaxyCommunication.exe

rpm:
Expand Down
3 changes: 3 additions & 0 deletions meta/downloadHelperBinaries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ async function downloadLegendary() {
win32: 'legendary_windows_x86_64.exe'
},
arm64: {
linux: 'legendary_linux_arm64',
darwin: 'legendary_macOS_arm64'
}
}
Expand All @@ -123,6 +124,7 @@ async function downloadGogdl() {
win32: 'gogdl_windows_x86_64.exe'
},
arm64: {
linux: 'gogdl_linux_arm64',
darwin: 'gogdl_macOS_arm64'
}
}
Expand All @@ -137,6 +139,7 @@ async function downloadNile() {
win32: 'nile_windows_x86_64.exe'
},
arm64: {
linux: 'nile_linux_arm64',
darwin: 'nile_macOS_arm64'
}
})
Expand Down
Loading