Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 523 → Rev 524

/trunk/CHANGELOG.md
1,5 → 1,8
# Changelog
 
## 1.7.0.18 [15-May-2022]
- Fixed issue with 32-bit resource strings (English and German language was broken) introduced in version 1.7.0.17.
 
## 1.7.0.17 [14-May-2022]
- Fixed theoretical bug that can crash a Photoshop application if PLUGIN.DLL exists but is not loaded.
- Added translation for German systems (*)
/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.17
### Windows version 1.7.0.18
 
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/manifest32.xml
5,7 → 5,7
<assemblyIdentity
name="Telegraphics.FilterFoundry"
processorArchitecture="x86"
version="1.7.0.17"
version="1.7.0.18"
type="win32"/>
<description>Filter Foundry</description>
<dependency>
/trunk/manifest64.xml
5,7 → 5,7
<assemblyIdentity
name="Telegraphics.FilterFoundry"
processorArchitecture="amd64"
version="1.7.0.17"
version="1.7.0.18"
type="win32"/>
<description>Filter Foundry</description>
<dependency>
/trunk/version.h
35,8 → 35,8
 
#define plugInName "FilterFoundry"
 
#define VERSION_STR "1.7.0.17"
#define VERSION_NUM 1,7,0,17
#define VERSION_STR "1.7.0.18"
#define VERSION_NUM 1,7,0,18
 
#define VERS_RSRC VERSION_NUM,verUS,VERSION_STR,"Filter Foundry " VERSION_STR
 
45,10 → 45,10
#define PROJECT_URL "https://github.com/danielmarschall/filter_foundry"
 
/* For the 'cmpt' PIPL attribute */
#define MainComponentVersion 0x01070011L // 1.7.0.17
#define MainComponentVersion 0x01070012L // 1.7.0.18
 
/* formatted for Win32 VERSIONINFO resource */
#define VI_VERS_NUM 1,7,0,17
#define VI_VERS_NUM 1,7,0,18
#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"
/trunk/win_res.rc
23,10 → 23,10
// This pragma is ignored by OpenWatcom
// If language.h and ui_win.rc are UTF-8 (without BOM):
// => MSVC++ requires this pragma to be set to code page 65001
// => OpenWatcom requires setting "-zku8"
// => OpenWatcom requires setting "-zku8" and "-bt=nt"
// If language.h and ui_win.rc are ANSI encoded:
// => MSVC++ requires this pragma to be MISSING
// => OpenWatcom requires setting "Single byte characters only"
// => OpenWatcom requires setting "Single byte characters only" and "-bt=nt"
#pragma code_page(65001)
 
#include "Scripting.rc"