start new version 4.3.37

This commit is contained in:
Uwe Steinmann 2017-09-05 09:27:55 +02:00
parent 64ed59acba
commit 45d0c2618f
6 changed files with 27 additions and 8 deletions

View File

@ -1,3 +1,7 @@
--------------------------------------------------------------------------------
Changes in version 4.3.37
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Changes in version 4.3.36
--------------------------------------------------------------------------------

View File

@ -1,4 +1,4 @@
VERSION=4.3.36
VERSION=4.3.37
SRC=CHANGELOG inc conf utils index.php languages views op out doc styles LICENSE webdav install restapi pdfviewer
# webapp

View File

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

View File

@ -12,11 +12,11 @@
<email>uwe@steinmann.cx</email>
<active>yes</active>
</lead>
<date>2017-03-22</date>
<date>2017-09-05</date>
<time>06:38:12</time>
<version>
<release>4.3.36</release>
<api>4.3.36</api>
<release>4.3.37</release>
<api>4.3.37</api>
</version>
<stability>
<release>stable</release>
@ -24,7 +24,6 @@
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
- fix sql statement for creating temp. tables (sqlite)
</notes>
<contents>
<dir baseinstalldir="SeedDMS" name="/">
@ -1157,5 +1156,21 @@ SeedDMS_Core_DMS::getDuplicateDocumentContent() returns complete document
do not sort some temporary tables anymore, because it causes an error in mysql if sql_mode=only_full_group_by is set
</notes>
</release>
<release>
<date>2017-03-22</date>
<time>06:38:12</time>
<version>
<release>4.3.36</release>
<api>4.3.36</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
- fix sql statement for creating temp. tables (sqlite)
</notes>
</release>
</changelog>
</package>

View File

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

View File

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