├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── addon_prefs.py ├── addon_version.json ├── file_functions.py ├── global_variables.py ├── gui.py ├── internet_functions.py ├── json_functions.py ├── lib_enc1.py ├── lib_enc2.py ├── misc_dev └── wiki_images │ ├── addon_updater.png │ ├── categories.png │ ├── filter_nodetree_by_versions.png │ ├── import_options.png │ ├── library_synchronization.png │ ├── nodetree_previews.png │ ├── offline_nodetrees.png │ ├── submission_panel.png │ └── tag_system.png ├── newsfeed_functions.py ├── op_create_manifest.py ├── op_create_newsfeed.py ├── op_create_nodetree_info.py ├── op_edit_nodetree_info.py ├── op_empty_download_dir.py ├── op_import_nodetree.py ├── op_newsfeed_actions.py ├── op_open_url.py ├── op_refresh_addon_version.py ├── op_refresh_templates.py ├── op_search_select_nodetree.py ├── op_submission_guidelines.py ├── op_submit_template.py ├── op_tag_add.py ├── op_tag_search.py ├── print_functions.py ├── properties.py ├── startup_handler.py ├── string_formatting_functions.py └── ui_list.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/__init__.py -------------------------------------------------------------------------------- /addon_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/addon_prefs.py -------------------------------------------------------------------------------- /addon_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/addon_version.json -------------------------------------------------------------------------------- /file_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/file_functions.py -------------------------------------------------------------------------------- /global_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/global_variables.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/gui.py -------------------------------------------------------------------------------- /internet_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/internet_functions.py -------------------------------------------------------------------------------- /json_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/json_functions.py -------------------------------------------------------------------------------- /lib_enc1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/lib_enc1.py -------------------------------------------------------------------------------- /lib_enc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/lib_enc2.py -------------------------------------------------------------------------------- /misc_dev/wiki_images/addon_updater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/misc_dev/wiki_images/addon_updater.png -------------------------------------------------------------------------------- /misc_dev/wiki_images/categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/misc_dev/wiki_images/categories.png -------------------------------------------------------------------------------- /misc_dev/wiki_images/filter_nodetree_by_versions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/misc_dev/wiki_images/filter_nodetree_by_versions.png -------------------------------------------------------------------------------- /misc_dev/wiki_images/import_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/misc_dev/wiki_images/import_options.png -------------------------------------------------------------------------------- /misc_dev/wiki_images/library_synchronization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/misc_dev/wiki_images/library_synchronization.png -------------------------------------------------------------------------------- /misc_dev/wiki_images/nodetree_previews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/misc_dev/wiki_images/nodetree_previews.png -------------------------------------------------------------------------------- /misc_dev/wiki_images/offline_nodetrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/misc_dev/wiki_images/offline_nodetrees.png -------------------------------------------------------------------------------- /misc_dev/wiki_images/submission_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/misc_dev/wiki_images/submission_panel.png -------------------------------------------------------------------------------- /misc_dev/wiki_images/tag_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/misc_dev/wiki_images/tag_system.png -------------------------------------------------------------------------------- /newsfeed_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/newsfeed_functions.py -------------------------------------------------------------------------------- /op_create_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_create_manifest.py -------------------------------------------------------------------------------- /op_create_newsfeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_create_newsfeed.py -------------------------------------------------------------------------------- /op_create_nodetree_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_create_nodetree_info.py -------------------------------------------------------------------------------- /op_edit_nodetree_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_edit_nodetree_info.py -------------------------------------------------------------------------------- /op_empty_download_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_empty_download_dir.py -------------------------------------------------------------------------------- /op_import_nodetree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_import_nodetree.py -------------------------------------------------------------------------------- /op_newsfeed_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_newsfeed_actions.py -------------------------------------------------------------------------------- /op_open_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_open_url.py -------------------------------------------------------------------------------- /op_refresh_addon_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_refresh_addon_version.py -------------------------------------------------------------------------------- /op_refresh_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_refresh_templates.py -------------------------------------------------------------------------------- /op_search_select_nodetree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_search_select_nodetree.py -------------------------------------------------------------------------------- /op_submission_guidelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_submission_guidelines.py -------------------------------------------------------------------------------- /op_submit_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_submit_template.py -------------------------------------------------------------------------------- /op_tag_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_tag_add.py -------------------------------------------------------------------------------- /op_tag_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/op_tag_search.py -------------------------------------------------------------------------------- /print_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/print_functions.py -------------------------------------------------------------------------------- /properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/properties.py -------------------------------------------------------------------------------- /startup_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/startup_handler.py -------------------------------------------------------------------------------- /string_formatting_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/string_formatting_functions.py -------------------------------------------------------------------------------- /ui_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samytichadou/an_template_addon/HEAD/ui_list.py --------------------------------------------------------------------------------