start new version 5.1.20

This commit is contained in:
Uwe Steinmann 2020-09-03 14:17:23 +02:00
parent e13ca87843
commit fef827a7db
4 changed files with 30 additions and 10 deletions

View File

@ -1,3 +1,8 @@
--------------------------------------------------------------------------------
Changes in version 5.1.20
--------------------------------------------------------------------------------
- fix import of users
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
Changes in version 5.1.19 Changes in version 5.1.19
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -396,7 +396,7 @@ class SeedDMS_Core_DMS {
$this->lasterror = ''; $this->lasterror = '';
$this->version = '@package_version@'; $this->version = '@package_version@';
if($this->version[0] == '@') if($this->version[0] == '@')
$this->version = '5.1.19'; $this->version = '5.1.20';
} /* }}} */ } /* }}} */
/** /**

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>2020-07-28</date> <date>2020-09-04</date>
<time>09:43:12</time> <time>09:43:12</time>
<version> <version>
<release>5.1.19</release> <release>5.1.20</release>
<api>5.1.19</api> <api>5.1.20</api>
</version> </version>
<stability> <stability>
<release>stable</release> <release>stable</release>
@ -24,11 +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>
- add method SeedDMS_Core_Document::setParent() as an alias for setFolder()
- clear the save content list and latest content in SeedDMS_Core_Document after
a version has been deleted.
- new method SeedDMS_Core_Document::isLatestVersion()
- add new attribute types 'document', 'folder', 'user', 'group'
</notes> </notes>
<contents> <contents>
<dir baseinstalldir="SeedDMS" name="/"> <dir baseinstalldir="SeedDMS" name="/">
@ -1803,5 +1798,25 @@ add method SeedDMS_Core_DatabaseAccess::setLogFp()
- fix SeedDMS_Core_DMS::getDocumentByOriginalFilename() - fix SeedDMS_Core_DMS::getDocumentByOriginalFilename()
</notes> </notes>
</release> </release>
<release>
<date>2020-07-28</date>
<time>09:43:12</time>
<version>
<release>5.1.19</release>
<api>5.1.19</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
<notes>
- add method SeedDMS_Core_Document::setParent() as an alias for setFolder()
- clear the save content list and latest content in SeedDMS_Core_Document after
a version has been deleted.
- new method SeedDMS_Core_Document::isLatestVersion()
- add new attribute types 'document', 'folder', 'user', 'group'
</notes>
</release>
</changelog> </changelog>
</package> </package>

View File

@ -20,7 +20,7 @@
class SeedDMS_Version { /* {{{ */ class SeedDMS_Version { /* {{{ */
const _number = "5.1.19"; const _number = "5.1.20";
const _string = "SeedDMS"; const _string = "SeedDMS";
function __construct() { function __construct() {