Note
This version has a bug that will make Database upgrade to fail if you have AgenDAV configured to use a language other than English. Please, set default_language to en before running agendav dbupdate
This release requires no database changes. Contains a fix for localization support for IE7, and lots of aesthetical changes, besides upgraded libraries (jQuery 1.7.1, qTip2 and iCalcreator). Session cookies are now smaller and contain only session identifiers.
- caldav_principal_url will be used to generate principal URLs
- caldav_calendar_url will be used to generate calendar and resource URLs
This release fixes some bugs with am/pm indicators under some circumstances, editing recurring events, include_path problems and other bugs.
It also introduces dynamic text color calculation and new default calendar colors, so it’s recommended to remove the following settings from config.php:
Copy calendar_colors definition from config.php.template to your config.php
This release requires no database upgrades.
This release fixes important issues with recurrent events. It also fixes the am/pm indicator on times.
It requires no database upgrades.
This release mainly fixes issues with timezone differences and Daylight Save Time problems.
Also updates iCalcreator library to latest version (2.10.15) and qTip2.
It requires no database upgrades.
DB schema needs to be altered. UTF8 wasn’t being used by default, and sessions table wasn’t using InnoDB. Apply the changes on sql/changes/1.1.1_to_1.2.mysql, which are the following:
ALTER DATABASE agendav CHARACTER SET utf8 COLLATE utf8_general_ci;
ALTER TABLE sessions CONVERT TO CHARACTER SET utf8;
ALTER TABLE sessions ENGINE InnoDB;
ALTER TABLE shared CONVERT TO CHARACTER SET utf8;
Main configuration file (config.php) has been completely rewritten to make it easier to write. Please, use the provided config.php.template as the base for a new config.php
Interface translation and timezone configuration is now possible in AgenDAV. Please, make sure you set correct values on config.php
AgenDAV has lots of corrections and fixes. See the CHANGELOG
Fix DB schema. Wasn’t properlty updated on sql/schema.sql, which caused a problem with sessions
To correct this issue without completely recreating your current database, run the following two queries:
CREATE INDEX last_activity_idx ON sessions(last_activity);
ALTER TABLE sessions MODIFY user_agent VARCHAR(120);
Remove LDAP dependency. AgenDAV now authenticates against CalDAV server.
Before this change, AgenDAV authenticated users at first using LDAP, and then your CalDAV server had to authenticate them again. With this change, AgenDAV completely relies on your CalDAV server.