Hi all,
- The F-Script Guide has been updated. You can get the new version at
http://www.fscript.org/download/FScriptGuide.pdf
- A new bug was reported for F-Script 1.1 BETA. It affects most notably
the object browser if a workspace is loaded from disk. This will be
fixed in the next version. If you use the source code distribution, you
can correct it yourself by modifying the -initWithCoder: method in class
FSContext. This involve commenting two lines. The fixed method should
look like this:
- (id)initWithCoder:(NSCoder *)coder
{
retainCount = 1;
parent = [[coder decodeObject] retain];
//if (!parent && [coder isKindOfClass:[FSUnarchiver class]])
// parent = [[((FSUnarchiver *)coder) loaderEnvironmentSymbolTable]
retain];
[coder decodeValueOfObjCType:@encode(typeof(localCount))
at:&localCount];
locals = malloc(localCount*sizeof(id));
[coder decodeArrayOfObjCType:@encode(id) count:localCount at:locals];
return self;
}
Best,
Phil
|