Skip to content

Commit

Permalink
Added Sync support.
Browse files Browse the repository at this point in the history
Fixes #517.
Fixes #474.
Fixes #518.
  • Loading branch information
evert committed Mar 30, 2016
1 parent ae72fcc commit 32b4298
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,14 @@
ChangeLog
=========

0.4.4 (2016-03-30)
------------------

* #517: Added the Sync plugin. Should speed things up and fix syncing bugs
with Em Client.
* Ships with sabre/dav 3.1.2


0.4.3 (2016-03-23)
------------------

Expand Down
2 changes: 1 addition & 1 deletion Core/Distrib.php
Expand Up @@ -24,5 +24,5 @@
# This copyright notice MUST APPEAR in all copies of the script!
#################################################################

define("BAIKAL_VERSION", "0.4.3");
define("BAIKAL_VERSION", "0.4.4");
define("BAIKAL_HOMEPAGE", "http://baikal-server.com");
3 changes: 3 additions & 0 deletions Core/Frameworks/Baikal/Core/Server.php
Expand Up @@ -162,6 +162,9 @@ protected function initServer() {
new \Sabre\DAV\PropertyStorage\Backend\PDO($this->pdo)
));

// WebDAV-Sync!
$this->server->addPlugin(new \Sabre\DAV\Sync\Plugin());

if ($this->enableCalDAV) {
$this->server->addPlugin(new \Sabre\CalDAV\Plugin());
$this->server->addPlugin(new \Sabre\CalDAV\ICSExportPlugin());
Expand Down

0 comments on commit 32b4298

Please sign in to comment.