SXXXXXXX_ProjectUtility/projectutility/config/tools_registry.json
2025-05-13 07:59:19 +02:00

135 lines
4.8 KiB
JSON

[
{
"id": "icon_generator_git",
"display_name": "Icon Generator (Git)",
"description": "Generates .ico files from PNG images, fetched via Git.",
"type": "git",
"enabled": true,
"git_url": "http://192.168.100.10:3000/vallongol/CreateIconFromFilesPng",
"git_ref": "master",
"run_command": ["python", "create_icon_file.py"],
"has_gui": false,
"parameters_definition_file": "tool_config_params.json"
},
{
"id": "pyinstaller_gui_git",
"display_name": "PyInstaller GUI (Git)",
"description": "GUI Wrapper for PyInstaller, fetched via Git.",
"type": "git",
"enabled": true,
"git_url": "http://192.168.100.10:3000/vallongol/PyInstallerGUIWrapper",
"git_ref": "master",
"run_command": ["python", "-m", "pyinstallerguiwrapper"],
"has_gui": true,
"parameters_definition_file": null
},
{
"id": "geoelevation_git",
"display_name": "Geo Elevation (Git)",
"description": "Get elevation data from network, fetched via Git.",
"type": "git",
"enabled": true,
"git_url": "http://192.168.100.10:3000/vallongol/GeoElevation",
"git_ref": "master",
"run_command": ["python", "-m", "geoelevation"],
"has_gui": true,
"parameters_definition_file": null
},
{
"id": "dependencyanalyzer_git",
"display_name": "Dependency Analyzer (Git)",
"description": "Manag. requirements from python project, fetched via Git.",
"type": "git",
"enabled": true,
"git_url": "http://192.168.100.10:3000/vallongol/DependencyAnalyzer",
"git_ref": "master",
"run_command": ["python", "-m", "dependencyanalyzer"],
"has_gui": true,
"parameters_definition_file": null
},
{
"id": "projectinitializer_git",
"display_name": "Project Inizializer (Git)",
"description": "Create standard folders for new dev tool, fetched via Git.",
"type": "git",
"enabled": true,
"git_url": "http://192.168.100.10:3000/vallongol/ProjectInitializer",
"git_ref": "master",
"run_command": ["python", "-m", "projectinitializer"],
"has_gui": true,
"parameters_definition_file": null
},
{
"id": "gui_g_reconverter_git",
"display_name": "Gui g_reconverter (Git)",
"description": "Gui for console application g_reconverter, fetched via Git.",
"type": "git",
"enabled": true,
"git_url": "http://192.168.100.10:3000/vallongol/GUI_g_reconverter",
"git_ref": "master",
"run_command": ["python", "-m", "gui_g_reconverter"],
"has_gui": true,
"parameters_definition_file": null
},
{
"id": "git_utility_git",
"display_name": "Git Utility (Git)",
"description": "Git utility suite, fetched via Git.",
"type": "git",
"enabled": true,
"git_url": "http://192.168.100.10:3000/vallongol/GitUtility",
"git_ref": "master",
"run_command": ["python", "-m", "gitutility"],
"has_gui": true,
"parameters_definition_file": null
},
{
"id": "backup_tools_git",
"display_name": "Backup Tools (Git)",
"description": "Backup suite, fetched via Git.",
"type": "git",
"enabled": true,
"git_url": "http://192.168.100.10:3000/vallongol/BackupTools",
"git_ref": "master",
"run_command": ["python", "-m", "backuptools"],
"has_gui": true,
"parameters_definition_file": null
},
{
"id": "launcher_tool_git",
"display_name": "Launcher tool (Git)",
"description": "Launcher tool, fetched via Git.",
"type": "git",
"enabled": true,
"git_url": "http://192.168.100.10:3000/vallongol/LauncherTool",
"git_ref": "master",
"run_command": ["python", "-m", "launchertool"],
"has_gui": true,
"parameters_definition_file": null
},
{
"id": "dummy_script",
"display_name": "Dummy Script Runner (Local)",
"description": "A simple placeholder script executed locally.",
"type": "local",
"enabled": true,
"run_command": ["python", "dummy_script/dummy.py"],
"has_gui": false,
"parameters": [
{"name": "user_text", "label": "Enter Text:", "type": "string", "required": true},
{"name": "iterations", "label": "Iterations:", "type": "integer", "required": false, "default": 1},
{"name": "enable_feature", "label": "Enable Extra Feature", "type": "boolean", "required": false, "default": false},
{"name": "output_dir", "label": "Output Directory:", "type": "folder", "required": false}
]
},
{
"id": "notepad",
"display_name": "Blocco Note (Notepad - Local)",
"description": "Avvia l'editor di testo standard (configurato localmente).",
"type": "local",
"enabled": true,
"run_command": ["notepad.exe"],
"has_gui": true
}
]