Skip to content

Commit

Permalink
Update to newest qgis_plugin_tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Joonalai committed Sep 17, 2021
1 parent a669f1c commit b2479f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GlobeBuilder/qgis_plugin_tools
Submodule qgis_plugin_tools updated 77 files
+14 −0 .github/workflows/pre-commit.yml
+11 −4 .github/workflows/tests.yml
+31 −0 .pre-commit-config.yaml
+29 −34 README.md
+0 −80 docs/transifex_translate.md
+16 −11 docs/usage.md
+0 −4 infrastructure/creator.py
+102 −17 infrastructure/debugging.py
+0 −99 infrastructure/plugin_creator.py
+253 −47 infrastructure/plugin_maker.py
+0 −11 infrastructure/template/plugin/.editorconfig
+0 −4 infrastructure/template/plugin/.gitattributes
+0 −11 infrastructure/template/plugin/__init__.py
+0 −23 infrastructure/template/plugin/build.py
+0 −16 infrastructure/template/plugin/metadata.txt
+0 −127 infrastructure/template/plugin/plugin.py
+0 −0 infrastructure/template/plugin/resources/.gitignore
+0 −0 infrastructure/template/plugin/resources/i18n/.gitignore
+0 −0 infrastructure/template/plugin/resources/icons/.gitignore
+0 −0 infrastructure/template/plugin/resources/ui/.gitignore
+0 −15 infrastructure/template/plugin/test/conftest.py
+0 −1 infrastructure/template/plugin/test/pytest.ini
+0 −2 infrastructure/template/plugin/test/test_1.py
+0 −33 infrastructure/template/root/.github/ISSUE_TEMPLATE/bug_report.md
+0 −20 infrastructure/template/root/.github/ISSUE_TEMPLATE/feature_request.md
+0 −31 infrastructure/template/root/.github/workflows/release.yml
+0 −43 infrastructure/template/root/.github/workflows/tests.yml
+0 −34 infrastructure/template/root/.github/workflows/tests_ltr.yml
+0 −1 infrastructure/template/root/.gitignore
+0 −5 infrastructure/template/root/.qgis-plugin-ci
+0 −5 infrastructure/template/root/CHANGELOG.md
+0 −674 infrastructure/template/root/LICENSE
+0 −15 infrastructure/template/root/README.md
+0 −104 infrastructure/template/root/docs/development.md
+0 −26 infrastructure/template/root/docs/push_translations.yml
+0 −3 infrastructure/template/root/requirements.txt
+1 −0 requirements-dev.txt
+11 −1 setup.cfg
+0 −0 test/__init__.py
+17 −0 test/conftest.py
+36 −0 test/test_decorations.py
+22 −19 test/test_init.py
+14 −0 test/test_layers.py
+1 −1 test/test_misc_utils.py
+73 −0 test/test_network.py
+104 −0 test/test_raster_layers.py
+53 −0 test/test_setings.py
+0 −26 testing/conftest.py
+0 −21 testing/mock_qgis_classes.py
+0 −217 testing/qgis_interface.py
+0 −36 testing/test_decorations.py
+0 −53 testing/test_network.py
+0 −76 testing/test_raster_layers.py
+0 −52 testing/test_runner.py
+0 −48 testing/test_setings.py
+17 −75 testing/utilities.py
+2 −3 tools/algorithm_processing.py
+127 −54 tools/custom_logging.py
+7 −10 tools/decorations.py
+32 −6 tools/exceptions.py
+6 −6 tools/fields.py
+5 −4 tools/ghost_layers.py
+15 −9 tools/i18n.py
+102 −23 tools/layers.py
+2 −1 tools/logger_processing.py
+115 −0 tools/messages.py
+12 −9 tools/misc_utils.py
+76 −31 tools/network.py
+23 −8 tools/raster_layers.py
+35 −17 tools/resources.py
+26 −15 tools/settings.py
+4 −4 tools/version.py
+18 −14 widgets/grid_layout_utils.py
+6 −5 widgets/json_editor.py
+3 −7 widgets/list_fields_selection.py
+7 −10 widgets/list_layers_selection.py
+2 −2 widgets/selectable_combobox.py

0 comments on commit b2479f3

Please sign in to comment.