Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 515 → Rev 516

/trunk/CHANGELOG.md
5,9 → 5,9
- Added translation for German systems (*)
- `map(i,n)` now works like in Filter Factory and not like GIMP User Filter v0.8.
- `val(i,a,b)` now returns the same value like Filter Factory for illegal values of `i`.
- Windows: Standalone filters containing a `&` in Name or Category now have the correct "Visual Themes", as the Manifest XML is not broken anymore.
- Windows: Standalone filters containing ampersand characters ("&") in Name or Category now have the correct "Visual Themes", as the Manifest XML is not broken anymore.
- Windows: Handling of ampersand characters ("&") in Title, Category, Author, Copyright, and Controller/Map labels fixed.
- Introduced obfuscation version 7, which is more secure.
- Windows: Handling of ampersand characters ("&") in Title, Category, Author, Copyright, and Controller/Map labels fixed.
- Support for "Filter layers" added (not fully tested; PiPL attribute `'flly'`) (*)
- FilterFoundry can now work correctly with Duotone and Lab color spaces (PiPL `'mode'` entry was wrong)
- Internal change: PiPL resource now contains `'8BIM':'cmpt'` (Component) (*)
/trunk/make.c
223,7 → 223,7
prop->propertyKey = PIComponentProperty;
prop->propertyID = 0;
time(&curTime);
componentVersion = (unsigned long)curTime - 946681200/*01.Jan.2000 00:00:00*/;
componentVersion = (unsigned long)(curTime - (time_t)946681200)/*01.Jan.2000 00:00:00*/;
prop->propertyLength = (SPInt32)roundToNext4(strlen(component) + 1 + sizeof(componentVersion));
memset(prop->propertyData, 0x00, prop->propertyLength); // fill padding with 00h bytes (cosmetics)
memcpy(prop->propertyData, &componentVersion, sizeof(componentVersion));