0.3.5 build 856
This version has no new feature that you can actually see, but introduces a fundamental change in the code that handles the display of the tree. The tree is now a "lazy evaluation tree".
http://en.wikipedia.org/wiki/Lazy_evaluation
So EG will only create GUI elements for tree items, if they are actually needed because their parent node is expanded. As soon as you collapse a node, all GUI elements for the childs get deleted.
The benefits of this approach are the smaller memory usage and faster creation of the tree when loading the XML file. For bigger files this version is nearly twice as fast on loading as the old ones.
This is a step forward to the long term goal of mine to separate the GUI and internal data structures completely, so that it is possible to run EG without any GUI. All the GUI stuff will then only be created when the user actually wants to configure something.