Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-14 | Use a global configuration variable | Lukas Fleischer | |
This is one of the few valid use cases for a global variable. No need to make it pseudo-local and pass it from one function to another. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-11-11 | Merge branch 'maint' | Lukas Fleischer | |
Conflicts: src/calcurse.h src/io.c | |||
2011-11-02 | Do not cast unused return values to void | Lukas Fleischer | |
A small style fix that removes all remaining "(void)" casts. Using these isn't encouraged in GNU coding guidelines and doesn't serve a certain purpose, except for satisfying a few static code analysis tools. We already nuked some of these in previous patches, but this semantic patch should fix what's left: @@ identifier func; @@ - (void)func ( + func ( ...); Long lines were re-formatted manually. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-10-05 | Add configuration option to run the GC on exit | Lukas Fleischer | |
If "auto_gc" is enabled, the garbage collector for note files will be run on every exit. As this is an experimental feature and may cause data loss, this is disabled by default. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-10-04 | Do not hardcode paths to the default editor/pager | Lukas Fleischer | |
Use "vi" instead of "/usr/bin/vi" and "less" instead of "/usr/bin/less". Hardcoding absolute paths is a bad idea: $ uname -rsv Linux 3.0-ARCH #1 SMP PREEMPT Tue Aug 30 07:32:23 UTC 2011 $ which less /bin/less The "$PATH" environment variable will almost always have a better idea of where these binaries are located. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-07-21 | Declare foreground and background variables global | Lukas Fleischer | |
Removes the need to pass the terminal's default background color round. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-06-28 | Avoid redundant redraws on resize | Lukas Fleischer | |
Use a global flag to record whether the terminal was resized instead of redrawing everything each time a KEY_RESIZE is read. Add some additional checks to help_write_pad() as invalid actions may be passed now due to using signals instead of virtual key presses. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-04-22 | Update copyright notices in source files, documentation and "COPYING". | Lukas Fleischer | |
* 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> | |||
2011-03-14 | Overall indentation fixes. | Lukas Fleischer | |
Use spaces instead of tabs for source code indentation only, strip trailing whitespaces from lines. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-03-04 | Update website links to match the new URL. | Lukas Fleischer | |
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-03-04 | Update mail addresses to match the new mailing lists. | Lukas Fleischer | |
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-03-03 | Remove CVS "$Id" headers. | Lukas Fleischer | |
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de> | |||
2011-03-03 | Fixed file permissions. | Lukas Fleischer | |
2010-03-20 | All headers gathered into a single one. Typedefs suppressed. | Frederic Culot | |
2009-08-01 | More work on implementing the daemon. | Frederic Culot | |
2009-07-26 | More work on implementing calcurse daemon. | Frederic Culot | |
2009-07-23 | Functions added to implement a logging mechanism for calcurse daemon. | Frederic Culot | |
2009-07-12 | stdbool header removed, unsigned type used instead | Frederic Culot | |
2009-07-05 | Switch to BSD license. | Frederic Culot | |
2009-06-21 | Basic lock mechanism implemented to avoid having two calcurse instances ↵ | Frederic Culot | |
running at the same time. | |||
2009-01-02 | code cleanup | Frederic Culot | |
2008-12-28 | Automatic periodic saves implemented | Frederic Culot | |
2008-12-28 | Added wrappers around libc's memory management functions, to easily debug ↵ | Frederic Culot | |
memory usage | |||
2008-11-16 | More work on implementing user-definable keybindings | Frederic Culot | |
2008-11-09 | Loading of user-configurable keys implemented | Frederic Culot | |
2008-09-20 | More work on ical import. Macros to handle errors and to display messages in ↵ | Frederic Culot | |
both command-line and curses mode added | |||
2008-04-12 | Yet another style for source code. GNU style now used (I am fed up with tabs...) | Frederic Culot | |
2008-04-09 | Tony's patch concerning date format configuration imported | Frederic Culot | |
2007-12-30 | Ability to attach notes to todo items added | Frederic Culot | |
2007-10-21 | cwin, awin, twin, swin variables suppressed | Frederic Culot | |
2007-08-15 | layout is not part of conf_t type anymore, and becomes a static variable in ↵ | Frederic Culot | |
wins.c | |||
2007-07-21 | vars_init() added | Frederic Culot | |
2006-09-15 | new structure created to store notify-bar settings | Frederic Culot | |
2006-07-31 | Initial revision | Frederic Culot | |