start new version 5.1.10

This commit is contained in:
Uwe Steinmann 2018-11-16 08:16:45 +01:00
parent 2d80dbce13
commit 53a742b082
5 changed files with 23 additions and 4 deletions

View File

@ -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 SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc styles TODO LICENSE webdav install restapi pdfviewer
# webapp # webapp

View File

@ -376,7 +376,7 @@ class SeedDMS_Core_DMS {
$this->callbacks = array(); $this->callbacks = array();
$this->version = '@package_version@'; $this->version = '@package_version@';
if($this->version[0] == '@') if($this->version[0] == '@')
$this->version = '5.1.9'; $this->version = '5.1.10';
} /* }}} */ } /* }}} */
/** /**

View File

@ -1618,5 +1618,24 @@ SeedDMS_Core_Document::getNotifyList() has new parameter to include disabled use
fix possible sql injection in SeedDMS_Core_User fix possible sql injection in SeedDMS_Core_User
</notes> </notes>
</release> </release>
<release>
<date>2018-11-13</date>
<time>07:31:17</time>
<version>
<release>5.1.9</release>
<api>5.1.9</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
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()
</notes>
</release>
</changelog> </changelog>
</package> </package>

View File

@ -20,7 +20,7 @@
class SeedDMS_Version { class SeedDMS_Version {
public $_number = "5.1.9"; public $_number = "5.1.10";
private $_string = "SeedDMS"; private $_string = "SeedDMS";
function __construct() { function __construct() {

View File

@ -123,7 +123,7 @@ function fileExistsInIncludePath($file) { /* {{{ */
* Load default settings + set * Load default settings + set
*/ */
define("SEEDDMS_INSTALL", "on"); define("SEEDDMS_INSTALL", "on");
define("SEEDDMS_VERSION", "5.1.9"); define("SEEDDMS_VERSION", "5.1.10");
require_once('../inc/inc.ClassSettings.php'); require_once('../inc/inc.ClassSettings.php');