View Issue Details

IDProjectCategoryView StatusLast Update
0005278mantisbtcustom fieldspublic2022-12-25 05:29
ReporterHeikoNorderstedt Assigned To 
PrioritynormalSeverityfeatureReproducibilityalways
Status newResolutionopen 
Summary0005278: custom field for user accounts
Description

We made several changes to use the custom fields for the user accounts as well. To use the fields they have to be added in the "Manage Users" section. The value of the custom field from the user account (from every single user) will be copied into the custom field in the report page. We use this for example to fill out the telephone number from our costumers.

To store the values of the user custom fields we need two new database tables:
mantis_custom_field_user_table, mantis_custom_field_user_string_table

To use the extension you have to execute the upgrade script in the admin directory of mantis.

TagsNo tags attached.
Attached Files
AccountPage.png (15,270 bytes)   
AccountPage.png (15,270 bytes)   
upgrade_patch.zip (5,029 bytes)
Add_User_Custom_Fields.png (3,589 bytes)   
Add_User_Custom_Fields.png (3,589 bytes)   
0_19_user_custom_fields.php (1,483 bytes)   
<?php
	# Mantis - a php based bugtracking system
	# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
	# Copyright (C) 2002 - 2004  Mantis Team   - mantisbt-dev@lists.sourceforge.net
	# This program is distributed under the terms and conditions of the GPL
	# See the README and LICENSE files for details

	# Changes applied to 0.18 database

	# --------------------------------------------------------
	# $Id: 0_19_inc.php,v 1.1 2004/10/05 17:20:33 thraxisp Exp $
	# --------------------------------------------------------
?>
<?php
	require_once( 'db_table_names_inc.php' );

	$upgrades = array();

	$upgrades[] = new SQLUpgrade(
			'0.19.1.user_custom.1',
			'Add User_Custom_Field_Table',
			"CREATE TABLE $t_custom_field_user_table (
  			 field_id int NOT NULL default '0',
  			 sequence int NOT NULL default '0',
  			 PRIMARY KEY  (field_id))"
			);

	$upgrades[] = new SQLUpgrade(
			'0.19.1.user_custom.2',
			'Add User_Custom_Field_String_Table',
			"CREATE TABLE $t_custom_field_user_string_table (
  			field_id int NOT NULL default '0',
  			user_id int NOT NULL default '0',
  			value varchar(255) NOT NULL default '',
  			PRIMARY KEY  (field_id,user_id))"
			);
      
  	$upgrades[] = new SQLUpgrade(
			'0.19.2.user_custom.3',
			'Add field User_Custom_Field_Table',
			"ALTER TABLE $t_custom_field_table 
      ADD `access_level_rwc` INT(2)  UNSIGNED DEFAULT \"0\" NOT NULL"
			);

	return $upgrades;
?>
0_19_user_custom_fields.php (1,483 bytes)   
AccountCustomFields.zip (16,447 bytes)

Relationships

has duplicate 0006075 closedatrol Exrta Fields in user info 
has duplicate 0011377 closedatrol The "My Account" should have the "Custom Fields" function 
has duplicate 0015457 closedatrol Additional user information 
has duplicate 0026595 closedatrol Users 
has duplicate 0027588 closedatrol Add custom field to user profile 
related to 0006388 new Custom fields for notes 
related to 0003481 new Complex Profiles: Add firstname, last name, phone numbers, and other email fields 
child of 0005650 acknowledged Investigate/Implement Enhanced Custom Field support 

Activities

grangeway

grangeway

2005-04-05 13:54

reporter   ~0009729

Do you have that zip handy in form of a diff at all?

Paul

HeikoNorderstedt

HeikoNorderstedt

2005-04-06 02:48

reporter   ~0009740

Sorry, I only have the zip file with the changed and new sources. I am not so familar with cvs to produce diff files, but the changes all base on the 0.19.2 Release Version of mantis.

Heiko

daryn

daryn

2007-06-06 10:23

reporter   ~0014686

Is this being worked? I see the last comment was two years ago. I'm very interested in this feature and would be willing to work on it if needed. The attachments are missing and I'm wondering if there are any design specs for the feature.

HeikoNorderstedt

HeikoNorderstedt

2007-06-06 11:29

reporter   ~0014687

Yes it's working. We added the changes on the 1.0.5 release of mantis. If you are interested, i can upload the changed sources in the next days.

