Subversion Repositories filter_foundry

Rev

Rev 101 | Rev 106 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 101 Rev 102
Line 1... Line 1...
1
/*
1
/*
2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
3
    Copyright (C) 2003-7 Toby Thain, toby@telegraphics.com.au
3
    Copyright (C) 2003-9 Toby Thain, toby@telegraphics.com.au
4
 
4
 
5
    This program is free software; you can redistribute it and/or modify
5
    This program is free software; you can redistribute it and/or modify
6
    it under the terms of the GNU General Public License as published by  
6
    it under the terms of the GNU General Public License as published by  
7
    the Free Software Foundation; either version 2 of the License, or
7
    the Free Software Foundation; either version 2 of the License, or
8
    (at your option) any later version.
8
    (at your option) any later version.
Line 93... Line 93...
93
             1.4b8,9,10 - simple parameter obfuscation in standalone plugins (wishlist #7)
93
             1.4b8,9,10 - simple parameter obfuscation in standalone plugins (wishlist #7)
94
19-Feb-2007: 1.5b1,2 - support remaining 8-bit image modes (wishlist proposal)
94
19-Feb-2007: 1.5b1,2 - support remaining 8-bit image modes (wishlist proposal)
95
13-Jul-2007: 1.5b3 - add instrumentation to try to find CS3/Intel Mac 'Make standalone' problem
95
13-Jul-2007: 1.5b3 - add instrumentation to try to find CS3/Intel Mac 'Make standalone' problem
96
02-Aug-2007: 1.5b4 - fix debug message spotted by Daniel Denk
96
02-Aug-2007: 1.5b4 - fix debug message spotted by Daniel Denk
97
26-Aug-2007: 1.5b6 - associativity of ?: operator (Harald Heim)
97
26-Aug-2007: 1.5b6 - associativity of ?: operator (Harald Heim)
-
 
98
07-Jun-2009: 1.6b1 - clean up for 64-bit Windows build
98
*/
99
*/
99
 
100
 
100
#define plugInName "FilterFoundry"
101
#define plugInName "FilterFoundry"
101
#define VERSION_STR "1.5b6"
102
#define VERSION_STR "1.6b1"
102
#define VERSION_NUM 1,0x50,beta,6
103
#define VERSION_NUM 1,0x60,beta,1
103
#define VERS_RSRC VERSION_NUM,verAustralia,VERSION_STR,"Filter Foundry " VERSION_STR
104
#define VERS_RSRC VERSION_NUM,verAustralia,VERSION_STR,"Filter Foundry " VERSION_STR
104
 
105
 
105
/* formatted for Win32 VERSIONINFO resource */
106
/* formatted for Win32 VERSIONINFO resource */
106
#define VI_VERS_NUM 1,5,0,6
107
#define VI_VERS_NUM 1,6,0,1
107
#define VI_FLAGS        VS_FF_PRERELEASE /* 0 for final, or any of VS_FF_DEBUG,VS_FF_PATCHED,VS_FF_PRERELEASE,VS_FF_PRIVATEBUILD,VS_FF_SPECIALBUILD */
108
#define VI_FLAGS        VS_FF_PRERELEASE /* 0 for final, or any of VS_FF_DEBUG,VS_FF_PATCHED,VS_FF_PRERELEASE,VS_FF_PRIVATEBUILD,VS_FF_SPECIALBUILD */
108
#define VI_COMMENTS     "Beta.\r\n\r\nPlease contact support@telegraphics.com.au with any bug reports, suggestions or comments.\0"      /* null terminated Comments field */
109
#define VI_COMMENTS     "Beta.\r\n\r\nPlease contact support@telegraphics.com.au with any bug reports, suggestions or comments.\0"      /* null terminated Comments field */
109
 
110
 
110
/* wildcard signature in resources */
111
/* wildcard signature in resources */
111
#define ANY '    '
112
#define ANY '    '