new version 5.1.0

This commit is contained in:
Uwe Steinmann 2017-02-20 08:55:29 +01:00
parent 5921b1e731
commit 534e93d7d9
5 changed files with 24 additions and 8 deletions

View File

@ -1,4 +1,4 @@
VERSION=5.0.9 VERSION=5.1.0
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

@ -344,7 +344,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.9'; $this->version = '5.1.0';
} /* }}} */ } /* }}} */
/** /**

View File

@ -12,11 +12,11 @@
<email>uwe@steinmann.cx</email> <email>uwe@steinmann.cx</email>
<active>yes</active> <active>yes</active>
</lead> </lead>
<date>2016-11-02</date> <date>2017-02-20</date>
<time>06:23:34</time> <time>06:23:34</time>
<version> <version>
<release>5.0.9</release> <release>5.1.0</release>
<api>5.0.9</api> <api>5.1.0</api>
</version> </version>
<stability> <stability>
<release>stable</release> <release>stable</release>
@ -24,7 +24,7 @@
</stability> </stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license> <license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes> <notes>
- all changes from 4.3.32 merged - added postgres support
</notes> </notes>
<contents> <contents>
<dir baseinstalldir="SeedDMS" name="/"> <dir baseinstalldir="SeedDMS" name="/">
@ -1277,5 +1277,21 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
- all changes from 4.3.31 merged - all changes from 4.3.31 merged
</notes> </notes>
</release> </release>
<release>
<date>2016-11-02</date>
<time>06:23:34</time>
<version>
<release>5.0.9</release>
<api>5.0.9</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.32 merged
</notes>
</release>
</changelog> </changelog>
</package> </package>

View File

@ -20,7 +20,7 @@
class SeedDMS_Version { class SeedDMS_Version {
public $_number = "5.0.9"; public $_number = "5.1.0";
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.9"); define("SEEDDMS_VERSION", "5.1.0");
require_once('../inc/inc.ClassSettings.php'); require_once('../inc/inc.ClassSettings.php');