Nearly released.

This commit is contained in:
Andrew McMillan 2010-02-24 16:51:03 +13:00
parent 5e67f245fe
commit f63d6d082a
3 changed files with 14 additions and 2 deletions

View File

@ -1,4 +1,16 @@
2010-02-24 Andrew McMillan <andrew@morphoss.com>
* Release 0.9.8.3
* Apparently CentOS 5 doesn't have DateTime class in it's PHP :-(
* Allow active/inactive setting to edit principal.
* Add a menu link to list inactive principals.
* Fix the 'ALL' button action in grants update.
* Correct 'ALL' privilege to 24 bits.
* Move location of CSS submenus slightly.
* Don't display a grant/collection stuff until a user is created.
* Provide passthru on icons, images, css and js files.
2010-02-23 Andrew McMillan <andrew@morphoss.com>
* Release 0.9.8.2
* Include inactive support for RRULE expansion.
2010-02-23 Masahiro Mikami <ZBN15427@nifty.com>

2
debian/changelog vendored
View File

@ -2,7 +2,7 @@ davical (0.9.8.3-0) unstable; urgency=low
* New upstream release
-- Andrew McMillan <debian@mcmillan.net.nz> Wed, 24 Feb 2010 16:44:36 +1300
-- Andrew McMillan <debian@mcmillan.net.nz> Wed, 24 Feb 2010 16:46:34 +1300
davical (0.9.8.2-0) unstable; urgency=low

View File

@ -131,7 +131,7 @@ awl_set_locale($c->default_locale);
*
*/
$c->code_version = 0;
$c->version_string = '0.9.8.2'; // The actual version # is replaced into that during the build /release process
$c->version_string = '0.9.8.3'; // 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];