Subversion Repositories filter_foundry

Rev

Rev 258 | Rev 263 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
216 daniel-mar 1
# Changelog
2
 
261 daniel-mar 3
## 1.7.0.5 [30-Jul-2021]
256 daniel-mar 4
- Changed obfuscation code (now more secure)
5
- The feature "Obfuscate" and "Protected" are now merged together.
6
	Reason: Obfuscate without protect makes no sense (since everybody can read/load it using FilterFoundry) and
7
	protect without obfuscate makes no sense (because you can read the formula using a resource editor and even remove the protect flag with a hex editor)
258 daniel-mar 8
- Standalone plugins: Version info wasn't written correctly when plugin was obfuscated. Fixed.
256 daniel-mar 9
 
252 daniel-mar 10
## 1.7.0.4 [27-Jul-2021]
238 daniel-mar 11
- Fixed problem where 32bit Windows plugin tries to load 64bit standalone plugin
250 daniel-mar 12
- Bugfix: Windows Open/Save dialogs: At the title, the first character was missing. Fixed.
243 daniel-mar 13
- Internal change: "Manifest" resource gets individualized in standalone plugins
14
- Internal change: PiPL/Manifest-template is now stored in 'TpTL' instead of 'DATA'/RCDATA. (But obfusc data stays at 'DATA'/RCDATA)
244 daniel-mar 15
- Bugfix: If you called a standalone filter two times, then the main dialog opened (bug introduced in 1.7.0.3)
247 daniel-mar 16
- Ifanview/GIMP can now also work with standalone filters
250 daniel-mar 17
- If the user tries to open a protected 8BF file, the error message will now state that it can't be opened because the filter is protected
238 daniel-mar 18
 
237 daniel-mar 19
## 1.7.0.3 [23-Jul-2021]
20
- Support BigDocument structure (.psb) (*)
232 daniel-mar 21
 
22
(*) This bug/solution was tested on Windows but needs to be verified and/or implemented on Mac.
23
 
231 daniel-mar 24
## 1.7.0.2 [19-Jul-2021]
216 daniel-mar 25
- Project was forked by Daniel Marschall and released on GitHub. For now, only the Windows version is supported.
26
- Bugfix: If a plugin is called from a recorded Action, a dialog was shown at the first start, even if dialogs were disabled.
27
- Bugfix: Variable `d` now works like FilterFactory/FilterFoundy1.6 again. (Bug introduced in FilterFoundry 1.7b1 due to the change of the `c2d()` function)
28
  NOTE: FilterFactory uses `c2d(x,y) := atan2(y,x)`, but `d := atan2(-y,-x)`. Due to compatibility reasons, we implement it the same way!
29
- Bugfix: Standalone filters did not show the correct "About" dialog
222 daniel-mar 30
- FilterFoundry is now AppleScript aware (*)
216 daniel-mar 31
- Fixed various smaller things and improved the source code building process
222 daniel-mar 32
- Map labels are centered between two sliders, like in Filter Factory (*)
226 daniel-mar 33
- AFS files: Improved interoperability (read/write) with Filter Factory in regards "line break" characters
230 daniel-mar 34
- "About dialog" shows if the plugin is a 32 bit or 64 bit plugin
35
- "Original filename" version info attribute now correctly shows "FilterFoundry64.8bf" for 64 bit build
36
- Left "beta" state
216 daniel-mar 37
 
222 daniel-mar 38
(*) This bug/solution was tested on Windows but needs to be verified and/or implemented on Mac.
39
 
