calcurse 2.7 released

This commit is contained in:
Frederic Culot 2009-08-22 08:34:02 +00:00
parent 20cd296a80
commit 2302c7fa54
4 changed files with 40 additions and 13 deletions

View File

@ -1,3 +1,10 @@
2009-08-22 Frederic Culot <frederic@culot.org>
* === Released 2.7 ===
* TODO
* NEWS: updated
2009-08-18 Frederic Culot <frederic@culot.org> 2009-08-18 Frederic Culot <frederic@culot.org>
* doc/manual_*.html: updated * doc/manual_*.html: updated

19
NEWS
View File

@ -1,3 +1,22 @@
[22 Aug 2009]
Version 2.7
- New features:
* a daemon was implemented so that calcurse can now send reminders in
background
* new --status command line option to display information about calcurse
running instances
- Bugfixes:
* fixed a bug which prevented ical files from being imported
* no more error when user's home directory does not exist
* dates are now written properly again when using the '-r' flag
* incorrect duration format fixed when exporting to ical
[11 Jul 2009] [11 Jul 2009]
Version 2.6 Version 2.6
- New features: - New features:

22
TODO
View File

@ -11,24 +11,26 @@ this list.
High High
---- ----
o Add support for UTF-8 * Add support for UTF-8
o Implement the send-item functionality to export a single item and pipe it * Implement the send-item functionality to export a single item and pipe it
to an external process to an external process
o Add a key binding to toggle between visible/hidden tasks inside todo * Add a key binding to toggle between visible/hidden tasks inside todo
panel panel
o Add an optional argument to the --next flag to check for next appointment * Add an optional argument to the --next flag to check for next appointment
starting from the specified time starting from the specified time
* improve the way one can specify a duration (allowing something like
XXdXXhXXmXXs)
Average Average
------- -------
o Add support for CalDAV protocol (rfc4791) * Add support for CalDAV protocol (rfc4791)
o Implement user-definable categories to classify appointments and tasks * Implement user-definable categories to classify appointments and tasks
o Add a week view in the calendar panel (and display week numbers) * Add a week view in the calendar panel (and display week numbers)
o Implement copy/paste functionality * Implement copy/paste functionality
Low Low
--- ---
o All status bars should be terminal-size dependant (config_bar is not) * All status bars should be terminal-size dependant (config_bar is not)
o Compute Easter sunday * Compute Easter sunday

View File

@ -1,11 +1,10 @@
# $calcurse: configure.ac,v 1.34 2009/07/20 19:43:02 culot Exp $ # $calcurse: configure.ac,v 1.35 2009/08/22 08:34:02 culot Exp $
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Init # Init
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
AC_PREREQ(2.59) AC_PREREQ(2.59)
#AC_INIT(calcurse, 2.6, frederic@culot.org) AC_INIT(calcurse, 2.7, frederic@culot.org)
AC_INIT(calcurse, 20090719, frederic@culot.org)
AM_INIT_AUTOMAKE AM_INIT_AUTOMAKE
AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT([external])
AC_CONFIG_SRCDIR([src/calcurse.c]) AC_CONFIG_SRCDIR([src/calcurse.c])