new version 5.0.9

This commit is contained in:
Uwe Steinmann 2017-01-12 21:05:15 +01:00
parent 25f23544d2
commit deceea4494
5 changed files with 22 additions and 6 deletions

View File

@ -1,4 +1,4 @@
VERSION=5.0.8 VERSION=5.0.9
SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc drop-tables-innodb.sql styles TODO LICENSE Makefile webdav install restapi pdfviewer SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc drop-tables-innodb.sql styles TODO LICENSE Makefile webdav install restapi pdfviewer
# webapp # webapp

View File

@ -328,7 +328,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.0.8'; $this->version = '5.0.9';
} /* }}} */ } /* }}} */
/** /**

View File

@ -15,8 +15,8 @@
<date>2016-11-02</date> <date>2016-11-02</date>
<time>06:23:34</time> <time>06:23:34</time>
<version> <version>
<release>5.0.8</release> <release>5.0.9</release>
<api>5.0.8</api> <api>5.0.9</api>
</version> </version>
<stability> <stability>
<release>stable</release> <release>stable</release>
@ -1259,5 +1259,21 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
- better attribute value checking - better attribute value checking
</notes> </notes>
</release> </release>
<release>
<date>2016-11-02</date>
<time>06:23:34</time>
<version>
<release>5.0.8</release>
<api>5.0.8</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
- all changes from 4.3.31 merged
</notes>
</release>
</changelog> </changelog>
</package> </package>

View File

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

View File

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