diff --git a/launcher/icon.ico b/launcher/icon.ico new file mode 100644 index 0000000..54fd966 Binary files /dev/null and b/launcher/icon.ico differ diff --git a/launcher/icon.png b/launcher/icon.png new file mode 100644 index 0000000..b8688f1 Binary files /dev/null and b/launcher/icon.png differ diff --git a/launcher/package_linux.sh b/launcher/package_linux.sh index e253786..35d1cc7 100755 --- a/launcher/package_linux.sh +++ b/launcher/package_linux.sh @@ -19,6 +19,7 @@ jpackage \ --name "Ace of Shades Launcher" \ --app-version "1.0.0" \ --description "Launcher app for Ace of Shades, a voxel-based first-person shooter." \ + --icon ../icon.ico \ --linux-shortcut \ --linux-deb-maintainer "andrewlalisofficial@gmail.com" \ --linux-menu-group "Game" \ diff --git a/launcher/package_windows.ps1 b/launcher/package_windows.ps1 index 26f8714..958f9d8 100644 --- a/launcher/package_windows.ps1 +++ b/launcher/package_windows.ps1 @@ -24,10 +24,11 @@ $modulePath = $modules -join ';' Write-Output "Running jpackage..." jpackage ` - --type exe ` + --type msi ` --name "Ace-of-Shades" ` --app-version "1.0.0" ` --description "Top-down 2D shooter game inspired by Ace of Spades." ` + --icon ..\icon.ico ` --win-shortcut ` --win-dir-chooser ` --win-per-user-install `