Alexander Meindl
Alexander Meindl
Hi @picman, do you get this error with latest additionals, yet? I never had this problems you described with other plugins.
Because this plugin can be installed as Gem. I did not find a solution for this without initializing VERSION constant twice. That is the reason. If I find a solution...
Which version of additionals do you use? And which database (version) you use? additionals migration should create dashboards table with the column project_id as integer, see https://github.com/AlphaNodes/additionals/blob/main/db/migrate/003_create_dashboards.rb#L13 If this is...
In additionals we switched to the preferred way of overwriting functionality with pretend and "super". Most plugins for Redmine 4 works with it (migrated to it from "alias_method"). See also...
Thanks for reporting this. I added support with my last commit.
I revert the support for controller_issues_edit_after_save hook. The problem with it is, that some plugin developer use a before_action in controller instead of controller_issues_edit_before_save to prepare data for save. I...
One of them is RedmineUp with https://www.redmine.org/plugins/redmine_checklists. It would be great to teach them, but in the past I never succeeded.
Hi @serpi90, the patch is trivial, I created it for you. It would be great, if "they" listen to you :smirk: I cannot add a patch file here, but here...
Hi @TQING1990, same as here https://github.com/AlphaNodes/additionals/issues/71#issuecomment-591290491 This cannot be fixed, because a plugin can only be use prepend or alias_method. More plugins use prepend - and is more modern -...
Hi @moskvin this is a compatibility problem with prepend and alias_method. More and more plugins fight with this problem. One redmine plugin use prepend and another plugin uses alias_method for...