Subversion Repositories filter_foundry

Compare Revisions

No changes between revisions

Regard whitespace Rev 48 → Rev 50

/trunk/dist/examples/psychxor.afs
/trunk/lexer.l
126,6 → 126,12
return TOK_UNKNOWN;
}
[RGBACIUV] { /* undocumented(?) variables indicating channel range */
yylval = newnode(TOK_NUM);
yylval->v.value = 255;
return TOK_NUM;
}
 
[rgbaciuvxyzdmXYZDM] { /* single character variable */
yylval = newnode(TOK_SPECIALVAR);
yylval->v.specialvar = yytext[0];
/trunk/version.h
78,15 → 78,16
21-Mar-2006: 1.1f9,10 - improve file filtering on OS X (parse Windows-style extension filter)
22-Mar-2006: 1.2b1 - read parameters from Windows .8BF Filter Factory standalones, in Mac version
23-Mar-2006: 1.2b2 - new release
25-Mar-2006: 1.2b3 - include R,G,B,A,C,I,U,V undocumented(?) constants (per Harald Heim)
*/
 
#define plugInName "FilterFoundry"
#define VERSION_STR "1.2b2"
#define VERSION_NUM 1,0x20,beta,2
#define VERSION_STR "1.2b3"
#define VERSION_NUM 1,0x20,beta,3
#define VERS_RSRC VERSION_NUM,verAustralia,VERSION_STR,"Filter Foundry " VERSION_STR
 
/* formatted for Win32 VERSIONINFO resource */
#define VI_VERS_NUM 1,2,0,2
#define VI_VERS_NUM 1,2,0,3
#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 */
#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 */