Subversion Repositories filter_foundry

Rev

Rev 228 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
154 dmarschall 1
/*
2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
192 daniel-mar 3
    Copyright (C) 2003-2009 Toby Thain, toby@telegraphics.com.au
206 daniel-mar 4
    Copyright (C) 2018-2021 Daniel Marschall, ViaThinkSoft
154 dmarschall 5
 
6
    This program is free software; you can redistribute it and/or modify
7
    it under the terms of the GNU General Public License as published by
8
    the Free Software Foundation; either version 2 of the License, or
9
    (at your option) any later version.
10
 
11
    This program is distributed in the hope that it will be useful,
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
    GNU General Public License for more details.
15
 
16
    You should have received a copy of the GNU General Public License
17
    along with this program; if not, write to the Free Software
18
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
*/
20
 
21
/* Version info resource
228 daniel-mar 22
   see https://docs.microsoft.com/en-us/windows/win32/menurc/versioninfo-resource */
154 dmarschall 23
 
24
#include "winver.h"
25
 
228 daniel-mar 26
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
317 daniel-mar 27
VS_VERSION_INFO  VERSIONINFO
28
 FILEVERSION     VI_VERS_NUM
29
 PRODUCTVERSION  VI_VERS_NUM
30
 FILEFLAGSMASK   VS_FFI_FILEFLAGSMASK /*0x3fL*/
31
 FILEFLAGS       VI_FLAGS
32
 FILEOS          VOS__WINDOWS32
33
 FILETYPE        VFT_DLL
34
 FILESUBTYPE     VFT2_UNKNOWN
154 dmarschall 35
BEGIN
36
    BLOCK "StringFileInfo"
37
    BEGIN
228 daniel-mar 38
        BLOCK "040904B0"
154 dmarschall 39
        BEGIN
317 daniel-mar 40
            VALUE "Comments",           VI_COMMENTS
41
            VALUE "CompanyName",        VI_COMPANY_NAME
42
            VALUE "FileDescription",    "Filter Foundry plugin for Photoshop(R)\0"
43
            VALUE "FileVersion",        VERSION_STR "\0"
44
          /*VALUE "InternalName",       "FilterFoundry\0"*/
45
            VALUE "LegalCopyright",     "Copyright (C) 2003-2009 Toby Thain, 2018-" RELEASE_YEAR " Daniel Marschall\0"
46
            VALUE "License",            "This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\0"
47
          /*VALUE "LegalTrademarks",    "\0"*/
228 daniel-mar 48
#ifdef _WIN64
317 daniel-mar 49
            VALUE "OriginalFilename",   "FilterFoundry64.8bf\0"
228 daniel-mar 50
#else
317 daniel-mar 51
            VALUE "OriginalFilename",   "FilterFoundry.8bf\0"
228 daniel-mar 52
#endif
317 daniel-mar 53
          /*VALUE "PrivateBuild",       "\0"*/
54
            VALUE "ProductName",        "Filter Foundry\0"
55
            VALUE "ProductVersion",     VERSION_STR "\0"
56
          /*VALUE "SpecialBuild",       "\0"*/
154 dmarschall 57
        END
58
    END
317 daniel-mar 59
    BLOCK "VarFileInfo"   /* see https://docs.microsoft.com/en-us/windows/win32/menurc/varfileinfo-block */
60
    BEGIN                 /* Attention: The translation code must be equal to the "StringFileInfo" block's translation! */
61
        VALUE "Translation", 0x0409, 0x04B0  /* US English, Unicode */
154 dmarschall 62
    END
63
END