start new version 5.0.4

This commit is contained in:
Uwe Steinmann 2016-05-03 06:44:50 +02:00
parent 129b725414
commit 9fb4dfaa9b
5 changed files with 24 additions and 9 deletions

View File

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

View File

@ -312,7 +312,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.3'; $this->version = '5.0.4';
} /* }}} */ } /* }}} */
/** /**

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-04-04</date> <date>2016-05-03</date>
<time>08:56:33</time> <time>08:56:33</time>
<version> <version>
<release>5.0.3</release> <release>5.0.4</release>
<api>5.0.3</api> <api>5.0.4</api>
</version> </version>
<stability> <stability>
<release>stable</release> <release>stable</release>
@ -24,8 +24,6 @@
</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>
- use classname from SeedDMS_Core_DMS::_classnames for SeedDMS_Core_DocumentContent
- all changes from 4.3.26 merged
</notes> </notes>
<contents> <contents>
<dir baseinstalldir="SeedDMS" name="/"> <dir baseinstalldir="SeedDMS" name="/">
@ -1074,5 +1072,22 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
- all changes from 4.3.25 merged - all changes from 4.3.25 merged
</notes> </notes>
</release> </release>
<release>
<date>2016-04-04</date>
<time>08:56:33</time>
<version>
<release>5.0.3</release>
<api>5.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
- use classname from SeedDMS_Core_DMS::_classnames for SeedDMS_Core_DocumentContent
- all changes from 4.3.26 merged
</notes>
</release>
</changelog> </changelog>
</package> </package>

View File

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