Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 441 → Rev 442

/trunk/CHANGELOG.md
1,6 → 1,6
# Changelog
 
## 1.7.0.13 [Work-In-Progress]
## 1.7.0.13 [04-Dec-2021]
- Internal change: PARM resource inside memory works now with C-Strings instead of Pascal-Strings.
- The released 32-bit version is now optimized by the compiler.
- Updated documentation.
/trunk/README.md
6,7 → 6,7
Initially written by Toby Thain ([Telegraphics](https://www.telegraphics.com.au/sw/)) in 2003 - 2009, the development has been continued by [Daniel Marschall](https://www.daniel-marschall.de/) ([ViaThinkSoft](https://www.viathinksoft.com/)) since 2018. Several advancements and improvements have been made, and a 64-bit Windows version was created.
 
 
### Windows version 1.7.0.12
### Windows version 1.7.0.13
 
Filter Foundry 1.7 comes with a 32-Bit Windows plugin (FilterFoundry.8bf) and a 64-Bit Windows plugin (FilterFoundry64.8bf) which can both be downloaded at [ViaThinkSoft](https://www.viathinksoft.com/download/249/FilterFoundry.zip).
 
/trunk/TODO.md
7,6 → 7,7
 
(None)
 
 
Known bugs
----------
 
/trunk/make_mingw.bat
9,7 → 9,7
 
rem 64 Bit
rem Please adjust this path!
set PATH=D:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;%PATHBAK%
set PATH=D:\mingw-w64\x86_64-8.1.0-win32-seh-rt_v6-rev0\mingw64\bin;%PATHBAK%
mingw32-make -f Makefile.win clean
mingw32-make -f Makefile.win
move FilterFoundry.8bf FilterFoundry64.tmp
16,7 → 16,7
 
rem 32 Bit
rem Please adjust this path!
set PATH=D:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin;%PATHBAK%
set PATH=D:\mingw-w64\i686-8.1.0-win32-dwarf-rt_v6-rev0\mingw32\bin;%PATHBAK%
mingw32-make -f Makefile.win clean
mingw32-make -f Makefile.win
move FilterFoundry.8bf FilterFoundry32.tmp
28,7 → 28,7
echo.
echo.
echo.
dir *.8bf
rem dir *.8bf
 
cd 3264_mixer
call foundry_3264_mixer.bat
/trunk/manifest32.xml
5,7 → 5,7
<assemblyIdentity
name="Telegraphics.FilterFoundry"
processorArchitecture="x86"
version="1.7.0.12"
version="1.7.0.13"
type="win32"/>
<description>Filter Foundry</description>
<dependency>
/trunk/manifest64.xml
5,7 → 5,7
<assemblyIdentity
name="Telegraphics.FilterFoundry"
processorArchitecture="amd64"
version="1.7.0.12"
version="1.7.0.13"
type="win32"/>
<description>Filter Foundry</description>
<dependency>
/trunk/scripting.h
24,14 → 24,14
/* Portions Copyright 1993 - 1999 Adobe Systems Incorporated */
/* All Rights Reserved. */
 
#include <stddef.h> // Standard definitions.
//#include <stddef.h> // Standard definitions.
//#include <Types.h> // Standard types.
 
#include "PITypes.h" // Photoshop types.
#include "PIGeneral.h" // Photoshop general routines.
#include "PIActions.h" // Photoshop scripting.
#include "PIAbout.h" // AboutRecord structure.
#include "PIFormat.h" // AboutRecord structure.
//#include "PITypes.h" // Photoshop types.
//#include "PIGeneral.h" // Photoshop general routines.
//#include "PIActions.h" // Photoshop scripting.
//#include "PIAbout.h" // AboutRecord structure.
//#include "PIFormat.h" // AboutRecord structure.
//#include "PIDefines.h" // Plug-in definitions.
//#include "FileUtilities.h" // Simple file utilities.
 
/trunk/telegraphics_common/tt/choosefile_win.c
34,7 → 34,6
 
Boolean fileHasExtension(StandardFileReply* sfr, const char* extension) {
char name[MAX_PATH + 1];
// TODO: strcasecmp not defined in OpenWatcom 2.0 ?
return sfr->nFileExtension && !strcasecmp(myp2cstrcpy(name, sfr->sfFile.name) + sfr->nFileExtension - 1, extension);
}
 
/trunk/version.h
35,8 → 35,8
 
#define plugInName "FilterFoundry"
 
#define VERSION_STR "1.7.0.12"
#define VERSION_NUM 1,7,0,12
#define VERSION_STR "1.7.0.13"
#define VERSION_NUM 1,7,0,13
 
#define VERS_RSRC VERSION_NUM,verUS,VERSION_STR,"Filter Foundry " VERSION_STR
 
45,7 → 45,7
#define PROJECT_URL "https://github.com/danielmarschall/filter_foundry"
 
/* formatted for Win32 VERSIONINFO resource */
#define VI_VERS_NUM 1,7,0,12
#define VI_VERS_NUM 1,7,0,13
#define VI_FLAGS 0 /* 0 for final, or any of VS_FF_DEBUG,VS_FF_PATCHED,VS_FF_PRERELEASE,VS_FF_PRIVATEBUILD,VS_FF_SPECIALBUILD */
#define VI_COMMENTS "Download the latest version here: " PROJECT_URL "\0" /* null terminated Comments field */
#define VI_COMPANY_NAME "ViaThinkSoft, Telegraphics Pty Ltd\0"