prepare for version 4.1.1

This commit is contained in:
Uwe Steinmann 2013-04-05 16:54:48 +02:00
parent d5bbc67588
commit 0ac6ff9a91
6 changed files with 30 additions and 9 deletions

View File

@ -1,3 +1,8 @@
--------------------------------------------------------------------------------
Changes in version 4.1.1
--------------------------------------------------------------------------------
- fixed update of folders (no more php error)
--------------------------------------------------------------------------------
Changes in version 4.1.0
--------------------------------------------------------------------------------

View File

@ -1,4 +1,4 @@
VERSION=4.1.0
VERSION=4.1.1
SRC=CHANGELOG inc conf utils index.php languages views op out README.md README.Notification README.Ubuntu drop-tables-innodb.sql styles js TODO LICENSE Makefile webdav install
#restapi webapp

View File

@ -225,7 +225,7 @@ class SeedDMS_Core_DMS {
$this->convertFileTypes = array();
$this->version = '@package_version@';
if($this->version[0] == '@')
$this->version = '4.1.0';
$this->version = '4.1.1';
} /* }}} */
function getDB() { /* {{{ */

View File

@ -12,11 +12,11 @@
<email>uwe@steinmann.cx</email>
<active>yes</active>
</lead>
<date>2013-03-28</date>
<time>13:39:21</time>
<date>2013-04-05</date>
<time>16:08:38</time>
<version>
<release>4.1.0</release>
<api>4.1.0</api>
<release>4.1.1</release>
<api>4.1.1</api>
</version>
<stability>
<release>beta</release>
@ -24,7 +24,7 @@
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
- minor bugfixes
- stay in sync with seeddms application
</notes>
<contents>
<dir baseinstalldir="SeedDMS" name="/">
@ -430,6 +430,22 @@ New release
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
- minor bugfixes
</notes>
</release>
<release>
<date>2013-03-28</date>
<time>13:39:21</time>
<version>
<release>4.1.0</release>
<api>4.1.0</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
- minor bugfixes
</notes>
</release>

View File

@ -20,7 +20,7 @@
class SeedDMS_Version {
var $_number = "4.0.0";
var $_number = "4.1.1";
var $_string = "SeedDMS";
function SeedDMS_Version() {

View File

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