diff --git a/ChangeLog b/ChangeLog index 9f52c395..f88494f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,60 @@ +2010-02-23 Andrew McMillan + * Include inactive support for RRULE expansion. + +2010-02-23 Masahiro Mikami + * Updated Japanese translation. + +2010-02-23 Emmanuel Seyman + * Updated French translation. + +2010-02-22 Andrew McMillan + * Expanding functionality in RepeatRuleDateTime class. + +2010-02-20 Andrew McMillan + * Setup page is now able to detect the PDO pgsql drivers. + * Don't require a person to be logged in to see setup.php if their + setup is so screwed they can't even connect to a database... + * Making things more localisable. + +2010-02-19 Vincent Van Houtte + * Updated Dutch translation. + +2010-02-18 Andrew McMillan + * Use htmlspecialchars rather than htmlentities, which screws up translations. + * Remove link to old users browse page. + +2010-02-22 lebarjack + * Updated required software documentation + * Added a Gentoo installation paragraph + * Updated needed depnedencies + +2010-02-18 Andrew McMillan + * Add better localisation support to principal / collection edit screens. + * Default user to davical_dba & provide more help regarding .pgpass files. + * Remove reference to relationships, which are so passe now. + * Admin: support deleting principals / collections with confirmation. + * dav_principal: add a rule for deleting. + * admin: Support setting a principal to be 'Administrator' + * AwlDB: Attempt some better error handling. + +2010-02-17 Andrew McMillan + * PROPPATCH: Setting properties on Principals now working. + * always: Initialise the AWL db connection. + * PUT Functions: add support for X-WR-CALNAME in uploaded calendars. + * Edit Collections: Fix privileges to do this, and editing of privs. + +2010-02-15 Andrew McMillan + * A new RepeatRule object to be used for expanding events. + +2010-02-13 Andrew McMillan + * Include the browse javascript for row linking. + * Make admin stuff work better in a subfolder. + * Correct URLs for subfolder operation in principal edit. + * Remove flush() calls from pubsub. + +2010-02-11 Peter Schaefer-Hutter + * Updated german translation. + 2010-02-03 Andrew McMillan * Release 0.9.8.1 * Update the sync changes for deletion of a calendar. diff --git a/VERSION b/VERSION index b5343984..3e4f2192 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.9.8.1 +0.9.8.2 diff --git a/debian/changelog b/debian/changelog index e8ed5186..bc4f9570 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +davical (0.9.8.2-0) unstable; urgency=low + + * New upstream release + + -- Andrew McMillan Tue, 23 Feb 2010 23:17:50 +1300 + davical (0.9.8.1-0) unstable; urgency=low * New upstream release diff --git a/inc/always.php b/inc/always.php index e2d6aed8..682b402e 100644 --- a/inc/always.php +++ b/inc/always.php @@ -131,7 +131,7 @@ awl_set_locale($c->default_locale); * */ $c->code_version = 0; -$c->version_string = '0.9.8.1'; // The actual version # is replaced into that during the build /release process +$c->version_string = '0.9.8.2'; // The actual version # is replaced into that during the build /release process if ( isset($c->version_string) && preg_match( '/(\d+)\.(\d+)\.(\d+)(.*)/', $c->version_string, $matches) ) { $c->code_major = $matches[1]; $c->code_minor = $matches[2];