source: smplayer/trunk/src/smplayer.rc@ 188

Last change on this file since 188 was 188, checked in by Silvan Scherrer, 8 years ago

SMPlayer: update trunk to version 17.1.0

File size: 1.2 KB
Line 
1#include <winver.h>
2
3#define SMPLAYER_FILEVERSION 17,1,0,0
4#define SMPLAYER_PRODVERSION "17.1.0.0"
5
6VS_VERSION_INFO VERSIONINFO
7FILEVERSION SMPLAYER_FILEVERSION
8PRODUCTVERSION SMPLAYER_FILEVERSION
9FILEOS VOS_NT_WINDOWS32
10FILETYPE VFT_APP
11{
12 BLOCK "StringFileInfo"
13 {
14 BLOCK "000004b0"
15 {
16 VALUE "CompanyName", "Ricardo Villalba\0"
17 #ifdef PORTABLE_APP
18 VALUE "FileDescription", "SMPlayer (Portable Edition)\0"
19 #else
20 VALUE "FileDescription", "SMPlayer\0"
21 #endif
22 VALUE "FileVersion", SMPLAYER_PRODVERSION "\0"
23 VALUE "InternalName", "smplayer\0"
24 VALUE "LegalCopyright", "Copyright (c) Ricardo Villalba\0"
25 VALUE "OriginalFilename", "smplayer.exe\0"
26 #if defined(_WIN64)
27 VALUE "ProductName", "SMPlayer for Windows (64-bit)\0"
28 #elif defined(_WIN32) && !defined(_WIN64)
29 VALUE "ProductName", "SMPlayer for Windows (32-bit)\0"
30 #endif
31 VALUE "ProductVersion", SMPLAYER_PRODVERSION "\0"
32 }
33 }
34 BLOCK "VarFileInfo"
35 {
36 VALUE "Translation", 0, 0x04b0
37 }
38}
39
40IDI_ICON1 ICON DISCARDABLE "smplayer.ico"
41IDI_ICON2 ICON DISCARDABLE "smplayer_associations.ico"
Note: See TracBrowser for help on using the repository browser.