diff --git a/CHANGELOG.md b/CHANGELOG.md index 0806e112..a635aaa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,37 @@ Changelog for Redmine DMSF ========================== -1.6.2 *????-??-??* +1.6.2 *2018-12-04* ------------------ + REST API + doc/folder deletion + doc's title property added + creating links + limit & offset parameters added for pagination + Speed up + Fast links option + Folder edit's form + Approval workflow + Obsolete state added + +* Bug: #907 - label_webdav is duplicated in local files +* New: #887 - REST API 'Get document' : 'title' property is missing in response +* Bug: #885 - Open Remote in LibreOffice +* Bug: #881 - DMSF access for anonymous users +* New: #878 - Enlarge "Link To" form fields +* Bug: #867 - Attached documents remain by issues after they had been deleted in the main Document view +* Bug: #866 - A problem by attaching documents to issues +* New: #857 - Xapian not indexing repository if project configuration is blank +* New: #855 - Workflow notification missing +* New: #852 - Create symbolic link using REST API +* New: #850 - REST API and pagination on collection resources +* New: #847 - REST API and delete Folder/document type: enhancement +* New: #823 - Office URI Scheme for direct editing of MS Office files +* Bug: #818 - Xapian not available +* New: #803 - 'Create folder' takes a very long time +* New: #798 - Possibility of Obsolete an Approved Version of a Document + 1.6.1 *2018-04-03* ------------------ @@ -22,7 +50,7 @@ IMPORTANT 1. `alias_method_chain` has been replaced with `prepend`. Not directly but using `RedmineExtensions::PatchManager`. Consequently, there might occure conficts with plugins which overwrite the same methods. -* Bug: #839 - Webdav not working type: bug +* Bug: #839 - Webdav not working * New: #838 - Rake task for regenerating document's digests * Bug: #831 - ActionView::Template::Error, when i am creating issue from the list of all projects * Bug: #830 - ActiveRecord::StatementInvalid: Mysql2::Error: Table 'dmsf_file_revisions' doesn't exist diff --git a/README.md b/README.md index 86d901dd..b45d05de 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Redmine DMSF Plugin =================== -The current version of Redmine DMSF is **1.6.1** [![Build Status](https://api.travis-ci.org/danmunn/redmine_dmsf.png)](https://travis-ci.org/danmunn/redmine_dmsf) +The current version of Redmine DMSF is **1.6.2** [![Build Status](https://api.travis-ci.org/danmunn/redmine_dmsf.png)](https://travis-ci.org/danmunn/redmine_dmsf) Redmine DMSF is Document Management System Features plugin for Redmine issue tracking system; It is aimed to replace current Redmine's Documents module. @@ -10,13 +10,13 @@ Redmine DMSF now comes bundled with Webdav functionality: if switched on within Webdav functionality is provided through DAV4Rack library. Initial development was for Kontron AG R&D department and it is released as open source thanks to their generosity. -Project home: +Project home: Redmine Document Management System "Features" plugin is distributed under GNU General Public License v2 (GPL). -Redmine is a flexible project management web application, released under the terms of the GNU General Public License v2 (GPL) at +Redmine is a flexible project management web application, released under the terms of the GNU General Public License v2 (GPL) at Further information about the GPL license can be found at - + Features -------- diff --git a/after_init.rb b/after_init.rb index 3365d537..6114569a 100644 --- a/after_init.rb +++ b/after_init.rb @@ -1,3 +1,25 @@ +# encoding: utf-8 +# +# Redmine plugin for Document Management System "Features" +# +# Copyright © 2011 Vít Jonáš +# Copyright © 2012 Daniel Munn +# Copyright © 2011-18 Karel Pičman +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + require_dependency 'zip' require_dependency File.dirname(__FILE__) + '/lib/redmine_dmsf.rb' diff --git a/dmsf_user_guide.odt b/dmsf_user_guide.odt index 2c1023df..8a5553a6 100644 Binary files a/dmsf_user_guide.odt and b/dmsf_user_guide.odt differ diff --git a/init.rb b/init.rb index 62759b3c..fc069e5d 100644 --- a/init.rb +++ b/init.rb @@ -27,12 +27,12 @@ Redmine::Plugin.register :redmine_dmsf do author_url 'https://www.easyredmine.com' else name 'DMSF' - url 'http://www.redmine.org/plugins/dmsf' + url 'https://www.redmine.org/plugins/dmsf' author_url 'https://github.com/danmunn/redmine_dmsf/graphs/contributors' end author 'Vít Jonáš / Daniel Munn / Karel Pičman' description 'Document Management System Features' - version '1.6.2 devel' + version '1.6.2' requires_redmine version_or_higher: '3.4.0'