aboutsummaryrefslogtreecommitdiffstats
path: root/src/calcurse.c
Commit message (Collapse)AuthorAgeFilesLines
* unuseful headers removed and some functions became staticFrederic Culot2007-07-281-5/+5
|
* global variables suppressedFrederic Culot2007-07-261-11/+8
|
* call to exit_calcurse() addedFrederic Culot2007-07-231-110/+84
| | | | | global variable which_pan suppressed signal handling routines moved to sigs.c
* make use of STATUSHEIGHT define and erase_status_bar() functionFrederic Culot2007-07-211-884/+51
| | | | | | | | | | | | update_app_panel() moved to apoint_update_panel() update_todo_panel() moved to todo_update_panel() add_item() moved to apoint_add() del_item() split into apoint_delete() and todo_delete() init_vars() moved to vars_init() windows handling routines moved to wins.c and wins.h print_option_in_color() moved to utils.c print_notify_options() moved to notify_print_options() config_notify_bar() moved to notify_config_bar()
* store_day() moved to day_process_storage()Frederic Culot2007-07-201-159/+183
| | | | | enum window_number moved to vars.h get_screen_config() updated to use window_t type
* nl_cal and nc_cal variables moved to defines in calendar.hFrederic Culot2007-07-011-181/+115
| | | | | | | code cleanup in get_date() to get rid of global variables several changes due to the use of date_t type (today and slctd_day moved to static variables in calendar.c) get_date() recoded and moved to calendar_set_current_date()
* notify bar init sequence modifiedFrederic Culot2007-05-061-24/+27
| | | | | | | layout variable added to conf_t type bugfix: layout is now properly restored (thanks Jose for reporting this bug) bugfix: apad width is now correctly updated when changing layout
* do not colorize by default when entering the color configuration menuFrederic Culot2007-04-211-2/+1
|
* bugfix: correct item is now highlighted when changing day insideFrederic Culot2007-04-141-6/+42
| | | | | | appointment panel with CTRL keys sigchld_handler() created to catch zombie processes init_sighandler() created
* MAX_LENGTH replaced by stdio.h's BUFSIZFrederic Culot2007-04-041-36/+41
| | | | use of MININSEC define
* init_notify_bar(), load_conf() and fill_config_var() suppressedFrederic Culot2007-03-241-219/+77
| | | | | conf variable created to avoid global variables code cleanup
* bugfix: missing space inside textFrederic Culot2007-03-171-3/+4
|
* 'X' command added, to export data in iCal formatFrederic Culot2007-03-111-1/+6
|
* global variable 'colr' suppressedFrederic Culot2007-03-101-33/+30
|
* use of terminal default background color instead of blackFrederic Culot2007-03-041-44/+65
| | | | | call to custom_load_color() added in load_conf() update_windows() updated to avoid the use of the global 'colr' variable
* updated call to notify_check_added()Frederic Culot2007-02-251-6/+20
| | | | | | call to notify_catch_children() added print_notify_options() improved to avoid display problems with long options init_notify_bar() updated to get user shell
* '!' command added, to switch appointment notification stateFrederic Culot2007-02-241-72/+134
| | | | | | init_notify_bar(), config_notify_bar() and print_notify_options() modified to add the notification command option. load_conf() updated to load notification command
* use of getstring() definesFrederic Culot2007-01-161-11/+17
|
* bugfixesFrederic Culot2007-01-101-7/+18
|
* display adjustment in update_todo_panel()Frederic Culot2006-12-211-2/+2
|
* bugfix in label lengthFrederic Culot2006-12-191-5/+5
|
* some small bugfixes, thanks to toucouch for reporting themFrederic Culot2006-12-151-12/+12
| | | | calls to strcpy and sprintf suppressed
* get_date() updated so that it does not modify the selected day inside calendarFrederic Culot2006-12-101-4/+6
|
* calls to day_erase_item() and day_edit_item() updatedFrederic Culot2006-12-081-3/+6
|
* call to day_edit_item() addedFrederic Culot2006-11-301-4/+4
|
* calls to getstring() updatedFrederic Culot2006-11-021-8/+17
| | | | 'E' key added to edit already existing items
* display_item() call modified in update_todo_panel()Frederic Culot2006-10-281-2/+2
|
* getstring() calls in config_notify_bar() and add_item() updatedFrederic Culot2006-10-281-25/+22
|
* bugfix: a number of minutes can no longer be entered while creating a new ↵Frederic Culot2006-09-301-2/+2
| | | | appointment
* CTRL-J and ENTER are equivalent so can't suppress one of those keybindingsFrederic Culot2006-09-301-2/+2
|
* added test on warning time interval in config_notify_bar(), plus small bugfixesFrederic Culot2006-09-181-4/+5
|
* config_notify_bar() improvedFrederic Culot2006-09-171-11/+17
|
* config_notify_bar() and print_notify_options() improvedFrederic Culot2006-09-161-6/+6
|
* init_notify_bar(), config_notify_bar() and print_notify_options() createdFrederic Culot2006-09-151-10/+179
| | | | | load_conf() updated to load notify-bar user settings several updates to take notify-bar settings into account
* add_item() updated to check if newly added appointment is to be notifiedFrederic Culot2006-09-141-7/+7
|
* calls to apoint_llist_init() and recur_apoint_llist_init() addedFrederic Culot2006-09-121-2/+6
|
* added call to notify_check_next_app()Frederic Culot2006-09-111-1/+2
|
* notification bar createdFrederic Culot2006-09-091-10/+17
|
* fixed a bug appearing when trying to delete a newly repeated itemFrederic Culot2006-09-081-1/+2
|
* general keybindings addedFrederic Culot2006-09-061-8/+21
|
* get_screen_config() updated to take new layouts into accountFrederic Culot2006-09-031-9/+32
|
* improved the ToDo panel scrolling while changing item prioritiesFrederic Culot2006-09-021-7/+14
| | | | changed the strcpy calls to strncpy
* update_todo_panel(): priority added when displaying todo listFrederic Culot2006-08-311-2/+11
| | | | '+/-' keys are now used to handle todo priorities
* bugfix: pressing 'R' while no item was selected caused a segfault. Thanks to ↵Frederic Culot2006-08-301-22/+5
| | | | | | Chris for reporting it. add_todo() moved to todo_new_item() in todo.c
* repeat command disabled for todo panelFrederic Culot2006-08-241-4/+7
|
* screen refreshing process ameliorated in add_item()Frederic Culot2006-08-221-4/+2
|
* bugfix: a newly created appointment or event is now correctly highlightedFrederic Culot2006-08-191-1/+2
|
* keybinding changed: CTRL-L is now used to redraw screenFrederic Culot2006-08-061-3/+7
| | | | keybinding added: R to repeat an item
* del_item() updatedFrederic Culot2006-08-021-2/+4
|
* del_apoint() renamed to del_item() and updated to take recurrent items into ↵Frederic Culot2006-08-011-11/+15
| | | | account