1526af4068
And so remove the current year to ease maintenance and since it is not strictly necessary. Also remove individual copyright holders (where appropriate) and replace the name with "The Geany contributors". The detailed authorship information is still available in the GIT history. Also remove copyright notice and author names from READMEs.
39 lines
1012 B
Plaintext
39 lines
1012 B
Plaintext
|
|
#include <windows.h> // include for version info constants
|
|
|
|
#define VER_FILEVERSION 1,35,0,0
|
|
#define VER_FILEVERSION_STR "1.35"
|
|
#define APP_MANIFEST 1
|
|
|
|
A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "icons/geany.ico"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION VER_FILEVERSION
|
|
PRODUCTVERSION VER_FILEVERSION
|
|
FILETYPE VFT_APP
|
|
{
|
|
BLOCK "StringFileInfo"
|
|
{
|
|
// U.S. English, Multilingual
|
|
// (see http://msdn.microsoft.com/en-us/library/aa381049%28VS.85%29.aspx)
|
|
BLOCK "040904E4"
|
|
{
|
|
VALUE "CompanyName", ""
|
|
VALUE "FileVersion", VER_FILEVERSION_STR
|
|
VALUE "FileDescription", "Geany"
|
|
VALUE "InternalName", "Geany"
|
|
VALUE "LegalCopyright", "Copyright 2005 The Geany contributors"
|
|
VALUE "LegalTrademarks", ""
|
|
VALUE "OriginalFilename", "Geany.exe"
|
|
VALUE "ProductName", "Geany"
|
|
VALUE "ProductVersion", VER_FILEVERSION_STR
|
|
}
|
|
}
|
|
BLOCK "VarFileInfo"
|
|
{
|
|
VALUE "Translation", 0x409, 0x04E4
|
|
}
|
|
}
|
|
|
|
APP_MANIFEST RT_MANIFEST "geany.exe.manifest"
|