1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
2004-10-17 Phil Blundell <pb@nexus.co.uk>
* Version 0.08 released.
2004-10-17 Phil Blundell <pb@nexus.co.uk>
* todo-db.c (todo_db_refresh): New function.
* gpe/todo-db.h (todo_db_refresh): Add prototype.
2004-03-25 Philip Blundell <philb@gnu.org>
* Version 0.07 released.
2004-03-25 Philip Blundell <philb@gnu.org>
* Makefile: Bring up to modern standards vis-a-vis PACKAGE_CFLAGS,
etc.
2004-02-29 Phil Blundell <pb@nexus.co.uk>
* Version 0.06 released.
2004-02-29 Phil Blundell <pb@nexus.co.uk>
* todo-db.c (item_data_callback): Fix cut and paste error.
2004-02-23 Phil Blundell <pb@nexus.co.uk>
* Version 0.05 released.
2004-02-22 Phil Blundell <pb@nexus.co.uk>
* todo-db.c (item_data_callback): Correct disastrous typo.
2004-02-22 Phil Blundell <pb@nexus.co.uk>
* Version 0.04 released.
2004-02-22 Phil Blundell <pb@nexus.co.uk>
* gpe/todo-db.h: (struct todo_category): Deleted.
(todo_db_destroy_category): Likewise.
(todo_db_del_category): Likewise.
(todo_db_get_categories_list): Likewise.
* todo-db.c (new_category_internal): Deleted.
(todo_db_get_categories_list): Likewise.
(converted_category): Likewise.
(todo_db_new_category): Likewise.
(todo_db_category_find_by_id): Likewise.
(todo_db_destroy_category): Likewise.
(todo_db_del_category): Likewise.
(category_callback): Likewise.
(item_data_callback): Store category in list as ID, not pointer.
(todo_db_start): Don't create categories table. Reformat some
code. Delete category loading stuff. Call
migrate_old_categories().
(todo_db_stop): Remove category handling.
(todo_db_push_item): Categories list holds ID directly.
* old-db.c (struct todo_list): Deleted.
(new_list, list_callback0): Deleted.
(item_callback0): Remove old list handling.
(convert_old_db): Likewise.
(migrate_one_category, migrate_old_categories): New.
* gpe/todo-db.h (PRIORITY_HIGH, PRIORITY_STANDARD, PRIORITY_LOW):
Tweak numbering to fit vEvent range.
* Makefile (CFLAGS, LDFLAGS): Add libgpepimc.
2004-02-15 Philip Blundell <philb@gnu.org>
* Makefile (VERSION): Version 0.03 released.
2004-02-15 Philip Blundell <philb@gnu.org>
* familiar/control: Add Source.
* gpe/todo-db.h (enum item_state): Add ABANDONED.
(struct todo_item): Add priority.
(PRIORITY_STANDARD, PRIORITY_HIGH, PRIORITY_LOW): New.
* todo-db.c (item_data_callback): Compare tags case-insensitive.
Handle PRIORITY.
(todo_db_push_item): Write out PRIORITY.
(item_callback): Set priority to STANDARD if not specified.
2004-02-13 Phil Blundell <pb@nexus.co.uk>
* todo-db.c (todo_db_push_item): Write out MODIFIED tag.
2003-03-23 Colin Marquardt <colin@marquardt-home.de>
* Makefile (install-program): New name for 'install' ('install' is
now provided by Makefile.dpkg_ipkg).
(CVSBUILD): New variable.
(BUILD): New variable.
Use -s option for installing the binary, get rid of strip.
2003-02-27 Luis Oliveira <luis@handhelds.org>
* todo-db.c (todo_db_destroy_category): New function.
(todo_db_del_category): Use it.
(todo_db_stop): Free category and item lists.
(todo_db_destroy_item): New function.
(todo_db_delete_item): Use it.
* todo-db.h: Added prototypes for the new function as well as
todo_db_stop().
2003-02-16 Philip Blundell <philb@gnu.org>
* todo-db.c (item_callback): Use g_malloc0.
(todo_db_new_item): Likewise.
* Makefile (CFLAGS): Add -DG_DISABLE_DEPRECATED.
* familiar/control (Depends): Add libgpewidget1.
2003-02-02 Philip Blundell <philb@gnu.org>
* todo-db.c (todo_db_categories, todo_db_items): Make static.
* Makefile (LDFLAGS): Add -lgpewidget.
* old-db.c (convert_old_db): Use gpe_error_box in place of printf.
(lists): Make static.
2003-01-29 Luis Oliveira <luis@handhelds.org>
* todo-db.c (todo_db_get_items_list): New function.
(todo_db_get_categories_list): New function.
* todo-db.h: Added the two new functions and removed the
global exportation of the items/categories lists.
2003-01-29 Luis Oliveira <luis@handhelds.org>
* Initial import.
|