mirror of
https://github.com/videolan/vlc.git
synced 2024-11-23 18:03:48 +08:00
e61c12c60b
The VERSIONINFO structures supplied in the Windows resource files have a mismatch between the codepage specified in the translation table, and the codepage specified in the string tables. This patch fixes both of the rc.in files that are broken. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
28 lines
857 B
Plaintext
28 lines
857 B
Plaintext
#define VERSION_NUMBER @VERSION_MAJOR@,@VERSION_MINOR@,@VERSION_REVISION@,@VERSION_EXTRA@
|
|
#define VERSION_NUMBER_STR "@VERSION_MAJOR@,@VERSION_MINOR@,@VERSION_REVISION@,@VERSION_EXTRA@"
|
|
|
|
1 VERSIONINFO
|
|
FILETYPE 2
|
|
FILEOS 4
|
|
PRODUCTVERSION VERSION_NUMBER
|
|
FILEVERSION VERSION_NUMBER
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4"
|
|
BEGIN
|
|
VALUE "CompanyName", "VideoLAN"
|
|
VALUE "ProductName", "VLC media player"
|
|
VALUE "ProductVersion", VERSION_NUMBER_STR
|
|
VALUE "FileVersion", "@VERSION@"
|
|
VALUE "FileDescription", "LibVLC plugin"
|
|
VALUE "LegalCopyright", "Copyright \251 @COPYRIGHT_YEARS@ VideoLAN and VLC Authors"
|
|
VALUE "LegalTrademarks", "VLC media player, VideoLAN and x264 are registered trademarks from VideoLAN"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1252
|
|
END
|
|
END
|