Mercurial > minori
comparison rc/win32/version.rc.in @ 103:621084cc542c
resources: add icons
also remove ye olde qdarkstyle, as it's not even used anymore
there's more configuring to OS X bundles now as well, along with
more version info on Windows
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 03 Nov 2023 22:52:41 -0400 |
parents | |
children | 2004b41d4a59 |
comparison
equal
deleted
inserted
replaced
102:b315f3759c56 | 103:621084cc542c |
---|---|
1 #include "winver.h" | |
2 | |
3 #define VER_FILEVERSION @minori_VERSION_MAJOR@,@minori_VERSION_MINOR@,@minori_VERSION_PATCH@,0 | |
4 #define VER_FILEVERSION_STR "@minori_VERSION_MAJOR@.@minori_VERSION_MINOR@.@minori_VERSION_PATCH@.0\0" | |
5 | |
6 #define VER_PRODUCTVERSION @minori_VERSION_MAJOR@,@minori_VERSION_MINOR@,@minori_VERSION_PATCH@,0 | |
7 #define VER_PRODUCTVERSION_STR "@minori_VERSION_MAJOR@.@minori_VERSION_MINOR@.@minori_VERSION_PATCH@\0" | |
8 | |
9 #define RC_INFO_STRING "@RC_INFO_STRING@" | |
10 | |
11 VS_VERSION_INFO VERSIONINFO | |
12 FILEVERSION VER_FILEVERSION | |
13 PRODUCTVERSION VER_PRODUCTVERSION | |
14 FILEFLAGS 0x0L | |
15 FILEFLAGSMASK 0x3fL | |
16 FILEOS 0x00040004L | |
17 FILETYPE 0x1L | |
18 FILESUBTYPE 0x0L | |
19 BEGIN | |
20 BLOCK "StringFileInfo" | |
21 BEGIN | |
22 BLOCK "000004b0" | |
23 BEGIN | |
24 VALUE "CompanyName", "Paper" | |
25 VALUE "FileDescription", RC_INFO_STRING | |
26 VALUE "FileVersion", VER_FILEVERSION_STR | |
27 VALUE "InternalName", "minori" | |
28 VALUE "OriginalFilename", "minori.exe" | |
29 VALUE "ProductName", "Minori" | |
30 VALUE "ProductVersion", VER_PRODUCTVERSION_STR | |
31 END | |
32 END | |
33 BLOCK "VarFileInfo" | |
34 BEGIN | |
35 VALUE "Translation", 0x409, 1252 | |
36 END | |
37 END |