if (do_name() != 'Home') : ?>
endif ?>
Posted by fdb on Jun 29, 2009
include("util/comment.php"); ?>
Hi,
Thanks for the remarks. We're planning on doing a maintenance release for NodeBox 1, and I'll make sure these fixes are in there.
Frederik
Some bugs
Posted by Karsten Wolf on Jun 28, 2009Hi,
#3a few bugs...
#1
- Nodebox scripts can't have an encoding line
This is annoying if you need utf-8 encoding for your comments and you want to use the scripts in other python environments.
This can be fixed in
nodebox/src/nodebox/gui/mac/__init__.py
in method _compileScript of class NodeBoxDocument by inserting
source = source.encode("utf-8")
after line 2
#2
- drawpath with a recorded path can only be drawn once
to demo this:
- in current svn repository textpath doesn't work; it complains about wrong number of arguments
#4
- the creator code for NodeBox is 'ndbx'. Apple reserves all lowercase creators for themselves. Something like NdBx would be more appropriate
A few notes...
- The NodeBox Icon hack in macbuild.sh
This can be avoided by adding the iconresource in macsetup.py in the proper (or at least working) way:
Add this line after the "optimize = 2," option
iconfile = 'Resources/NodeBox.icns',
Keep up the excellent work! Even though I'm complaining NodeBox made me learn Python. Thank you.
-karsten