start new version 6.0.1

This commit is contained in:
Uwe Steinmann 2017-03-23 15:22:55 +01:00
parent 470e946ec2
commit c18f09d344
6 changed files with 36 additions and 4 deletions

View File

@ -1,3 +1,7 @@
--------------------------------------------------------------------------------
Changes in version 6.0.1
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Changes in version 6.0.0
--------------------------------------------------------------------------------

View File

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

View File

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

View File

@ -1389,5 +1389,33 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
- added postgres support
</notes>
</release>
<release>
<date>2017-02-28</date>
<time>06:34:50</time>
<version>
<release>6.0.0</release>
<api>6.0.0</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 5.1.1 merged
- SeedDMS_Core_User::getReceiptStatus() and SeedDMS_Core_User::getReviewStatus()
only return entries of the latest document version if not specific document and
version is passed
- temp. table for revisions can be created
- new methods SeedDMS_Core_DMS::getDocumentsInReception() and
SeedDMS_Core_DMS::getDocumentsInRevision()
- limit hits of sql statement in SeedDMЅ_Core_DMS::getDuplicateDocumentContent() to 1000
- finishRevsion() puts all revisors into state waiting, so a new revision can be started
- fix SeedDMS_Core_Group::getRevisionStatus(), which did not always return the last
log entry first
- add roles
- use classname from SeedDMS_Core_DMS::_classnames for SeedDMS_Core_DocumentContent
</notes>
</release>
</changelog>
</package>

View File

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

View File

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