| 1 | #include <winver.h>
|
|---|
| 2 |
|
|---|
| 3 | #if HAVE_SVN_REVISION_H
|
|---|
| 4 | #include "svn_revision.h"
|
|---|
| 5 | #endif
|
|---|
| 6 |
|
|---|
| 7 | #define SMPLAYER_FILEVERSION 0,8,6,0
|
|---|
| 8 | #define SMPLAYER_PRODVERSION "0.8.6.0"
|
|---|
| 9 |
|
|---|
| 10 | VS_VERSION_INFO VERSIONINFO
|
|---|
| 11 | FILEVERSION SMPLAYER_FILEVERSION
|
|---|
| 12 | PRODUCTVERSION SMPLAYER_FILEVERSION
|
|---|
| 13 | FILEOS VOS_NT_WINDOWS32
|
|---|
| 14 | FILETYPE VFT_APP
|
|---|
| 15 | {
|
|---|
| 16 | BLOCK "StringFileInfo"
|
|---|
| 17 | {
|
|---|
| 18 | BLOCK "000004b0"
|
|---|
| 19 | {
|
|---|
| 20 | VALUE "CompanyName", "Ricardo Villalba\0"
|
|---|
| 21 | #ifdef PORTABLE_APP
|
|---|
| 22 | VALUE "FileDescription", "SMPlayer (Portable)\0"
|
|---|
| 23 | #else
|
|---|
| 24 | VALUE "FileDescription", "SMPlayer\0"
|
|---|
| 25 | #endif
|
|---|
| 26 | VALUE "FileVersion", SMPLAYER_PRODVERSION "\0"
|
|---|
| 27 | VALUE "InternalName", "smplayer\0"
|
|---|
| 28 | VALUE "LegalCopyright", "Copyright (c) Ricardo Villalba\0"
|
|---|
| 29 | VALUE "OriginalFilename", "smplayer.exe\0"
|
|---|
| 30 | #if defined(_WIN64)
|
|---|
| 31 | VALUE "ProductName", "SMPlayer for Windows (64-bit)\0"
|
|---|
| 32 | #elif defined(_WIN32) && !defined(_WIN64)
|
|---|
| 33 | VALUE "ProductName", "SMPlayer for Windows (32-bit)\0"
|
|---|
| 34 | #endif
|
|---|
| 35 | #if HAVE_SVN_REVISION_H
|
|---|
| 36 | VALUE "ProductVersion", SMPLAYER_PRODVERSION "+SVN-r" SVN_REVISION "\0"
|
|---|
| 37 | #else
|
|---|
| 38 | VALUE "ProductVersion", SMPLAYER_PRODVERSION "\0"
|
|---|
| 39 | #endif
|
|---|
| 40 | }
|
|---|
| 41 | }
|
|---|
| 42 | BLOCK "VarFileInfo"
|
|---|
| 43 | {
|
|---|
| 44 | VALUE "Translation", 0, 0x04b0
|
|---|
| 45 | }
|
|---|
| 46 | }
|
|---|
| 47 |
|
|---|
| 48 | IDI_ICON1 ICON DISCARDABLE "smplayer.ico"
|
|---|
| 49 | IDI_ICON2 ICON DISCARDABLE "smplayer_associations.ico"
|
|---|