mirror of https://github.com/xemu-project/xemu.git
ui: Fix update org, add Windows arch tag to update
This commit is contained in:
parent
b6d29d4876
commit
4ad2374e32
|
@ -27,9 +27,15 @@
|
|||
|
||||
#if defined(_WIN32)
|
||||
const char *version_host = "raw.githubusercontent.com";
|
||||
const char *version_uri = "/mborgerson/xemu/ppa-snapshot/XEMU_VERSION";
|
||||
const char *version_uri = "/xemu-project/xemu/ppa-snapshot/XEMU_VERSION";
|
||||
const char *download_host = "github.com";
|
||||
const char *download_uri = "/mborgerson/xemu/releases/latest/download/xemu-win-release.zip";
|
||||
#if defined(__x86_64__)
|
||||
const char *download_uri = "/xemu-project/xemu/releases/latest/download/xemu-win-x86_64-release.zip";
|
||||
#elif defined(__aarch64__)
|
||||
const char *download_uri = "/xemu-project/xemu/releases/latest/download/xemu-win-aarch64-release.zip";
|
||||
#else
|
||||
#error Unknown update path
|
||||
#endif
|
||||
#else
|
||||
FIXME
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue