From: Hans F. <fu...@us...> - 2004-06-30 14:34:18
|
Update of /cvsroot/neelix/neelix In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5558 Modified Files: Makefile TODO Log Message: Can delete ingredients. Still working on proper add ingredient. It adds now, but just to the end of the list. I'd like it to add to after the current item. More important would be allowing reordering, then adding to the end isn't such a big deal. Both require the swapping idiom which is currently broken I think. See the bug on the bug tracker. http://sourceforge.net/tracker/index.php?func=detail&aid=982778&group_id=93954&atid=606159 Index: Makefile =================================================================== RCS file: /cvsroot/neelix/neelix/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Makefile 29 Jun 2004 14:24:06 -0000 1.8 +++ Makefile 30 Jun 2004 14:34:05 -0000 1.9 @@ -16,8 +16,10 @@ web: doc rsync -rv rdoc screenshot.png shell.sf.net:neelix/htdocs +dbclean: + make -C db clean clean: rm -rf rdoc make -C db clean -.PHONY: doc all qt web db clean +.PHONY: doc all qt web db clean dbclean Index: TODO =================================================================== RCS file: /cvsroot/neelix/neelix/TODO,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- TODO 29 Jun 2004 14:24:06 -0000 1.5 +++ TODO 30 Jun 2004 14:34:05 -0000 1.6 @@ -1,7 +1,9 @@ 0.1.0 - target: July 4, 2004 Finish Menu functionality -Finish Ingredient dialog. - - reordering,addition,deletion of ingredients + - figure out runtime binding to a database, then implement the following + - new + - open + - save as (aka cp ;-) 0.2.0 - meal plans |