From: <cl...@us...> - 2003-03-02 02:50:16
|
Update of /cvsroot/todo-manager/todo-manager In directory sc8-pr-cvs1:/tmp/cvs-serv31859 Modified Files: Tag: branch-0_70 ChangeLog.txt main.py Log Message: Task group listings should now be correct. Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/ChangeLog.txt,v retrieving revision 1.35.2.2 retrieving revision 1.35.2.3 diff -u -d -r1.35.2.2 -r1.35.2.3 --- ChangeLog.txt 25 Feb 2003 02:29:29 -0000 1.35.2.2 +++ ChangeLog.txt 2 Mar 2003 02:50:12 -0000 1.35.2.3 @@ -1,5 +1,8 @@ ToDo Manager Change Log +Version 0.70.1: + * Task group listings are now correct for all loaded files + Version 0.70 (02/24/2003): * New data entry layout * File->Export will preserve sorting and filters on the exported task list Index: main.py =================================================================== RCS file: /cvsroot/todo-manager/todo-manager/main.py,v retrieving revision 1.67.2.1 retrieving revision 1.67.2.2 diff -u -d -r1.67.2.1 -r1.67.2.2 --- main.py 23 Feb 2003 01:40:01 -0000 1.67.2.1 +++ main.py 2 Mar 2003 02:50:13 -0000 1.67.2.2 @@ -304,6 +304,7 @@ self.__file_modified = FALSE self.interface_call(ALL, "clear_list_items") + self.interface_call(ALL, "update_list_groups", []) self.interface_call(ALL, "set_current_filename", _("Untitled")) def do_file_save(self, filename=None, ui=None): @@ -428,6 +429,7 @@ self.__file_modified = FALSE self.interface_call(ALL, "update_list_items", self.__get_task_names()) + self.interface_call(ALL, "update_list_groups", self.__get_task_groups()) # See if the file that has just been loaded is the default file f = os.path.join(get_root_directory(), filename) |