annotate rc/win32/version.rc.in @ 185:62e336597bb7

anime list: add support for different score formats
author Paper <mrpapersonic@gmail.com>
date Tue, 05 Dec 2023 13:45:23 -0500
parents 2004b41d4a59
children 4d461ef7d424
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
103
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
1 #include "winver.h"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
2
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
3 #define VER_FILEVERSION @minori_VERSION_MAJOR@,@minori_VERSION_MINOR@,@minori_VERSION_PATCH@,0
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
4 #define VER_FILEVERSION_STR "@minori_VERSION_MAJOR@.@minori_VERSION_MINOR@.@minori_VERSION_PATCH@.0\0"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
5
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
6 #define VER_PRODUCTVERSION @minori_VERSION_MAJOR@,@minori_VERSION_MINOR@,@minori_VERSION_PATCH@,0
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
7 #define VER_PRODUCTVERSION_STR "@minori_VERSION_MAJOR@.@minori_VERSION_MINOR@.@minori_VERSION_PATCH@\0"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
8
108
2004b41d4a59 *: huge commit
Paper <mrpapersonic@gmail.com>
parents: 103
diff changeset
9 #define RC_INFO_STRING "@RC_INFO_STRING@\0"
103
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
10
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
11 VS_VERSION_INFO VERSIONINFO
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
12 FILEVERSION VER_FILEVERSION
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
13 PRODUCTVERSION VER_PRODUCTVERSION
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
14 FILEFLAGS 0x0L
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
15 FILEFLAGSMASK 0x3fL
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
16 FILEOS 0x00040004L
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
17 FILETYPE 0x1L
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
18 FILESUBTYPE 0x0L
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
19 BEGIN
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
20 BLOCK "StringFileInfo"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
21 BEGIN
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
22 BLOCK "000004b0"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
23 BEGIN
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
24 VALUE "CompanyName", "Paper"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
25 VALUE "FileDescription", RC_INFO_STRING
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
26 VALUE "FileVersion", VER_FILEVERSION_STR
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
27 VALUE "InternalName", "minori"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
28 VALUE "OriginalFilename", "minori.exe"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
29 VALUE "ProductName", "Minori"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
30 VALUE "ProductVersion", VER_PRODUCTVERSION_STR
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
31 END
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
32 END
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
33 BLOCK "VarFileInfo"
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
34 BEGIN
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
35 VALUE "Translation", 0x409, 1252
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
36 END
621084cc542c resources: add icons
Paper <mrpapersonic@gmail.com>
parents:
diff changeset
37 END