v1.6.2 released

This commit is contained in:
Karel Pičman 2018-12-04 16:11:27 +01:00
parent 0c0dffc1e3
commit ffb089a15b
5 changed files with 58 additions and 8 deletions

View File

@ -1,9 +1,37 @@
Changelog for Redmine DMSF 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* 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`. 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. 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 * 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: #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 * Bug: #830 - ActiveRecord::StatementInvalid: Mysql2::Error: Table 'dmsf_file_revisions' doesn't exist

View File

@ -1,7 +1,7 @@
Redmine DMSF Plugin 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. 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. 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. Initial development was for Kontron AG R&D department and it is released as open source thanks to their generosity.
Project home: <http://code.google.com/p/redmine-dmsf/> Project home: <https://code.google.com/p/redmine-dmsf/>
Redmine Document Management System "Features" plugin is distributed under GNU General Public License v2 (GPL). 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 <http://www.redmine.org/> Redmine is a flexible project management web application, released under the terms of the GNU General Public License v2 (GPL) at <https://www.redmine.org/>
Further information about the GPL license can be found at Further information about the GPL license can be found at
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC1> <https://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC1>
Features Features
-------- --------

View File

@ -1,3 +1,25 @@
# encoding: utf-8
#
# Redmine plugin for Document Management System "Features"
#
# Copyright © 2011 Vít Jonáš <vit.jonas@gmail.com>
# Copyright © 2012 Daniel Munn <dan.munn@munnster.co.uk>
# Copyright © 2011-18 Karel Pičman <karel.picman@kontron.com>
#
# 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 'zip'
require_dependency File.dirname(__FILE__) + '/lib/redmine_dmsf.rb' require_dependency File.dirname(__FILE__) + '/lib/redmine_dmsf.rb'

Binary file not shown.

View File

@ -27,12 +27,12 @@ Redmine::Plugin.register :redmine_dmsf do
author_url 'https://www.easyredmine.com' author_url 'https://www.easyredmine.com'
else else
name 'DMSF' 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' author_url 'https://github.com/danmunn/redmine_dmsf/graphs/contributors'
end end
author 'Vít Jonáš / Daniel Munn / Karel Pičman' author 'Vít Jonáš / Daniel Munn / Karel Pičman'
description 'Document Management System Features' description 'Document Management System Features'
version '1.6.2 devel' version '1.6.2'
requires_redmine version_or_higher: '3.4.0' requires_redmine version_or_higher: '3.4.0'