216 daniel-mar 40
## 1.7b1 [20-Sep-2019]
41
- First release by Daniel Marschall
42
- Fixed crash at filter startup when the computer had too much RAM.
43
- Fixed crash where built obfuscated filters could not be opened.
44
- Added function `rst(i)` which is an undocumented function in Filter Factory for setting a random seed.
45
- Size PARM_SIZE in PARM resource corrected.
46
- Added Visual Studio project file, and extended NMake script to support flex and bison compilation.
47
- Dialogs (build dialog, open and save dialogs) are now modal, i.e. the main window is locked when they are open. (*)
48
- The preview dialog has now a hand cursor. (Open hand on hover. Grabbing hand on panning) (*)
49
- Dialog boxes now have a "X" button to close the window.
50
- Preview: Checkerboard does only move when the panning succeeded (the picture didn't go off border)
51
- Bugfix: In the preview window, you could (virtually) pan the image beyond the canvas, so that you needed to pan multiple times in the opposite direction to get to the position "0" again.
52
- The "version information" of standalone filters is now individualized by the creator's input
53
- Win64 support (*)
54
- All undocumented symbol aliases of FilterFactory are now supported (`rmin`, `rmax`, `cnv0`, etc.)
55
- Bugfix: In some cases, the preview image had a small stripe of random pixels at the right or bottom.
56
- For disabled sliders, the corresponding label is now also grayed out (*)
57
- Bugfix: In standalone filters, the unused `ctl()` labels were not hidden. They are now invisible as intended.
58
- Bugfix: At standalone filters, the `map` text was not displayed; instead, the two `ctl` texts were displayed.
59
- AFS Files are now compatible with FilterFactory. (FilterFactory does ONLY understand `"\r"` (0D) linebreaks, while FilterFoundry always saved `"\n"` (0A) linebreaks, while being able to read `"\r"`, `"\n"` or `"\r\n"`. Now, `"\r"` is used for saving.) (*)
60
- The "caution" sign that indicates an error in the expression now has a hand cursor that shows up when you hover over the icon, to indicate that the user will receive more information if they click on the icon (*)
61
- The "caution" sign now has a sharper design (it was a bit pixelated).
62
- The expression input fields now have a vertical scrollbar (*)
63
- YUV formulas are now more accurate. They are slightly different, but not much.
64
	* The i range is now [0..255] instead of [0..254].
65
	   (This means that pure white has now i=255 instead of i=254)
66
	* The u range stays at [-55..55].
67
	* The v range is now [-78..78] instead of [-77..77].
68
- Bugfix: If `ctl()` or `map()` was called with a non-constant argument, the controls in the build dialogs were not correctly enabled/disabled, and built standalone filters did not get the correct "needs UI" flag. Fixed.
69
- In the build dialog, if `map()` was used, the corresponding `ctl()`-labels now can't be changed anymore, since the resulting standalone filter won't show them anyway.
70
- Warning dialogs (`alertuser` and `simplealert` function) are now modal. (*)
71
- Bugfix: Trigonometry functions sin and cos had wrong output ranges for Windows (it was -1024..1024 instead of the documented output range -512..512). Fixed.
72
- Bugfix: Trigonometry function tan now behaves like in Filter Factory
73
- Bugfix: Function `c2d()` now behaves like in Filter Factory. Implementation changed from `atan2(-y,-x)` to atan2(y,x).
74
- Bugfix: The cell values used by the functions `get()` and `put()` were not (re-)initialized before the filter started running. This caused that expressions like `put(get(0)+1,0)` produced different results at each run.
75
- Adobe Premiere FilterFactory/TransitionFactory filters (`.pff` Settings and `.prm` 16/32 bit Windows Standalone Filters) can now be imported (*)
76
- Old FilterFactory standalone filters for macOS can now be imported (*)
77
- In Windows, the "load" algorithm will now first check if a file is an AFS/PFF file, and then if it is a standalone filter. Due to this, files can now be opened, even if they have the wrong file extension.
78
- Bugfix: When state-changing functions (rst, rnd or put) are used within the formula, every pixel in the picture will now be evaluated during preview, even if the user has zoomed in.
79
- Fixed "off by one" bug where you could pan a fit-zoomed picture by 1 pixel in the preview
80
- The preview area now has a dark off-canvas area and for Windows, a "sunken" border
81
- Windows: Visual Styles are now supported and always be applied
82
- Bugfix: If you click the zoom level-caption for a tiny picture, the zoom ("fit zoom") won't zoom in to >100% anymore.
83
- Building standalone filters is now possible with Windows 9x. (Requires compilation using an old Windows SDK, or compilation using OpenWatcom)
84
- Fixed TLV lengths in the PIPL structure (includes now paddings). This might solve incompatibilities with non-Photoshop hosts (i.e. GIMP).
85
- GIMP (using PSPI to load 8BF plugins) and IrfanView is now compatible.
86
- `c2m()` and `sqr()` are now approximately 3 times faster
87
- Build of plugins with empty titles or categories will now be prevented since plugins with empty categories or titles won't be shown in the filter menu.
232 daniel-mar 88
- Fixed Actions (recording/playback). Several things like the AETE resource were broken. The classID had to be changed to `'Fltr'` so that the parameters are shown in the Photoshop Action tab. (*)
216 daniel-mar 89
- Scripting/Actions: For standalone filters, the name of the sliders are now written in the "Actions" tab. The function `fixaete()` was replaced with `aete_generate()`. (*)
90
- `MaxSpace64` will now be used, if supported by the host
91
 
92
(*) This bug/solution was tested on Windows but needs to be verified and/or implemented on Mac.
93
 
94
## 1.6b1 [07-Jun-2009]
95
- Clean up for 64-bit Windows build
96
 
97
## 1.5b6 [26-Aug-2007]
98
- Associativity of `?`: operator (Harald Heim)
99
 
100
## 1.5b4 [02-Aug-2007]
101
- Fix debug message spotted by Daniel Denk
102
 
103
## 1.5b3 [13-Jul-2007]
104
- Add instrumentation to try to find CS3/Intel Mac "Make standalone" problem.
105
 
106
## 1.5b1,2 [19-Feb-2007]
107
- Support remaining 8-bit image modes (wishlist proposal)
108
 
109
## 1.4b7 [18-Feb-2007]
110
- Swap +/- zoom controls to match Photoshop builtins
111
 
112
## 1.4b8,9,10
113
- Simple parameter obfuscation in standalone plugins (wishlist #7)
114
 
115
## 1.4b6 [16-Feb-2007]
116
- Lowercase default file extensions (wishlist #1)
117
 
118
## 1.4b5 [02-Feb-2007]
119
- Minor changes to image sampling logic (`ff_src()`, `rawsrc()`)
120
 
121
## 1.4b4 [01-Feb-2007]
122
- `cnv()` no longer requests the entire filtered image in one piece; can now work in chunks to improve the handling of edge pixels when filtering selection
123
 
124
## 1.4b3 [01-Feb-2007]
125
- In `cnv()`, repeat pixels at the edge of the image, instead of using zero (reported by Daniel Denk)
126
 
127
## 1.4b2 [31-Jan-2007]
128
- Fix selection bug reported by Daniel Denk
129
 
130
## 1.4b1 [04-Jan-2007]
131
- Universal Binary on OS X (PPC+Intel)
132
 
133
## 1.3b2 [01-Sep-2006]
134
- Fix standalone UI bugs (thanks Craig Bickford)
135
 
136
## 1.3b1 [05-Jun-2006]
137
- Fix `x`, `y`, `X`, `Y`, `M` variables to use selection extent instead of image size (per Eiji Nishidai)
138
 
139
## 1.2b4 [06-May-2006]
140
- Fix minor AFS saving bug
141
 
142
## 1.2b3 [25-Mar-2006]
143
- Include `R`, `G`, `B`, `A`, `C`, `i`, `U`, `V` undocumented(?) constants (per Harald Heim)
144
 
145
## 1.2b2 [23-Mar-2006]
146
- New release
147
 
148
## 1.2b1 [22-Mar-2006]
149
- Read parameters from Windows .8BF Filter Factory standalone plugins, in Mac version
150
 
151
## 1.1f9,10 [21-Mar-2006]
152
- Improve file filtering on OS X (parse Windows-style extension filter)
153
 
154
## 1.1f7,8 [18-Mar-2006]
155
- Safer handling of previewing very large images, and clarify an out-of-memory message
156
 
157
## 1.1f6 [17-Mar-2006]
158
- Fix loading of Filter Factory saved PARM data on Windows
159
 
160
## 1.1f4,5 [16-Mar-2006]
161
- Add default extension AFS, 8BF for file saving (thanks Daniel Denk)
162
 
163
## 1.1f3 [26-Feb-2006]
164
- Fix plugin DLL extension; fix many source code warnings
165
 
166
## 1.1f2 [18-Jan-2006]
167
- Fix CS2/Mac build (missing fields in PiPL); scripting parameters were being ignored (!!)
168
 
169
## 1.1f1 [03-Oct-2005]
170
- Fix dialog behavior on repeated filter application
171
 
172
## 1.1b11 [22-Jul-2005]
173
- Merge changes to fix parameter bug reported by Demitrios Vassaras
174
 
175
## 1.1b10 [25-Jun-2005]
176
- Can make "standalone" Mach-O bundles
177
 
178
## 1.1b9 [24-Jun-2005]
179
- Mach-O build for CS2/Mac
180
 
181
## 1.1b5 [11-Feb-2005]
182
- Cosmetic fixes in Mac dialog (right justify slider text, etc)
183
 
184
## 1.1b6 [11-Feb-2005]
185
- Fix aete key (hash) calculation for standalone plugins to obey Adobe's stated rules
186
 
187
## 1.1b7 [11-Feb-2005]
188
- Aaaargh fix the stupid hex handling bug in the lexer
189
 
190
## 1.1b8 [11-Feb-2005]
191
- Remove dbg call in lexer (it's late :( )
192
 
193
## 1.1b3 [10-Feb-2005]
194
- Various mostly cosmetic cleanups; switch to GNU flex and bison in Makefile
195
- Use a monospaced font in Win expression text controls
196
 
197
## 1.1b4 [10-Feb-2005]
198
- Fix crash blooper in make.c (`fixpipl`)
199
 
200
## 1.1b1 [09-Feb-2005]
201
- Incl aete for Windows
202
 
203
## 1.1b2 [09-Feb-2005]
204
- Oops, forgot scripting.r (aete resource) in 68K build
205
 
206
## 1.1a1 [06-Feb-2005]
207
- Scripting support
208
 
209
## 02-Feb-2005
210
- Add Win VERSIONINFO
211
 
212
## 1.0f6 [20-Dec-2004]
213
- Fix bug in `rad(d,m,z)` -- wasn't relative to centre of image! Also `ff_c2d`, needed to negate x and y arguments to `atan2()`
214
 
215
## 1.0f5 [25-Sep-2004]
216
- Remove debug calls in Win build (!!) - thanks Shiro Akaishi; fix RC EDITTEXT syntax
217
 
218
## 1.0f4 [23-May-2004]
219
- Include missing license (!)
220
 
221
## 1.0f3 [21-Mar-2004]
222
- Alert when `pb->inData` is `NULL` - temporary workaround for crash bug
223
 
224
## 1.0f2 [20-Mar-2004]
225
- Fix code to blank margins of the preview... hunting David Owen's crash
226
 
227
## 1.0f1 [21-Feb-2004]
228
- GPL source release
229
 
230
## 1.0b2 [06-Feb-2004]
231
- Fix bufferSpace computation (Prepare call)
232
 
233
## 1.0b1 [31-Jan-2004]
234
- Finally fix Win32 standalone filters - building and running
235
 
236
## 0.9b6 [28-Jan-2004]
237
- Fix problems with making standalone on Mac (thanks Chris Greene)
238
 
239
## 0.9b5 [21-Jul-2003]
240
- Fix crash on About box (!!)
241
 
242
## 0.9b4 [19-May-2003]
243
- Fix Make... suggested file name bug
244
 
245
## 0.9b3 [17-May-2003]
246
- Add Harry's suggestions: skip comments; other bugfixes
247
 
248
## 0.9b2 [17-May-2003]
249
- Fix `dmin`/`mmin` crash
250
 
251
## 0.9b1 [16-May-2003]
252
- Added `cnv()` function, `dmin`, `mmin`
253
 
254
## 0.8b5 [31-Mar-2003]
255
- Windows version can create standalone (?) NT platform only
256
 
257
## 0.8b4 [28-Mar-2003]
258
- Windows version can load PARM resource
259
 
260
## 0.8b3 [26-Mar-2003]
261
- Switch to "universal" PowerPC build in one file (inspired by Harald Heim)
262
 
263
## 0.8b1 [23-Mar-2003]
264
- Can now make standalone filters (Mac only)
265
 
266
## 0.7b2 [18-Mar-2003]
267
- Check for direct host callbacks before using them (preview)
268
 
269
## 0.7b1 [16-Mar-2003]
270
- Read Mac PARM resources
271
 
272
## 0.6b4 [16-Mar-2003]
273
- Fix `map()`
274
 
275
## 0.6b3 [16-Mar-2003]
276
- Windows preview pannable
277
 
278
## 0.6b1,2 [16-Mar-2003]
279
- Zoomable preview
280
 
281
## 0.5b7 [15-Mar-2003]
282
- Mac version uses edit controls, theme, is movable
283
 
284
## 0.5b6 [13-Mar-2003]
285
- Finally caught divide-by-zero in Win version
286
 
287
## 0.5b4 [08-Mar-2003]
288
- First Mac 68K build (CW1)
289
 
290
## 0.5b1 [04-Mar-2003]
291
- First Windows beta released
292
 
293
## 0.4b7,8,9,10 [02-Mar-2003]
294
 
295
## 0.4b4,5,6 [01-Mar-2003]
296
- Finally! Live sliders
297
 
298
## 0.4b1 [27-Feb-2003]
299
- With preview
300
 
301
## 0.3b3,b4 [25-Feb-2003]
302
 
303
## 0.3b1,b2 [24-Feb-2003]
304
 
305
## 0.1b1,0.2b1 [23-Feb-2003]
306
- Released 0.1b1,0.2b1
307
 
308
## 0.1b1 [22-Feb-2003]
309
- Started 0.1b1