فهرست منبع

Fix macOS executable name.

Daniel Scalzi 3 سال پیش
والد
کامیت
ccf099a5cf
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      README.md
  2. 1 1
      app/assets/js/scripts/uicore.js

+ 1 - 1
README.md

@@ -55,7 +55,7 @@ If you download from the [Releases](https://github.com/dscalzi/HeliosLauncher/re
 | Platform | File |
 | -------- | ---- |
 | Windows x64 | `Helios-Launcher-setup-VERSION.exe` |
-| macOS x64 | `Helios-Launcher-setup-VERSION.dmg` |
+| macOS x64 | `Helios-Launcher-setup-VERSION-x64.dmg` |
 | macOS arm64 | `Helios-Launcher-setup-VERSION-arm64.dmg` |
 | Linux x64 | `Helios-Launcher-setup-VERSION.AppImage` |
 

+ 1 - 1
app/assets/js/scripts/uicore.js

@@ -50,7 +50,7 @@ if(!isDev){
                 loggerAutoUpdaterSuccess.log('New update available', info.version)
                 
                 if(process.platform === 'darwin'){
-                    info.darwindownload = `https://github.com/dscalzi/HeliosLauncher/releases/download/v${info.version}/helioslauncher-setup-${info.version}${process.arch === 'arm64' ? '-arm64' : ''}.dmg`
+                    info.darwindownload = `https://github.com/dscalzi/HeliosLauncher/releases/download/v${info.version}/Helios-Launcher-setup-${info.version}${process.arch === 'arm64' ? '-arm64' : '-x64'}.dmg`
                     showUpdateUI(info)
                 }