mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-11-28 02:20:41 +00:00
started new version 5.1.6
This commit is contained in:
parent
a7b0a6e000
commit
5ee7110597
|
|
@ -1,3 +1,7 @@
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
Changes in version 5.1.6
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 5.1.5
|
Changes in version 5.1.5
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION=5.1.5
|
VERSION=5.1.6
|
||||||
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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -371,7 +371,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 = '5.1.5';
|
$this->version = '5.1.6';
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -12,11 +12,11 @@
|
||||||
<email>uwe@steinmann.cx</email>
|
<email>uwe@steinmann.cx</email>
|
||||||
<active>yes</active>
|
<active>yes</active>
|
||||||
</lead>
|
</lead>
|
||||||
<date>2017-11-07</date>
|
<date>2018-01-07</date>
|
||||||
<time>09:19:24</time>
|
<time>09:19:24</time>
|
||||||
<version>
|
<version>
|
||||||
<release>5.1.5</release>
|
<release>5.1.6</release>
|
||||||
<api>5.1.5</api>
|
<api>5.1.6</api>
|
||||||
</version>
|
</version>
|
||||||
<stability>
|
<stability>
|
||||||
<release>stable</release>
|
<release>stable</release>
|
||||||
|
|
@ -24,18 +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>
|
||||||
- use views instead of temp. tables
|
|
||||||
- add list of expired documents in SeedDMS_Core_DMS::getDocumentList()
|
|
||||||
- add methods to set comment, name, public, version of document files
|
|
||||||
- add method SeedDMS_Core_Document::transferToUser()
|
|
||||||
- SeedDMS_Core_Document::addDocumentFile() returns object of file
|
|
||||||
- add SeedDMS_Core_DocumentFile::setDate()
|
|
||||||
- remove SeedDMS_Core_DocumentCategory::addCategory() and getCategories()
|
|
||||||
- add optional parameters $limit and $offset to SeedDMS_Core_Folder::getDocuments()
|
|
||||||
and SeedDMS_Core_Folder::getSubFolders()
|
|
||||||
- getInstance() returns now null instead of false if the object was not found in the db
|
|
||||||
- add new methods SeedDMS_Core_Document::addCategories() and
|
|
||||||
SeedDMS_Core_Document::removeCategories()
|
|
||||||
</notes>
|
</notes>
|
||||||
<contents>
|
<contents>
|
||||||
<dir baseinstalldir="SeedDMS" name="/">
|
<dir baseinstalldir="SeedDMS" name="/">
|
||||||
|
|
@ -1545,5 +1533,32 @@ returns just users which are not disabled
|
||||||
- all changes from 5.0.14 merged
|
- all changes from 5.0.14 merged
|
||||||
</notes>
|
</notes>
|
||||||
</release>
|
</release>
|
||||||
|
<release>
|
||||||
|
<date>2017-11-07</date>
|
||||||
|
<time>09:19:24</time>
|
||||||
|
<version>
|
||||||
|
<release>5.1.5</release>
|
||||||
|
<api>5.1.5</api>
|
||||||
|
</version>
|
||||||
|
<stability>
|
||||||
|
<release>stable</release>
|
||||||
|
<api>stable</api>
|
||||||
|
</stability>
|
||||||
|
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||||
|
<notes>
|
||||||
|
- use views instead of temp. tables
|
||||||
|
- add list of expired documents in SeedDMS_Core_DMS::getDocumentList()
|
||||||
|
- add methods to set comment, name, public, version of document files
|
||||||
|
- add method SeedDMS_Core_Document::transferToUser()
|
||||||
|
- SeedDMS_Core_Document::addDocumentFile() returns object of file
|
||||||
|
- add SeedDMS_Core_DocumentFile::setDate()
|
||||||
|
- remove SeedDMS_Core_DocumentCategory::addCategory() and getCategories()
|
||||||
|
- add optional parameters $limit and $offset to SeedDMS_Core_Folder::getDocuments()
|
||||||
|
and SeedDMS_Core_Folder::getSubFolders()
|
||||||
|
- getInstance() returns now null instead of false if the object was not found in the db
|
||||||
|
- add new methods SeedDMS_Core_Document::addCategories() and
|
||||||
|
SeedDMS_Core_Document::removeCategories()
|
||||||
|
</notes>
|
||||||
|
</release>
|
||||||
</changelog>
|
</changelog>
|
||||||
</package>
|
</package>
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
class SeedDMS_Version {
|
class SeedDMS_Version {
|
||||||
|
|
||||||
public $_number = "5.1.5";
|
public $_number = "5.1.6";
|
||||||
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", "5.1.5");
|
define("SEEDDMS_VERSION", "5.1.6");
|
||||||
|
|
||||||
require_once('../inc/inc.ClassSettings.php');
|
require_once('../inc/inc.ClassSettings.php');
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user