Subversion Repositories filter_foundry

Rev

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

Rev 102 Rev 106
Line 94... Line 94...
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
07-Jun-2009: 1.6b1 - clean up for 64-bit Windows build
-
 
99
19-Dec-2018: 1.6b2 - Fixed crash at filter startup when computer had too much RAM.
-
 
100
                     Fixed crash where built obfuscated filters could not be opened.
-
 
101
                     Added function rst(i) which is an undocumented function in Filter Factory for setting a random seed.
-
 
102
                     Size PARM_SIZE in PARM ressource corrected.
-
 
103
                     Extended NMake file to support flex and bison compilation.
-
 
104
                     Dialogs (build dialog, open and save dialogs) are now modal, i.e. the main window is locked when they are open. (*)
-
 
105
                     The preview dialog has now a hand cursor. (Open hand on hover. Grabbing hand on panning) (*)
-
 
106
                     Dialog boxes now have an [X] button to close the window.
-
 
107
                     (Changes by Daniel Marschall)
-
 
108
 
-
 
109
(*) This bug/solution was tested on Windows but needs to be verified and/or implemented on Mac.
-
 
110
 
99
*/
111
*/
100
 
112
 
101
#define plugInName "FilterFoundry"
113
#define plugInName "FilterFoundry"
102
#define VERSION_STR "1.6b1"
114
#define VERSION_STR "1.6b2"
103
#define VERSION_NUM 1,0x60,beta,1
115
#define VERSION_NUM 1,0x60,beta,2
104
#define VERS_RSRC VERSION_NUM,verAustralia,VERSION_STR,"Filter Foundry " VERSION_STR
116
#define VERS_RSRC VERSION_NUM,verAustralia,VERSION_STR,"Filter Foundry " VERSION_STR
105
 
117
 
106
/* formatted for Win32 VERSIONINFO resource */
118
/* formatted for Win32 VERSIONINFO resource */
107
#define VI_VERS_NUM 1,6,0,1
119
#define VI_VERS_NUM 1,6,0,2
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 */
120
#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 */
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 */
121
#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 */
110
 
122
 
111
/* wildcard signature in resources */
123
/* wildcard signature in resources */
112
#define ANY '    '
124
#define ANY '    '