diff --git a/Makefile b/Makefile index 5e89f1b9f..41eb8fcec 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=5.1.9 +VERSION=5.1.10 SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc styles TODO LICENSE webdav install restapi pdfviewer # webapp diff --git a/SeedDMS_Core/Core/inc.ClassDMS.php b/SeedDMS_Core/Core/inc.ClassDMS.php index cd25d5d4f..d42bfe9b6 100644 --- a/SeedDMS_Core/Core/inc.ClassDMS.php +++ b/SeedDMS_Core/Core/inc.ClassDMS.php @@ -376,7 +376,7 @@ class SeedDMS_Core_DMS { $this->callbacks = array(); $this->version = '@package_version@'; if($this->version[0] == '@') - $this->version = '5.1.9'; + $this->version = '5.1.10'; } /* }}} */ /** diff --git a/SeedDMS_Core/package.xml b/SeedDMS_Core/package.xml index cbbeed696..c3fa48658 100644 --- a/SeedDMS_Core/package.xml +++ b/SeedDMS_Core/package.xml @@ -1618,5 +1618,24 @@ SeedDMS_Core_Document::getNotifyList() has new parameter to include disabled use fix possible sql injection in SeedDMS_Core_User + + 2018-11-13 + + + 5.1.9 + 5.1.9 + + + stable + stable + + GPL License + +context can be passed to getAccessMode() +call hook in SeedDMS_Core_Folder::getAccessMode() +new optional parameter $listguest for SeedDMS_Core_Document::getReadAccessList() +remove deprecated methods SeedDMS_Core_Document::convert(), SeedDMS_Core_Document::wasConverted(), SeedDMS_Core_Document::viewOnline(), SeedDMS_Core_Document::getUrl() + + diff --git a/inc/inc.Version.php b/inc/inc.Version.php index 13abdbe01..f9240bab5 100644 --- a/inc/inc.Version.php +++ b/inc/inc.Version.php @@ -20,7 +20,7 @@ class SeedDMS_Version { - public $_number = "5.1.9"; + public $_number = "5.1.10"; private $_string = "SeedDMS"; function __construct() { diff --git a/install/install.php b/install/install.php index 126de3d44..0fbe19b80 100644 --- a/install/install.php +++ b/install/install.php @@ -123,7 +123,7 @@ function fileExistsInIncludePath($file) { /* {{{ */ * Load default settings + set */ define("SEEDDMS_INSTALL", "on"); -define("SEEDDMS_VERSION", "5.1.9"); +define("SEEDDMS_VERSION", "5.1.10"); require_once('../inc/inc.ClassSettings.php');