Skip to content

Commit

Permalink
v4.0.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
picman committed Dec 17, 2024
1 parent a86e1b6 commit 163d809
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rubyonrails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
name: "GitHub CI"
on:
push:
branches: ["devel"]
branches: ["master"]
pull_request:
branches: ["devel"]
branches: ["master"]
jobs:
plugin_tests:
strategy:
Expand Down
6 changes: 3 additions & 3 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Naming/AccessorMethodName:

Naming/PredicateName:
Exclude:
- lib/redmine_dmsf/patches/attachable_patch.rb # Easy tests
- patches/attachable_patch.rb # Easy tests

Style/HashSyntax:
EnforcedShorthandSyntax: either
Expand All @@ -111,8 +111,8 @@ Rails/SkipsModelValidations:
Exclude:
- app/helpers/dmsf_upload_helper.rb # touch is Okay
- app/models/dmsf_workflow.rb # update doesn't work here
- lib/redmine_dmsf/patches/user_patch.rb
- lib/redmine_dmsf/patches/role_patch.rb
- patches/user_patch.rb
- patches/role_patch.rb
- db/migrate/20170526144701_dmsf_attachable.rb
- db/migrate/20170421101901_dmsf_file_container_rollback.rb
- db/migrate/20170118142001_dmsf_file_container.rb
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
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*
------------------

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Redmine DMSF is Document Management System Features plugin for Redmine issue tracking system; It is aimed to replace current Redmine's Documents module.
Expand Down Expand Up @@ -38,11 +38,11 @@ Further information about the GPL license can be found at
* Editing of office documents
* REST API
* DMS Document revision as a custom field type
* Compatible with Redmine 5.0.x
* Compatible with Redmine 6

## Dependencies

* Redmine 5.0 or higher
* Redmine 6.0 or higher

### Full-text search (optional)

Expand Down
6 changes: 3 additions & 3 deletions init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author_url 'https://github.com/danmunn/redmine_dmsf/graphs/contributors'
author 'Vít Jonáš / Daniel Munn / Karel Pičman'
description 'Document Management System Features'
version '4.0.0 devel'
version '4.0.0'

requires_redmine version_or_higher: '6.0.0'

Expand All @@ -33,7 +33,7 @@
else
'0'
end
use_project_names = Redmine::Plugin.installed?('easy_extensions') ? '1' : '0'
use_project_names = defined?(EasyExtensions) ? '1' : '0'

settings partial: 'settings/dmsf_settings',
default: {
Expand Down Expand Up @@ -69,4 +69,4 @@
}
end

require_relative 'after_init' unless Redmine::Plugin.installed?('easy_extensions')
require_relative 'after_init' unless defined?(EasyExtensions)

0 comments on commit 163d809

Please sign in to comment.