mirror of https://github.com/mpv-player/mpv
win32: mpv.rc: re-add version info
For some reason, the lack of version info was preventing mpv from appearing in the Default Programs dialog. Re-add it, but don't set the string version numbers from version.h, because that's what was causing trouble when the version info was removed. Like the binary version numbers, these are now hardcoded to 2.0.0.0, which probably doesn't matter. The new version info block is also slightly different to the old one. It fills out all the binary VERSIONINFO fields and makes better use of macros. It also removes the \000 line terminators from the string version info, since as far as I can tell, this was just cargo-culting for an old broken version of the Microsoft resource compiler, and binutils' windres terminates the strings properly without them.
This commit is contained in:
parent
43e811cb4b
commit
bf2e2bf3e8
32
osdep/mpv.rc
32
osdep/mpv.rc
|
@ -19,13 +19,31 @@
|
||||||
|
|
||||||
#include <winver.h>
|
#include <winver.h>
|
||||||
|
|
||||||
1 VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 2,0,0,0
|
FILEVERSION 2, 0, 0, 0
|
||||||
PRODUCTVERSION 2,0,0,0
|
PRODUCTVERSION 2, 0, 0, 0
|
||||||
FILEOS VOS__WINDOWS32
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
||||||
FILETYPE VFT_APP
|
FILEFLAGS 0
|
||||||
{
|
FILEOS VOS__WINDOWS32
|
||||||
}
|
FILETYPE VFT_APP
|
||||||
|
FILESUBTYPE 0
|
||||||
|
{
|
||||||
|
BLOCK "StringFileInfo" {
|
||||||
|
BLOCK "000004b0" {
|
||||||
|
VALUE "Comments", "mpv is distributed under the terms of the GNU General Public License Version 2 or later."
|
||||||
|
VALUE "CompanyName", "mpv"
|
||||||
|
VALUE "FileDescription", "mpv"
|
||||||
|
VALUE "FileVersion", "2.0.0.0"
|
||||||
|
VALUE "LegalCopyright", "(C) 2000-2016 mpv/mplayer2/MPlayer"
|
||||||
|
VALUE "OriginalFilename", "mpv.exe"
|
||||||
|
VALUE "ProductName", "mpv"
|
||||||
|
VALUE "ProductVersion", "2.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
BLOCK "VarFileInfo" {
|
||||||
|
VALUE "Translation", 0, 1200
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
IDI_ICON1 ICON DISCARDABLE "etc/mpv-icon.ico"
|
IDI_ICON1 ICON DISCARDABLE "etc/mpv-icon.ico"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue