1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
2004-06-01 <bhepple@raita.finder.com.au> Version 2.0.0
* (Bug & fix (thanks!) sent in by Andreas Reimer) gui.py:434:
self._warp(newnode) Caused an error message on "New Item", changed
it to self._warp(new_child)
* (Bug & fix (thanks!) sent in by Andreas Reimer) gui.py:1081 was:
self.gui.msg("No changes to save"), changed to self.msg("...")
* (Bug sent in by Andreas Reimer & Thomas Zajic): file.py:228: on
write_file() a reference to body[-1] caused an error. changed to:
if body and not body[-1] == '\n'
* (Bug sent in by Thomas Zajic): hard-coded references to "/usr"
should be replaced with something more adjustable to allow
installation "anywhere". Also added setup.py and uninstall.sh for
systems without RPM or emerge.
* Added setup.py and uninstall.sh for non-RPM, non-emerge systems
* Reduced python requirement to 2.2 (untested - please confirm if it works for you!)
|