What do you mean with "design specs"?

The features of the modification are:

  • You can add costum fields to the user account, the same way as you can
    add them to the bug.
  • If you add the same custom fields to the account and the bug, the values
    from the user account custom fields will be copied to the bug custom fields.
daryn

daryn

2007-06-06 12:08

reporter   ~0014689

Great. I'm keeping my code synced with cvs but I don't see anything related to this. Is it in CVS yet or just patched to a release? If it's already in there how do I configure it? I don't seem to be able to find it. If it isn't there, yes I would certainly be interested in the source changes.

In regard to design specs, I was just wondering if there was any documentation specifying how this should be implemented. Your explanation below is helpful.

Thanks for the speedy response!

Daryn

HeikoNorderstedt

HeikoNorderstedt

2007-06-07 09:13

reporter   ~0014704

Last edited: 2007-06-07 09:14

@daryn
I uploaded the changed PHP-Filed based on Version 1.0.5. I did not test, if the changes are complete and working. Please response if something ist missing. To use the modification you have to execute the upgrade scipt in the admin directory of mantis. This will create the new two tables for the user-custom field entries.

daryn

daryn

2007-06-08 13:29

reporter   ~0014717

I'm having trouble with the db update. I tried to run the admin/update script and several things were updated but the user custom fields were not. I don't see them in the update scripts either...

HeikoNorderstedt

HeikoNorderstedt

2007-06-11 04:11

reporter   ~0014742

@daryn
Don't ask me why, but I had to patch the upgrade.php to see the upgrade-scripts. I also made a change in the upgrade_inc.php. When you click at advanced-upgrades now you should see the Add_User_Custom_Field_xxx upgrades.

daryn

daryn

2007-06-12 12:39

reporter   ~0014745

@Heiko I must be doing something wrong because I still am unable to get this to work. I appear to be missing the file upgrades/0_19_user_custom_fields.php. Is there a better way to discuss this? IRC?, Skype? Other?

HeikoNorderstedt

HeikoNorderstedt

2007-06-13 03:35

reporter   ~0014754

Last edited: 2007-06-14 03:08

@daryn
Sorry I forgot to upload the Upgrade scripz 0_19_user_custom_fields.php :-O
You have to copy the script into the admin\upgrades directory.

HeikoNorderstedt

HeikoNorderstedt

2007-06-13 10:59

reporter   ~0014758

@grangeway
Could you please delete the file mantis_usercustomfields.zip

vboctor

vboctor

2007-06-13 12:43

manager   ~0014759

I deleted mantis_usercustomfields.zip.

djcarr

djcarr

2010-05-23 21:02

reporter   ~0025594

I think the ability to have a custom field of type User still has strong value, as you can then create fields such as Tester etc.

With current Mantis the testing team try to assign issues to themselves which breaks the developer-based statistics. It'd be ideal to provide a custom field that they can incorporate into their workflow.

rtartas

rtartas

2010-09-29 05:23

reporter   ~0026906

Hi,

I use Mantis 1.2.2. Can anybody advice (step by step) how to install the User Custom fields functionality?

rtartas

rtartas

2011-09-12 05:37

reporter   ~0029687

Hi,

I upgraded Mantis to version 1.2.5. Can anybody advice (step by step) how to install the User Custom fields functionality?

HeikoNorderstedt

HeikoNorderstedt

2011-09-12 07:42

reporter   ~0029688

Hi rtartas,

the modified Mantis source code is based on version 1.05. It will not work on version 1.25. We also plan to upgrade our mantis installation in the near future. If there is still interest in our modifications, we can upload a new version then.

rtartas

rtartas

2011-09-12 07:53

reporter   ~0029689

Hi Heiko,

Yes, I'm still interested in this modification. So if you could upgrade this and upload this here - I'll be very happy!

Thank you!

mach825

mach825

2014-03-15 17:48

reporter   ~0039670

Hello,

This seems like a really nice feature to have. Will this customization be upgraded to work with the 1.2.x code?

Thank you,
Shannon

HeikoNorderstedt

HeikoNorderstedt

2014-03-17 06:06

reporter   ~0039677

Hello mach825,

currently we are running version 1.2.11 of mantis. I handed over then development of our mantis installation to our working student. We made several changes to the original code. We have to seperate these changes before we can upload the necessary code for the custom fields. This will take a while. :-)

