diff options
author | Ezekiel Smith <ezekielsmith@protonmail.com> | 2022-05-29 22:37:23 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-29 22:37:23 +1000 |
commit | 36d78577e28eaad8b494bebb1efb3227c2657860 (patch) | |
tree | 73c77dec094ce0cb03f361bc82d1b4b3e16e5e73 /program_info/polymc.rc.in | |
parent | 4a0b0d873513e3a32d9d37607a56ee1fb95eb0ab (diff) | |
parent | b07c5982e115befaec91a3919dafc9e6ec467f24 (diff) | |
download | PrismLauncher-36d78577e28eaad8b494bebb1efb3227c2657860.tar.gz PrismLauncher-36d78577e28eaad8b494bebb1efb3227c2657860.tar.bz2 PrismLauncher-36d78577e28eaad8b494bebb1efb3227c2657860.zip |
Merge pull request #669 from Scrumplex/fix-binary-version-windows
Set version for Windows binaries
Diffstat (limited to 'program_info/polymc.rc.in')
-rw-r--r-- | program_info/polymc.rc.in | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/program_info/polymc.rc.in b/program_info/polymc.rc.in new file mode 100644 index 00000000..0ea9b73a --- /dev/null +++ b/program_info/polymc.rc.in @@ -0,0 +1,29 @@ +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#include <windows.h> + +IDI_ICON1 ICON DISCARDABLE "polymc.ico" +1 RT_MANIFEST "polymc.manifest" + +VS_VERSION_INFO VERSIONINFO +FILEVERSION @Launcher_RELEASE_VERSION_NAME4_COMMA@ +FILEOS VOS_NT_WINDOWS32 +FILETYPE VFT_APP +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "000004b0" + BEGIN + VALUE "CompanyName", "MultiMC & PolyMC Contributors" + VALUE "FileDescription", "PolyMC" + VALUE "FileVersion", "@Launcher_RELEASE_VERSION_NAME4@" + VALUE "ProductName", "PolyMC" + VALUE "ProductVersion", "@Launcher_RELEASE_VERSION_NAME4@" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0000, 0x04b0 // Unicode + END +END |