Skip to content

Commit

Permalink
Use app name instead of desc in Win EXE desc field
Browse files Browse the repository at this point in the history
This appears to be the convention across programs. Windows also often
uses the content of the description field as the program's name, e.g.,
when hovering a file over the EXE or shortcut.
  • Loading branch information
LoadingByte committed Jan 5, 2023
1 parent 48847f3 commit f99b590
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packaging/package.bat
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ echo Collecting minimized JRE...
%jdk_bin%\jlink @settings\jlink --output work\runtime\

echo Collecting installation image...
%jdk_bin%\jpackage @settings\jpackage --name cinecred --icon images\icon.ico --input app\ --runtime-image work\runtime\ --dest work\image\
%jdk_bin%\jpackage @settings\jpackage @settings\jpackage-windows --name cinecred --icon images\icon.ico --input app\ --runtime-image work\runtime\ --dest work\image\
del work\image\cinecred\cinecred.ico
copy resources\universal\LEGAL work\image\cinecred\

Expand Down
1 change: 0 additions & 1 deletion packaging/settings/jpackage
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
--main-class @MAIN_CLASS@
--java-options "@JAVA_OPTIONS@"
--app-version @VERSION@
--description "@DESCRIPTION@"
--vendor "@VENDOR@"
--copyright "Copyright (C) 2023 @VENDOR@, licensed under the GPLv3"
1 change: 1 addition & 0 deletions packaging/settings/jpackage-windows
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--description Cinecred

0 comments on commit f99b590

Please sign in to comment.