cas

cas

2014-03-17 06:54

reporter   ~0039681

This should be a plugin, would make life much easier

Jo

Jo

2014-07-28 11:44

reporter   ~0040999

Hi,
I use Mantis 1.2.17. How can I upgrade this modification? I really need to add a column to sync user's more info from LDAP.

HeikoNorderstedt

HeikoNorderstedt

2014-07-29 03:17

reporter   ~0041001

@Jo
We are currently working to make the custom user fields to a plugin. After testing the plugin we will make it available. But this will take some time.

Jo

Jo

2014-07-29 08:35

reporter   ~0041002

@HeikoNorderstedt
Thanks a lot.
Sincerely hope that we can use this plugin soon as possible.

HeikoNorderstedt

HeikoNorderstedt

2014-11-10 03:12

reporter   ~0041823

@Jo
The develpment is almost complete. We are testing at the moment.

mohamedh

mohamedh

2015-04-30 17:47

reporter   ~0050680

Last edited: 2022-12-11 15:42

sorry but I still don't understand how to add this "custom user fields" feature to mantis

mohamedh

mohamedh

2015-05-31 09:58

reporter   ~0050846

@HeikoNorderstedt

I would like to ask about the plugin you were talking about, is it ready? can you kindly share it with us?

HeikoNorderstedt

HeikoNorderstedt

2015-06-08 03:53

reporter   ~0050880

@mohamedh
Sorry, we are still testing the plugin.
Our Mantis Version is 1.2.11. We will try upgrade the version for Mantis 1.2.19 and upload an "untested" diff-file. Please refrain from further questions.

mohamedh

mohamedh

2015-06-08 12:24

reporter   ~0050881

@HeikoNorderstedt

Thanks a lot for taking time to reply, I can wait a little longer, no problem.
Also, I don't have any problems with using an Untested version and I would really appreciate it if you share it, because I need that plugin badly.

I didn't mean to bother you by asking, by I was just curious to know more about the current state of the plugin.
Anyway, I'm not gonna ask you again, I will wait for you to post it here, but please share it ASAP once it's usable
And thanks a lot

HeikoNorderstedt

HeikoNorderstedt

2015-06-10 08:37

reporter   ~0050885

@mohamedh
I have uploaded the Plugin for the Mantis Version 1.2.19.
The Plugin ist not tested yet!
Feel free to report bugs but do not expect to get them fixed :-)

mohamedh

mohamedh

2015-06-15 16:43

reporter   ~0050919

Last edited: 2022-07-24 17:31

@HeikoNorderstedt

THx alot
It works like a charm, you're awesome, the plugin is awesome and I am so happy with it!

