v4.0.0 released

This commit is contained in:
Karel Pičman 2024-12-17 13:21:49 +01:00
parent a86e1b6c84
commit 163d809ce7
5 changed files with 26 additions and 13 deletions

View File

@ -21,9 +21,9 @@
name: "GitHub CI" name: "GitHub CI"
on: on:
push: push:
branches: ["devel"] branches: ["master"]
pull_request: pull_request:
branches: ["devel"] branches: ["master"]
jobs: jobs:
plugin_tests: plugin_tests:
strategy: strategy:

View File

@ -85,7 +85,7 @@ Naming/AccessorMethodName:
Naming/PredicateName: Naming/PredicateName:
Exclude: Exclude:
- lib/redmine_dmsf/patches/attachable_patch.rb # Easy tests - patches/attachable_patch.rb # Easy tests
Style/HashSyntax: Style/HashSyntax:
EnforcedShorthandSyntax: either EnforcedShorthandSyntax: either
@ -111,8 +111,8 @@ Rails/SkipsModelValidations:
Exclude: Exclude:
- app/helpers/dmsf_upload_helper.rb # touch is Okay - app/helpers/dmsf_upload_helper.rb # touch is Okay
- app/models/dmsf_workflow.rb # update doesn't work here - app/models/dmsf_workflow.rb # update doesn't work here
- lib/redmine_dmsf/patches/user_patch.rb - patches/user_patch.rb
- lib/redmine_dmsf/patches/role_patch.rb - patches/role_patch.rb
- db/migrate/20170526144701_dmsf_attachable.rb - db/migrate/20170526144701_dmsf_attachable.rb
- db/migrate/20170421101901_dmsf_file_container_rollback.rb - db/migrate/20170421101901_dmsf_file_container_rollback.rb
- db/migrate/20170118142001_dmsf_file_container.rb - db/migrate/20170118142001_dmsf_file_container.rb

View File

@ -1,9 +1,22 @@
Changelog for Redmine DMSF Changelog for Redmine DMSF
========================== ==========================
3.2.5 *???-??-??* 4.0.0 *2024-12-17*
------------------ ------------------
Redmine 6
* New: #1571 - Update de.yml
* Bug: #1570 - Emails are not sent to the author if no_self_notified
* Bug: #1568 - The "Link from" doesn't work after upgrading the browsers
* Bug: #1567 - Fixes Column 'dmsf_mail_notification' cannot be null
* Bug: #1566 - Approval workflow notifications
* Bug: #1565 - Plugin settings "Display notified recipients" does not apply!
* Bug: #1564 - Revision API issues
* New: #1563 - Redmine 6
* New: #1561 - Add a waring about max number of uploaded files exceeded
* Bug: #1560 - Can't add more than one link to an issue
3.2.4 *2024-10-24* 3.2.4 *2024-10-24*
------------------ ------------------

View File

@ -1,6 +1,6 @@
# Redmine DMSF Plugin 3.2.5 devel # Redmine DMSF Plugin 4.0.0
[![GitHub CI](https://github.com/danmunn/redmine_dmsf/actions/workflows/rubyonrails.yml/badge.svg?branch=devel)](https://github.com/danmunn/redmine_dmsf/actions/workflows/rubyonrails.yml) [![GitHub CI](https://github.com/danmunn/redmine_dmsf/actions/workflows/rubyonrails.yml/badge.svg?branch=master)](https://github.com/danmunn/redmine_dmsf/actions/workflows/rubyonrails.yml)
[![Support Ukraine Badge](https://bit.ly/support-ukraine-now)](https://github.com/support-ukraine/support-ukraine) [![Support Ukraine Badge](https://bit.ly/support-ukraine-now)](https://github.com/support-ukraine/support-ukraine)
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.
@ -38,11 +38,11 @@ Further information about the GPL license can be found at
* Editing of office documents * Editing of office documents
* REST API * REST API
* DMS Document revision as a custom field type * DMS Document revision as a custom field type
* Compatible with Redmine 5.0.x * Compatible with Redmine 6
## Dependencies ## Dependencies
* Redmine 5.0 or higher * Redmine 6.0 or higher
### Full-text search (optional) ### Full-text search (optional)

View File

@ -24,7 +24,7 @@ Redmine::Plugin.register :redmine_dmsf do
author_url 'https://github.com/danmunn/redmine_dmsf/graphs/contributors' author_url 'https://github.com/danmunn/redmine_dmsf/graphs/contributors'
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 '4.0.0 devel' version '4.0.0'
requires_redmine version_or_higher: '6.0.0' requires_redmine version_or_higher: '6.0.0'
@ -33,7 +33,7 @@ Redmine::Plugin.register :redmine_dmsf do
else else
'0' '0'
end end
use_project_names = Redmine::Plugin.installed?('easy_extensions') ? '1' : '0' use_project_names = defined?(EasyExtensions) ? '1' : '0'
settings partial: 'settings/dmsf_settings', settings partial: 'settings/dmsf_settings',
default: { default: {
@ -69,4 +69,4 @@ Redmine::Plugin.register :redmine_dmsf do
} }
end end
require_relative 'after_init' unless Redmine::Plugin.installed?('easy_extensions') require_relative 'after_init' unless defined?(EasyExtensions)