From e20aadd35e1510d90856cd222707c6e7255a3722 Mon Sep 17 00:00:00 2001 From: "karel.picman@lbcfree.net" Date: Wed, 10 Feb 2021 17:00:28 +0100 Subject: [PATCH] Copyright 2020 -> 2021 --- .travis.yml | 2 +- Gemfile | 2 +- after_init.rb | 2 +- app/controllers/custom_workflows_controller.rb | 2 +- app/models/custom_workflow.rb | 2 +- app/models/custom_workflow_mailer.rb | 2 +- app/views/custom_workflow_mailer/custom_email.html.erb | 2 +- app/views/custom_workflow_mailer/custom_email.text.erb | 2 +- app/views/custom_workflows/_form.html.erb | 2 +- app/views/custom_workflows/edit.html.erb | 2 +- app/views/custom_workflows/index.html.erb | 2 +- app/views/custom_workflows/new.html.erb | 2 +- app/views/projects/settings/_custom_workflow.html.erb | 2 +- assets/stylesheets/custom_workflows.css | 2 +- config/locales/cs.yml | 2 +- config/locales/en.yml | 2 +- config/locales/pt-BR.yml | 2 +- config/locales/ru.yml | 2 +- config/routes.rb | 2 +- db/migrate/20110915084858_create_custom_workflows.rb | 2 +- db/migrate/20120601054047_alter_custom_workflows.rb | 2 +- db/migrate/20120601054557_create_custom_workflows_projects.rb | 2 +- .../20120628060102_change_custom_workflows_description_type.rb | 2 +- db/migrate/20120908085222_add_after_save_to_custom_workflows.rb | 2 +- db/migrate/20121005085252_add_is_for_all_to_custom_workflows.rb | 2 +- .../20150522134436_make_after_save_and_before_save_nullable.rb | 2 +- db/migrate/20150522134437_set_position_field_nullable.rb | 2 +- ...50525083345_add_author_and_timestamps_to_custom_workflows.rb | 2 +- db/migrate/20150526132244_create_example_workflow.rb | 2 +- .../20150526134840_add_active_field_to_custom_workflows.rb | 2 +- .../20150619135811_add_observable_field_to_custom_workflows.rb | 2 +- ...19162054_add_additional_script_fields_to_custom_workflows.rb | 2 +- ...22120000_add_before_and_after_destroy_to_custom_workflows.rb | 2 +- init.rb | 2 +- lib/redmine_custom_workflows.rb | 2 +- lib/redmine_custom_workflows/errors/workflow_error.rb | 2 +- lib/redmine_custom_workflows/hooks/hooks.rb | 2 +- lib/redmine_custom_workflows/patches/attachment_patch.rb | 2 +- lib/redmine_custom_workflows/patches/group_patch.rb | 2 +- lib/redmine_custom_workflows/patches/issue_patch.rb | 2 +- lib/redmine_custom_workflows/patches/issue_relation_patch.rb | 2 +- lib/redmine_custom_workflows/patches/mailer_patch.rb | 2 +- lib/redmine_custom_workflows/patches/project_patch.rb | 2 +- lib/redmine_custom_workflows/patches/projects_helper_patch.rb | 2 +- lib/redmine_custom_workflows/patches/time_entry_patch.rb | 2 +- lib/redmine_custom_workflows/patches/user_patch.rb | 2 +- lib/redmine_custom_workflows/patches/version_patch.rb | 2 +- lib/redmine_custom_workflows/patches/wiki_content_patch.rb | 2 +- lib/redmine_custom_workflows/patches/wiki_page_patch.rb | 2 +- lib/redmine_custom_workflows/test/test_case.rb | 2 +- lib/redmine_custom_workflows/test/unit_test.rb | 2 +- test/ci/redmine_install.sh | 2 +- test/functional/custom_workflows_controller_test.rb | 2 +- test/test_helper.rb | 2 +- test/unit/custom_workflow_mailer_test.rb | 2 +- test/unit/custom_workflow_test.rb | 2 +- test/unit_test.rb | 2 +- 57 files changed, 57 insertions(+), 57 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7ee9e10..0bf6884 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/Gemfile b/Gemfile index b8d15a3..03396fb 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/after_init.rb b/after_init.rb index 30d36dc..397868c 100644 --- a/after_init.rb +++ b/after_init.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/app/controllers/custom_workflows_controller.rb b/app/controllers/custom_workflows_controller.rb index 7095b5a..11ac210 100644 --- a/app/controllers/custom_workflows_controller.rb +++ b/app/controllers/custom_workflows_controller.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/app/models/custom_workflow.rb b/app/models/custom_workflow.rb index 82facb2..8ea56e3 100644 --- a/app/models/custom_workflow.rb +++ b/app/models/custom_workflow.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/app/models/custom_workflow_mailer.rb b/app/models/custom_workflow_mailer.rb index 81ac63e..d1a884e 100644 --- a/app/models/custom_workflow_mailer.rb +++ b/app/models/custom_workflow_mailer.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/app/views/custom_workflow_mailer/custom_email.html.erb b/app/views/custom_workflow_mailer/custom_email.html.erb index ffe3c7d..459a188 100644 --- a/app/views/custom_workflow_mailer/custom_email.html.erb +++ b/app/views/custom_workflow_mailer/custom_email.html.erb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov - # Copyright © 2019-20 Karel Pičman + # Copyright © 2019-21 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 diff --git a/app/views/custom_workflow_mailer/custom_email.text.erb b/app/views/custom_workflow_mailer/custom_email.text.erb index 7dc53e5..309abba 100644 --- a/app/views/custom_workflow_mailer/custom_email.text.erb +++ b/app/views/custom_workflow_mailer/custom_email.text.erb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov - # Copyright © 2019-20 Karel Pičman + # Copyright © 2019-21 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 diff --git a/app/views/custom_workflows/_form.html.erb b/app/views/custom_workflows/_form.html.erb index 3789d1e..2e1e2a7 100644 --- a/app/views/custom_workflows/_form.html.erb +++ b/app/views/custom_workflows/_form.html.erb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov - # Copyright © 2019-20 Karel Pičman + # Copyright © 2019-21 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 diff --git a/app/views/custom_workflows/edit.html.erb b/app/views/custom_workflows/edit.html.erb index 91df0a7..9253c2e 100644 --- a/app/views/custom_workflows/edit.html.erb +++ b/app/views/custom_workflows/edit.html.erb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov - # Copyright © 2019-20 Karel Pičman + # Copyright © 2019-21 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 diff --git a/app/views/custom_workflows/index.html.erb b/app/views/custom_workflows/index.html.erb index f03aa4e..4dfc8e3 100644 --- a/app/views/custom_workflows/index.html.erb +++ b/app/views/custom_workflows/index.html.erb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov - # Copyright © 2019-20 Karel Pičman + # Copyright © 2019-21 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 diff --git a/app/views/custom_workflows/new.html.erb b/app/views/custom_workflows/new.html.erb index 3e2ed66..540e31f 100644 --- a/app/views/custom_workflows/new.html.erb +++ b/app/views/custom_workflows/new.html.erb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov - # Copyright © 2019-20 Karel Pičman + # Copyright © 2019-21 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 diff --git a/app/views/projects/settings/_custom_workflow.html.erb b/app/views/projects/settings/_custom_workflow.html.erb index 50d5c53..605bc60 100644 --- a/app/views/projects/settings/_custom_workflow.html.erb +++ b/app/views/projects/settings/_custom_workflow.html.erb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov - # Copyright © 2019-20 Karel Pičman + # Copyright © 2019-21 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 diff --git a/assets/stylesheets/custom_workflows.css b/assets/stylesheets/custom_workflows.css index e8943c0..fedf3fa 100644 --- a/assets/stylesheets/custom_workflows.css +++ b/assets/stylesheets/custom_workflows.css @@ -2,7 +2,7 @@ * Redmine plugin for Document Management System "Features" * * Copyright © 2015-19 Anton Argirov -* Copyright © 2019-20 Karel Pičman +* Copyright © 2019-21 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 diff --git a/config/locales/cs.yml b/config/locales/cs.yml index a8c8aae..f49371a 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/config/locales/en.yml b/config/locales/en.yml index 4fd7651..77143ad 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/config/locales/pt-BR.yml b/config/locales/pt-BR.yml index 8eb7e10..fbae585 100644 --- a/config/locales/pt-BR.yml +++ b/config/locales/pt-BR.yml @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/config/locales/ru.yml b/config/locales/ru.yml index eb5af76..b1e88c0 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/config/routes.rb b/config/routes.rb index 77b685a..76f4e0f 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20110915084858_create_custom_workflows.rb b/db/migrate/20110915084858_create_custom_workflows.rb index 4fd3d23..5b7cd1c 100644 --- a/db/migrate/20110915084858_create_custom_workflows.rb +++ b/db/migrate/20110915084858_create_custom_workflows.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20120601054047_alter_custom_workflows.rb b/db/migrate/20120601054047_alter_custom_workflows.rb index 708af32..7a9b5bc 100644 --- a/db/migrate/20120601054047_alter_custom_workflows.rb +++ b/db/migrate/20120601054047_alter_custom_workflows.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20120601054557_create_custom_workflows_projects.rb b/db/migrate/20120601054557_create_custom_workflows_projects.rb index 9683dcf..c80cab5 100644 --- a/db/migrate/20120601054557_create_custom_workflows_projects.rb +++ b/db/migrate/20120601054557_create_custom_workflows_projects.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20120628060102_change_custom_workflows_description_type.rb b/db/migrate/20120628060102_change_custom_workflows_description_type.rb index 949eefb..230d5f2 100644 --- a/db/migrate/20120628060102_change_custom_workflows_description_type.rb +++ b/db/migrate/20120628060102_change_custom_workflows_description_type.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20120908085222_add_after_save_to_custom_workflows.rb b/db/migrate/20120908085222_add_after_save_to_custom_workflows.rb index fa8ecd9..dc62921 100644 --- a/db/migrate/20120908085222_add_after_save_to_custom_workflows.rb +++ b/db/migrate/20120908085222_add_after_save_to_custom_workflows.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20121005085252_add_is_for_all_to_custom_workflows.rb b/db/migrate/20121005085252_add_is_for_all_to_custom_workflows.rb index fee6ef6..de213dc 100644 --- a/db/migrate/20121005085252_add_is_for_all_to_custom_workflows.rb +++ b/db/migrate/20121005085252_add_is_for_all_to_custom_workflows.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20150522134436_make_after_save_and_before_save_nullable.rb b/db/migrate/20150522134436_make_after_save_and_before_save_nullable.rb index 27408be..99980f7 100644 --- a/db/migrate/20150522134436_make_after_save_and_before_save_nullable.rb +++ b/db/migrate/20150522134436_make_after_save_and_before_save_nullable.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20150522134437_set_position_field_nullable.rb b/db/migrate/20150522134437_set_position_field_nullable.rb index 61efaa2..aa94fb8 100644 --- a/db/migrate/20150522134437_set_position_field_nullable.rb +++ b/db/migrate/20150522134437_set_position_field_nullable.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20150525083345_add_author_and_timestamps_to_custom_workflows.rb b/db/migrate/20150525083345_add_author_and_timestamps_to_custom_workflows.rb index 055b886..e594f7f 100644 --- a/db/migrate/20150525083345_add_author_and_timestamps_to_custom_workflows.rb +++ b/db/migrate/20150525083345_add_author_and_timestamps_to_custom_workflows.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20150526132244_create_example_workflow.rb b/db/migrate/20150526132244_create_example_workflow.rb index 0e19795..034a641 100644 --- a/db/migrate/20150526132244_create_example_workflow.rb +++ b/db/migrate/20150526132244_create_example_workflow.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20150526134840_add_active_field_to_custom_workflows.rb b/db/migrate/20150526134840_add_active_field_to_custom_workflows.rb index 576a0ce..a12336c 100644 --- a/db/migrate/20150526134840_add_active_field_to_custom_workflows.rb +++ b/db/migrate/20150526134840_add_active_field_to_custom_workflows.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20150619135811_add_observable_field_to_custom_workflows.rb b/db/migrate/20150619135811_add_observable_field_to_custom_workflows.rb index 88c8543..ab89570 100644 --- a/db/migrate/20150619135811_add_observable_field_to_custom_workflows.rb +++ b/db/migrate/20150619135811_add_observable_field_to_custom_workflows.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20150619162054_add_additional_script_fields_to_custom_workflows.rb b/db/migrate/20150619162054_add_additional_script_fields_to_custom_workflows.rb index ac2f9c5..d3743fa 100644 --- a/db/migrate/20150619162054_add_additional_script_fields_to_custom_workflows.rb +++ b/db/migrate/20150619162054_add_additional_script_fields_to_custom_workflows.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/db/migrate/20151122120000_add_before_and_after_destroy_to_custom_workflows.rb b/db/migrate/20151122120000_add_before_and_after_destroy_to_custom_workflows.rb index 1e94bd8..1da138a 100644 --- a/db/migrate/20151122120000_add_before_and_after_destroy_to_custom_workflows.rb +++ b/db/migrate/20151122120000_add_before_and_after_destroy_to_custom_workflows.rb @@ -3,7 +3,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/init.rb b/init.rb index ee1153c..bc71680 100644 --- a/init.rb +++ b/init.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows.rb b/lib/redmine_custom_workflows.rb index a3e2b86..055527a 100644 --- a/lib/redmine_custom_workflows.rb +++ b/lib/redmine_custom_workflows.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/errors/workflow_error.rb b/lib/redmine_custom_workflows/errors/workflow_error.rb index 5a3804b..7613889 100644 --- a/lib/redmine_custom_workflows/errors/workflow_error.rb +++ b/lib/redmine_custom_workflows/errors/workflow_error.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/hooks/hooks.rb b/lib/redmine_custom_workflows/hooks/hooks.rb index b4cd5f8..f9f42ae 100644 --- a/lib/redmine_custom_workflows/hooks/hooks.rb +++ b/lib/redmine_custom_workflows/hooks/hooks.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/attachment_patch.rb b/lib/redmine_custom_workflows/patches/attachment_patch.rb index 8f62fb2..60ffdf3 100644 --- a/lib/redmine_custom_workflows/patches/attachment_patch.rb +++ b/lib/redmine_custom_workflows/patches/attachment_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/group_patch.rb b/lib/redmine_custom_workflows/patches/group_patch.rb index 636dd7d..2874dfe 100644 --- a/lib/redmine_custom_workflows/patches/group_patch.rb +++ b/lib/redmine_custom_workflows/patches/group_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/issue_patch.rb b/lib/redmine_custom_workflows/patches/issue_patch.rb index 66d4985..522b4d0 100644 --- a/lib/redmine_custom_workflows/patches/issue_patch.rb +++ b/lib/redmine_custom_workflows/patches/issue_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/issue_relation_patch.rb b/lib/redmine_custom_workflows/patches/issue_relation_patch.rb index 3842f79..ae90399 100644 --- a/lib/redmine_custom_workflows/patches/issue_relation_patch.rb +++ b/lib/redmine_custom_workflows/patches/issue_relation_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/mailer_patch.rb b/lib/redmine_custom_workflows/patches/mailer_patch.rb index 8ec898b..7bdee9d 100644 --- a/lib/redmine_custom_workflows/patches/mailer_patch.rb +++ b/lib/redmine_custom_workflows/patches/mailer_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/project_patch.rb b/lib/redmine_custom_workflows/patches/project_patch.rb index e9bbd86..2083ef6 100644 --- a/lib/redmine_custom_workflows/patches/project_patch.rb +++ b/lib/redmine_custom_workflows/patches/project_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/projects_helper_patch.rb b/lib/redmine_custom_workflows/patches/projects_helper_patch.rb index d889d46..4385c2d 100644 --- a/lib/redmine_custom_workflows/patches/projects_helper_patch.rb +++ b/lib/redmine_custom_workflows/patches/projects_helper_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/time_entry_patch.rb b/lib/redmine_custom_workflows/patches/time_entry_patch.rb index 56e570d..e688157 100644 --- a/lib/redmine_custom_workflows/patches/time_entry_patch.rb +++ b/lib/redmine_custom_workflows/patches/time_entry_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/user_patch.rb b/lib/redmine_custom_workflows/patches/user_patch.rb index 5af8d52..4132c96 100644 --- a/lib/redmine_custom_workflows/patches/user_patch.rb +++ b/lib/redmine_custom_workflows/patches/user_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/version_patch.rb b/lib/redmine_custom_workflows/patches/version_patch.rb index c22fe01..3a0b88c 100644 --- a/lib/redmine_custom_workflows/patches/version_patch.rb +++ b/lib/redmine_custom_workflows/patches/version_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/wiki_content_patch.rb b/lib/redmine_custom_workflows/patches/wiki_content_patch.rb index e571180..f21f329 100644 --- a/lib/redmine_custom_workflows/patches/wiki_content_patch.rb +++ b/lib/redmine_custom_workflows/patches/wiki_content_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/patches/wiki_page_patch.rb b/lib/redmine_custom_workflows/patches/wiki_page_patch.rb index 69ed903..863c330 100644 --- a/lib/redmine_custom_workflows/patches/wiki_page_patch.rb +++ b/lib/redmine_custom_workflows/patches/wiki_page_patch.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/test/test_case.rb b/lib/redmine_custom_workflows/test/test_case.rb index 43a98d8..37a70c7 100644 --- a/lib/redmine_custom_workflows/test/test_case.rb +++ b/lib/redmine_custom_workflows/test/test_case.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/lib/redmine_custom_workflows/test/unit_test.rb b/lib/redmine_custom_workflows/test/unit_test.rb index cc91b97..3e7b0b3 100644 --- a/lib/redmine_custom_workflows/test/unit_test.rb +++ b/lib/redmine_custom_workflows/test/unit_test.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/test/ci/redmine_install.sh b/test/ci/redmine_install.sh index b0be85d..6feb629 100644 --- a/test/ci/redmine_install.sh +++ b/test/ci/redmine_install.sh @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/test/functional/custom_workflows_controller_test.rb b/test/functional/custom_workflows_controller_test.rb index 6a52655..0163d48 100644 --- a/test/functional/custom_workflows_controller_test.rb +++ b/test/functional/custom_workflows_controller_test.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/test/test_helper.rb b/test/test_helper.rb index b890c76..e9c4967 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/test/unit/custom_workflow_mailer_test.rb b/test/unit/custom_workflow_mailer_test.rb index 1741fe7..9b4415a 100644 --- a/test/unit/custom_workflow_mailer_test.rb +++ b/test/unit/custom_workflow_mailer_test.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/test/unit/custom_workflow_test.rb b/test/unit/custom_workflow_test.rb index 4e3ab0c..99a0b47 100644 --- a/test/unit/custom_workflow_test.rb +++ b/test/unit/custom_workflow_test.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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 diff --git a/test/unit_test.rb b/test/unit_test.rb index d67b5f2..7f38d3e 100644 --- a/test/unit_test.rb +++ b/test/unit_test.rb @@ -4,7 +4,7 @@ # Redmine plugin for Custom Workflows # # Copyright © 2015-19 Anton Argirov -# Copyright © 2019-20 Karel Pičman +# Copyright © 2019-21 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