thanks again for the plugin, it's working very good, btw if you're planning to release it for public I can offer to translate it to Arabic, French and maybe Spanish and Turkish(my Turkish and Spanish aren't good enough though)

HeikoNorderstedt

HeikoNorderstedt

2015-06-16 03:29

reporter   ~0050920

@mohamedh
After some more testing we could publish the plugin in the official git-hub repository. I am not sure if it is allowed for 'official' plugins to make changes to the original source code of mantis.

If you like you can upload your translations here. We could add a polish language file.

Thanks for your responds.

dregad

dregad

2015-06-16 09:13

developer   ~0050921

We generally don't recommend altering MantisBT core, but I don't think there's an official policy against hosting a plugin that does in the mantisbt-plugins organization on github.

That being said, I would at least ask you to make this source code change explicit in the readme file, and also draw your attention to the fact that it is your responsibility to support such changes.

Please refer to https://www.mantisbt.org/wiki/doku.php/mantisbt:mantis_plugins for the process to publish a plugin.

mohamedh

mohamedh

2015-06-18 14:31

reporter   ~0050937

@HeikoNorderstedt

I have a question,is it possible to make the new custuom field visible in the "view_user_page.php"

HeikoNorderstedt

HeikoNorderstedt

2015-06-22 03:54

reporter   ~0050957

@mohamedh
Yes it is possible, but it is not impelemented. We do not use the "view_user_page.php".

mohamedh

mohamedh

2015-06-26 21:25

reporter   ~0050983

Attached is the Arabic translation for your plugin, feel free to use it and insert in your next release

"Yes it is possible, but it is not impelemented"
Yeah, we have done it modifying "view_user_page.php"(core file) and it worked fine, however it will show a
"APPLICATION WARNING #100: Configuration option "plugin__auto_load_threshold" not found"

so In order to remove this warning (optional) we needed to hack this file "acf_api.php"(plugin file, located at AccountCustomFields/pages/acf_api.php)

If someone is interested I can upload the modified files.

MantisBT is very awesome and easy to customize , however it still lacks a lot of feature, specially basic ones that should exist, for example custom user fields, I think it's something that Must be available by default, with the plugin/codes being provided now thanks to HeikoNorderstedt I would like to ask if you can implement it in your future releases, also adding some nice features like private messages, ability to customize the summary page..etc would be awesome...
And thanks for all your efforts

strings_arabic.txt (1,837 bytes)   
<?php
# General
$s_plugin_AccountCustomFields_custom_field = 'حقل';
$s_plugin_AccountCustomFields_sequence = 'تسلسل';
$s_plugin_AccountCustomFields_rwc = 'تعديل صلاحات الدخول';
$s_plugin_AccountCustomFields_actions = 'تطبيق تصرف';
$s_plugin_AccountCustomFields_save_settings = 'حفظ الإعدادات';
$s_plugin_AccountCustomFields_cancel_import = 'إيقاف الإستيراد';

# Config Page
$s_plugin_AccountCustomFields_config_page_title = 'الحقول الإختيارية (للحسبابات): صفحة الإعدادات';
$s_plugin_AccountCustomFields_uninstall_page_title = 'الحقول الإختيارية (للحسبابات): إلغاء التنصيب';
$s_plugin_AccountCustomFields_form_title_acf = 'الحقول الإختيارية للعضو';
$s_plugin_AccountCustomFields_no_acfs_in_use = 'لا يوجد أي حقول إختيارية مستخدمة كحقول إختيارية للأعضاء حتى الآن.';

# Config Values
$s_plugin_AccountCustomFields_global_settings = 'خيارات العامة للإضافة';
$s_plugin_AccountCustomFields_conf_auto_load_string = 'إبلاغ عن حالة: استخدام قيم الحقل الإختياري للحسابات للحقول الإختيارية';

# Datasets
$s_plugin_AccountCustomFields_datasets = 'datasets:';
$s_plugin_AccountCustomFields_datasets_active = ' المستخدم';
$s_plugin_AccountCustomFields_datasets_complete = ' الإجمالي';

# Schema
$s_plugin_AccountCustomFields_schema_uninstall_message = 'أي قواعد بيانات تريدها أن تحذف؟ <br/> تم إلغاء التنصيب بنجاح.';
$s_plugin_AccountCustomFields_schema_uninstall_0 = 'لا تحذف أي شيء';
$s_plugin_AccountCustomFields_schema_uninstall_1 = 'حذف هياكل القواعد والبيانات';
strings_arabic.txt (1,837 bytes)   
HeikoNorderstedt

HeikoNorderstedt

2015-06-29 05:06

reporter   ~0050993

@mohamedh
Please upload your modifications, so we can take a look.

mohamedh

mohamedh

2015-07-01 21:28

reporter   ~0051002

I have attached it, credits goes to themadmaxboy

fman

fman

2018-01-13 07:06

reporter   ~0058538

Just started minor changes to @HeikoNorderstedt work => it rocks!!!
Just sent mail to plugin author requesting access to repository to fork.
I'm doing the silly changes needed to use plugin with MantisBT 2.x
Also minor changes to access Custom Fields on user create/update pages.
Going to provide feedback when finished (no more than a couple of weeks from now)

fman

fman

2018-01-25 10:57

reporter   ~0058611

Last edited: 2018-01-25 11:09

Here Answer I've got:

Good Morning,
unfortunately there is no repository where you can fork from. The published version of the plugin is the only one available. Internally, we use a personalized version. You can start a new repository with the published version though, because there are no more changes to this version.
If you have questions regarding the functionality of the plugin, feel free to ask, but don’t expect an immediate answer, since I’m not responsible for our mantis version anymore. For questions regarding the mantisbt-plugins github you should probably ask the mantis developers. J

Best regards,
Sebastian

Then I'm going to start working on a repo

dregad

dregad

2018-01-25 11:18

developer   ~0058612

Then I'm going to start working on a repo

@fman, as mentioned earlier, please refer to https://www.mantisbt.org/wiki/doku.php/mantisbt:mantis_plugins for the process to publish a plugin.

Spexy

Spexy

2019-10-01 10:19

reporter   ~0062935

Good morning, is there a version of this plugin suitable for the current version of Mantis?

e_kesaf

e_kesaf

2020-01-16 01:44

reporter   ~0063445

I also need same thing. Is there new versiyon?

MantisBT Version 2.20.0
Schema Version 209
PHP Version 7.3.7
Database Driver mysqli
Database Version, Description 10.3.16, 10.3.16-MariaDB

dregad

dregad

2020-01-16 05:29

developer   ~0063446

Then I'm going to start working on a repo

Looks like @fman never got very far with creating the plugin - as I write this https://github.com/fmancardi/AccountCustomFields has only one initial commit with a readme file. Or maybe he never pushed his changes to GitHub.

fman

fman

2020-01-22 10:11

reporter   ~0063490

@dregad: I'm sorry for never finishing the work. My experience is that is much better if you have minimum PHP development knowledge to develop a plugin. I've followed this path to create a RACIMatrix Plugin.

regards

dregad

dregad

2020-01-23 04:16

developer   ~0063496

I'm sorry for never finishing the work

No worries, my comment was not meant to put pressure or anything, I was just stating the fact that there was no actual code in the repo, and maybe you had forgotten to push it.

The rest of your answer is somewhat confusing, I'm not sure I get your point... What does your experience, PHP knowledge or the RACIMatrix plugin have to do with this (assuming you mean https://github.com/fmancardi/RACIMatrixAssignment)

fman

fman

2020-02-07 04:03

reporter   ~0063592

@dregad
I will try to explain better: if you have a medium PHP experience, IMHO it's always better to create a simple plugin to add the specific attributes that you need for the entity (in this case users).
My first approach to add attributes regarding RACI Matrix was using the USER Custom Fields plugin, but I found it not as comfortable as you can think.
Because I've some experience with the development plugin, my choice was a specific one, and I think this is the best approach if you have PHP and Mantis knowledge

ronemjay

ronemjay

2020-11-25 01:42

reporter   ~0064697

Any update for a Mantis 2x version? This functionality would be great to have on Mantis.
Regards.

lekankou

lekankou

2022-07-22 10:39

reporter   ~0066821

Hello,
I am upgrading my Mantis from 1.2.19 to 2.25.4 and I use the plugin AccountCustomFields too.
I cannot upgrade Mantis without it so I have to update this plugin.
I am revising it since last week and the 2.25.4 version recognize it finally.
My new issues get the value of the user account's field I have linked, but I have not tested it more.
My PHP version is 5.6.25 and I will test it after my holidays.

dregad

dregad

2022-07-23 05:49

developer   ~0066822

@lekankou maybe you should coordinate with @fman, who said a couple years ago that he was going to perform the upgrade (see 0005278:0058538), but he never came back with the outcome, so I don't know if he completed the work or not.

When you have the code ready, let me know so it can be published on GitHub mantisbt-plugins organization (read https://www.mantisbt.org/wiki/doku.php/mantisbt:mantis_plugins).

mohamedh

mohamedh

2022-07-23 14:18

reporter   ~0066824

Last edited: 2022-07-24 06:40

I am actually amazed such a basic thing was never even added to MantisBT core! despite having few contributions already that could help as a start.

@dregad
This feature is wanted by users since 17 years ! and since it involves modifying core files and possibly cause troubles with updates, won't the wise solution be to simply give users what they have wanted for 17 years and add it to mantis by default!?

lekankou

lekankou

2022-08-25 09:52

reporter   ~0066946

Thank you Mohamed for adding your note.

I agree, this functionality should be built into the application and not partly in a plugin with basic pages to be manually edited on another part.
As I have other plugins to review and some configurations to adapt, I haven't yet been able to test my updated version of AccountCustomFields.

hopefully soon

@dregad, I understand that @fman wanted to create a new plugin. I just want to make a new version of the one I use to use actually.

dregad

dregad

2022-08-26 12:23

developer   ~0066950

@dregad, I understand that @fman wanted to create a new plugin. I just want to make a new version of the one I use to use actually.

I believe he was intending to upgrade Heiko's AccountCustomFields plugin like you, not writing a new plugin, but I may be mistaken. Maybe he'll care to comment.

Anyway, if you do the upgrade, let me know.

As for this not being integrated into Core for 17 years, @mohamedh please keep in mind this is an open-source project maintained by people like me, on their spare time. If you really want / need something, please consider contributing, complaining does not help.

mohamedh

mohamedh

2022-12-11 15:27

reporter   ~0067209

Last edited: 2022-12-15 15:36

@dregad

As for this not being integrated into Core for 17 years, @mohamedh please keep in mind this is an open-source project maintained by people like me, on their spare time. If you really want/need something, please consider contributing, complaining does not help

IDK if you misunderstood me or you're twisting things and reading beyond what is written.

I did not complain+ I fail to see any of my words where I complain, and I obviously and clearly stated my amazement "I am amazed" and I very clearly asked: "won't the wise solution be to simply... INTEGRATE". I did not ask you to write this feature for me, nor spend your time on it, I do understand it's free, open source, spare time, etc, All I asked is if it would be wiser to add it to core directly instead of quick'n dirty patches or plugins.

Taken out of context, as you did, yes, ofc I am a rude person bossing people around, but put back in context, I clearly said "despite having few contributions already that could help as a start."

please consider contributing, complaining does not help

In 2015, when HeikoNorderstedt generously shared his modification, I also shared my modifications (c51002) for what I wanted (make fields visible) based on his work, so yeah when I needed something, I did it when I could. Back then you only stepped in to advise against modifying core files. Even as a plugin, this would still modify core files. Had this mod been integrated into core back then we wouldn't be having this conversation and the issue would be closed and things would be simpler to maintain imho.

That's simply what I meant, put back into context, and even better, into full context (up to 2015), this modifies core, which is not good practice and you complained about it (a totally valid complaint tbh), which is why I simply asked if it is simpler to [b]integrate[/b] to core given the demand.


Tl;dr

let me rephrase my question maybe this time it will be clearer:
Given how this extension really conceptually looks like a core modification, (+ form fields customization are core, so it makes sense for user custom fields to be core as well) and since it normally requires modifying core files, don't you think it is a good idea that the next step (doesn't mean by you) is to add it this (via a PR perhaps on GitHub, etc) to core files instead of writing a plugin?
It will be much easier to maintain that way, as lekankou mentioned. It won't get messy/break with updates, translations for admin interface of custom field can be done in localization files easily, etc.

cas

cas

2022-12-15 15:16

reporter   ~0067221

So not in core but there is hope. I created a small plugin called Userdata which will do the trick, at least for most people.
You can find it here: https://mantisbt.org/forums/viewtopic.php?t=28043
This is the first release so suggestions/comments are welcome. Do leave them on the forum

mohamedh

mohamedh

2022-12-15 15:32

reporter   ~0067222

@cas

Thanks for taking the time to share this with us. I appreciate your time and efforts!

Haven't been a mantis user lately, but I will definitely spin an instance and get back to you if I have any comments.

I still stand by my question from 0067209, to those who are in a position to answer and approve PRs (dregad, vbcotor, or atrol) wouldn't it be wise to add such plugin as core later on? or is there any reason to avoid it? (especially since custom form fields are already core).

cas

cas

2022-12-16 03:02

reporter   ~0067223

Last edited: 2022-12-16 05:10

@mohamedh, I am sure we love to have much more in core but it would differ a lot on what depending whom you ask the question. For me plugins are a very acceptable alternative but then actual plugins Quite happy to debate but do not think this is the right place. You will find my email inside the plugin.

I took a different approach here opposite custom fields since in my view that would be overkill. Now you can define up to 100 fields which you can fill for each user. Also overkill since you only need a few ( I would hope ). Optional you can change 2 core scripts to keep all nicely in sync (all about removing plugin data once an user is deleted) but for those who do not like that, I included a manual option ( you do not delete users every day any way).

mohamedh

mohamedh

2022-12-22 11:54

reporter   ~0067236

Last edited: 2022-12-22 11:55

@cas
I have replied to your plugin post on the forum!

It seems it is not really related or similar to what is being discussed here

We can discuss that in the forum.

Once again thanks for sharing it and for the effort

cas

cas

2022-12-25 05:29

reporter   ~0067240

The plugin has reached its final state, version 2.05, and is available through the forum