02-25-2019, 11:20 PM
Let say I want to have a folder containing my plugin. As I understand, GIMP only looks for plugins file named as the folder. For example, this works ok:
If I change the plugin file name, the plugin will not be loaded. For example:
In this case the file something-different.py will not be loaded by GIMP, even if it's set to be executable.
Is it possible to force GIMP (from settings) to also look for other file names into plugin subfolders? Ideally, I would like to have multiple files for slightly different plugins into the folder my-plugin-folder-name. Right now with only one file to be loaded, as my plugin get bigger and bigger, it's becoming also messier to keep it "organized"...
Code:
my-plugin-folder-name
my-plugin-folder-name.py
If I change the plugin file name, the plugin will not be loaded. For example:
Code:
my-plugin-folder-name
something-different.py
In this case the file something-different.py will not be loaded by GIMP, even if it's set to be executable.
Is it possible to force GIMP (from settings) to also look for other file names into plugin subfolders? Ideally, I would like to have multiple files for slightly different plugins into the folder my-plugin-folder-name. Right now with only one file to be loaded, as my plugin get bigger and bigger, it's becoming also messier to keep it "organized"...