mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-10-17 22:41:00 +00:00
start new version 6.0.1
This commit is contained in:
parent
470e946ec2
commit
c18f09d344
|
@ -1,3 +1,7 @@
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
Changes in version 6.0.1
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 6.0.0
|
Changes in version 6.0.0
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -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
|
SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc styles TODO LICENSE webdav install restapi pdfviewer
|
||||||
# webapp
|
# webapp
|
||||||
|
|
||||||
|
|
|
@ -442,7 +442,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 = '6.0.0';
|
$this->version = '6.0.1';
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1389,5 +1389,33 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
|
||||||
- added postgres support
|
- added postgres support
|
||||||
</notes>
|
</notes>
|
||||||
</release>
|
</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>
|
</changelog>
|
||||||
</package>
|
</package>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
class SeedDMS_Version {
|
class SeedDMS_Version {
|
||||||
|
|
||||||
public $_number = "6.0.0";
|
public $_number = "6.0.1";
|
||||||
private $_string = "SeedDMS";
|
private $_string = "SeedDMS";
|
||||||
|
|
||||||
function __construct() {
|
function __construct() {
|
||||||
|
|
|
@ -123,7 +123,7 @@ function fileExistsInIncludePath($file) { /* {{{ */
|
||||||
* Load default settings + set
|
* Load default settings + set
|
||||||
*/
|
*/
|
||||||
define("SEEDDMS_INSTALL", "on");
|
define("SEEDDMS_INSTALL", "on");
|
||||||
define("SEEDDMS_VERSION", "6.0.0");
|
define("SEEDDMS_VERSION", "6.0.1");
|
||||||
|
|
||||||
require_once('../inc/inc.ClassSettings.php');
|
require_once('../inc/inc.ClassSettings.php');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user