/* This file is part of TIFFlib Format, a File Format plugin for Adobe Photoshop Copyright (C) 2005-7 Toby Thain, toby@telegraphics.com.au 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. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* 22-Aug-2005: 0.1b1 - started 08-Aug-2006: - start write support 10-Aug-2006: 0.2b1 - initial write support, released to Tim Harville for testing 0.2b2,3 - add dialog for choosing save compression type; add JPEG; use original compression type when resaving 11-Aug-2006: 0.3b1 - fix RGB, CMYK modes!! 15-Aug-2006: 0.4b1 - adapt compression menu to image mode; disable LZW for now 16-Aug-2006: 0.4b2 - first Win32 build; update libtiff to 3.8.2 (with LZW!) 19-Aug-2006: 0.4b3 - fix options dialog (correctly remembers compression type) 07-Nov-2006: 0.4b4 - fix loading problem on WinXP 18-Nov-2006: 0.4b5 - fix bad Windows build (!!) 17-Dec-2006: 0.4b6 - fix another bad Windows build (!!) 28-Jan-2007: 0.5b1 - fixed builds, libtiff could be built BigEndian for Intel (d'oh) 29-Jan-2007: 0.5b2 - further work on build process 24-Oct-2007: 0.5b3 - don't try to make a Universal build; separate osxppc and osxx86 phony targets */ #define VERSION_STR "0.5b3" #define VERSION_NUM 0,0x50,beta,3 #define VERS_RSRC VERSION_NUM,verAustralia,VERSION_STR,"TIFFlib " VERSION_STR #define COPYRIGHT "Copyright (C) 2005-7 Toby Thain, toby@telegraphics.com.au - www.telegraphics.com.au/sw" /* formatted for Win32 VERSIONINFO resource */ // development = 0x20, alpha = 0x40, beta = 0x60, final = 0x80 #define VI_VERS_NUM 0,5,0x60,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 */ /* wildcard signature in resources */ #define ANY ' '