aboutsummaryrefslogtreecommitdiffstats
path: root/src/apoint.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove temporary highlight pointersLukas Fleischer2011-10-061-1/+1
| | | | | | | | | Add an additional check to apoint_update_panel() and todo_update_panel() and only highlight currently selected items if the corresponding panel is active. This allows us to remove all the highlight pointer juggling that we used whenever the panel selection changed. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Do not unlink() note files on note removalLukas Fleischer2011-10-051-9/+7
| | | | | | | | | | Now that we use hash-based note file names, note files should never be unlinked as a note file might be shared. Also, remove the ERASE_FORCE_KEEP_NOTE flag that no longer makes any sense. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Fix apoint_get() call in apoint_switch_notify()Lukas Fleischer2011-07-291-1/+1
| | | | | | | We passed the function arguments the wrong way round. This regression was introduced in commit 77ef3fe76e4ce4c9a990e8a5904ad2d83420ca02. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Update the notification item in *_paste_item()Lukas Fleischer2011-07-291-0/+4
| | | | Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Add "force" parameter to notify_check_next_app()Lukas Fleischer2011-07-291-2/+2
| | | | | | | | This allows to force notify_check_next_app() to update the notification appointment, even if start times are equal (e.g. if the item description was changed). Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Update copyright notices in source files, documentation and "COPYING".Lukas Fleischer2011-04-221-1/+1
| | | | | | | | | * Update copyright dates (use 2004-2011 as date range everywhere). * Change copyright holder from "Frederic Culot" to "calcurse Development Team". Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Use generic lists for appointments.Lukas Fleischer2011-04-191-138/+94
| | | | | | | Use the new generic list implementation instead of "apoint_list" everywhere. Simplify stuff and drop unused variables as well. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Use do-while loops when reading start time and duration in apoint_add().Lukas Fleischer2011-04-121-2/+5
| | | | | | | | Using do-while loops seems more appropriate here as "item_time" hasn't even been read when either of the loops are entered. Spotted by clang-analyzer. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Remove some more dead assignments spotted by clang-analyzer.Lukas Fleischer2011-04-121-1/+0
| | | | Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Compare pointers to "NULL" instead of "0".Lukas Fleischer2011-04-051-4/+4
| | | | | | "bad_zero.cocci" spatch from http://coccinelle.lip6.fr/impact_linux.php. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Overall indentation fixes.Lukas Fleischer2011-03-141-155/+155
| | | | | | | Use spaces instead of tabs for source code indentation only, strip trailing whitespaces from lines. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Parse appointment end times correctly if they date back.Lukas Fleischer2011-03-131-1/+1
| | | | | | | | | End times used to be parsed incorrectly if start and end time's hour components were equal, but the end time was smaller than the start time. This is fixed by comparing the minute components as well in case of equal hour components. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Update website links to match the new URL.Lukas Fleischer2011-03-041-1/+1
| | | | Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Update mail addresses to match the new mailing lists.Lukas Fleischer2011-03-041-1/+1
| | | | Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Remove CVS "$Id" headers.Lukas Fleischer2011-03-031-2/+0
| | | | Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
* Fixed file permissions.Lukas Fleischer2011-03-031-0/+0
|
* All headers gathered into a single one. Typedefs suppressed.Frederic Culot2010-03-201-45/+34
|
* Make use of erase_note() whenever possible.Frederic Culot2009-07-191-15/+4
|
* stdbool header removed, unsigned type used insteadFrederic Culot2009-07-121-5/+5
|
* Switch to BSD license.Frederic Culot2009-07-051-14/+26
|
* The buffer should be allocated dynamically, but I am quite busy right now ↵Frederic Culot2009-05-221-3/+3
| | | | :'( Anyway, thanks Kamil for feedback
* more code cleanupFrederic Culot2009-01-031-12/+19
|
* code cleanupFrederic Culot2009-01-021-13/+13
|
* various bugfixesFrederic Culot2009-01-021-3/+3
|
* cut/paste feature adedFrederic Culot2009-01-011-9/+115
| | | | | fixed a 2-years old bug that made repeated items with exceptions to load uncorrectly in some cases (thanks Jan for reporting it)
* Added wrappers around libc's memory management functions, to easily debug ↵Frederic Culot2008-12-281-53/+64
| | | | memory usage
* small bugfixes and a major one (freeze when deleting an appointment's note, ↵Frederic Culot2008-12-151-5/+6
| | | | thanks Jan for reporting it)
* small bugfixes and code cleanupFrederic Culot2008-12-141-10/+6
|
* code cleanupFrederic Culot2008-12-121-8/+5
|
* Checks added while loading key bindings configuration.Frederic Culot2008-12-071-4/+4
|
* More work on implementing user-definable keybindingsFrederic Culot2008-11-161-5/+6
|
* some memory leaks fixed using valgrind and some minor code cleanupFrederic Culot2008-04-191-15/+15
|
* Yet another style for source code. GNU style now used (I am fed up with tabs...)Frederic Culot2008-04-121-461/+505
|
* Code parts related to item update rewrittenFrederic Culot2008-01-201-9/+27
|
* Ability to attach notes to appointments and events addedFrederic Culot2008-01-131-36/+37
|
* Ability to attach notes to todo items addedFrederic Culot2007-12-301-34/+20
|
* routines updated to handle new window_t and window_e typesFrederic Culot2007-10-211-15/+16
|
* hilt_app moved to the static variable hiltFrederic Culot2007-08-151-20/+46
| | | | | | | apoint_hilt(), apoint_hilt_set(), apoint_hilt_decrease(), and apoint_hilt_increase() added scroll_pad_down() and scroll_pad_up() moved to apoint_scroll_pad_down() and apoint_scroll_pad_up()
* apoint_update_panel() updated to display the phase of the moonFrederic Culot2007-08-121-4/+5
|
* error handling while in ncurses mode improvedFrederic Culot2007-08-041-12/+8
|
* compiler warnings fixedFrederic Culot2007-07-291-4/+4
|
* unuseful headers removed and some functions became staticFrederic Culot2007-07-281-3/+3
|
* apoint_update_panel(), apoint_add() and apoint_delete() addedFrederic Culot2007-07-211-1/+213
|
* apoint_switch_notify() prototype updated to take into account date_t typeFrederic Culot2007-07-011-3/+4
|
* use of DAYINSEC defineFrederic Culot2007-04-041-6/+8
|
* apoint_check_next() modified to handle item stateFrederic Culot2007-02-251-11/+9
| | | | | apoint_switch_notify() updated updated call to notify_check_added()
* apoint_switch_notify() createdFrederic Culot2007-02-241-14/+87
| | | | | apoint_write() updated to save item state apoint_scan() and apoint_new() updated to load item state
* strcpy replaced by strncpyFrederic Culot2006-12-151-4/+4
|
* display_item_date() updated to add an asterisk in front of recurrent itemsFrederic Culot2006-10-281-3/+8
|
* apoint_check_next() updatedFrederic Culot2006-09-161-10/+4
|