baum

log

age author description
2008-06-25 meillo switched to version 0.5
2008-06-25 meillo made Makefile much simpler (installs now to /usr/local)
2008-06-25 meillo using function pointers now, instead of a large if-else
2008-03-16 meillo updated TODO; removed trailing spaces from LICENSE0.4
2008-03-16 meillo added error handling for fopen and malloc; code cleanups
2008-03-02 meillo updated examples to "create" instead of "input"
2008-03-02 meillo "sum" node clears its value now everytime it gets called
2008-03-02 meillo documented "if" and "while" in the man page; new error code 7
2008-03-02 meillo "input" node is now "create" node and can handle more than user input now
2008-03-02 meillo added first implementation of "if" and "while" (but they are not perfect yet)
2008-03-02 meillo Added tag 0.3 for changeset f9fc4c4f9e3d666dad2bd1efa627fb646334433c
2008-03-02 meillo documented nodes in man page0.3
2008-03-02 meillo merged header files into only one (removed actions.h)
2008-03-02 meillo added deep copy and fixed so node times
2008-03-01 meillo using fakeroot for creating the tarball; removed executable bit from some files
2008-03-01 meillo updated TODO; minor stuff in debian/
2008-03-01 meillo added test programs; added another example program
2008-03-01 meillo switched exit code 127 to 126 (because shell returns 127 if command not found)
2008-03-01 meillo reduced output; cleanups
2008-03-01 meillo removed debug output of read_input
2008-03-01 meillo added new example program; added comments to example programs
2008-03-01 meillo option_verbose is now global; stuff about warning when (expected) nodes are not there
2008-03-01 meillo switched to next version number, updated man page
2008-03-01 meillo removed node blackhole and substituted by node number now executing its child
2008-03-01 meillo Added tag 0.2 for changeset 3903effae5efcba191a6b459da457a3cff897c22
2008-03-01 meillo eliminated generic blackhole node at root
2008-03-01 meillo new error code 6; more readable printTree; cleanups
2008-02-22 meillo new debian package0.2
2008-02-22 meillo removed -c option completely; updated man page; new error code 5
2008-02-22 meillo fixed multiple (un)indentions in read_input; some better comments
2008-02-22 meillo removed binary from dist tarball; new debian package
2008-02-22 meillo version in Makefile is extracted from sources now
2008-02-21 meillo empty stack at the end (thanks valgrind to show me this)
2008-02-19 meillo removed obsolete stuff; only relevant stuff is extern now; refactoring
2008-02-13 meillo Added tag 0.1 for changeset 69a7cf2f0c06a5e0f0609f80c875e2ceb7ffa9c2
2008-02-13 meillo make dist includes now a stripped executable (should we include the exe at all?)0.1
2008-02-13 meillo added TODO
2008-02-13 meillo modified .hgignore
2008-02-13 meillo added license to debian/copyright; fixed minor makefile and debian stuff
2008-02-13 meillo added Debian stuff; new Makefile
2008-02-13 meillo added example program sum3input
2008-02-13 meillo added man page
2008-02-13 meillo added example directory with hello world program
2008-02-13 meillo added README and LICENSE; changed error code of invalid node
2008-02-13 meillo insertLast returns now new inserted node; very dumb implementation for action_times
2008-02-13 meillo input says now that it wants an input
2008-02-13 meillo added commandline options (-v, -c, file); logging only if -v is set
2008-02-12 meillo input is now read from file again (because of input node)
2008-02-09 meillo deleted old commented code
2008-02-09 meillo s/list/stack/g because thats what it is
2008-02-09 meillo read input is now finished in first version; removed init; added push and pull; name is now array instead of pointer
2008-02-09 meillo input is now read from stdin
2008-02-09 meillo new implementation of the read input function
2008-02-08 meillo first tries for the read input function
2008-02-08 meillo added checks for null pointer; print echoes as char or number now (depends on value); all logging goes to stderr now; new nodes blackhole and times (not implemented yet)
2008-02-07 meillo trivial output improvement
2008-02-07 meillo added input; added nextNode, lastNode, insertLast
2008-02-07 meillo added difference between char and number
2008-02-07 meillo added features (print, sum, number); split in header file
2008-02-07 meillo initial commit