diff --git a/CHANGELOG.md b/CHANGELOG.md index 245edc94..422c1b0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased +## 4.3.17 - 2024-06-27 + +* OGC validity on group - Add help about where to change it +* CFG - Do not export old QGIS Server version in CFG file +* UX - Display release candidate link if available in the online JSON file +* Remove all occurrences of `zmax` and `zmin` in the source code #586 +* Fix loading of the plugin if no webdav is available fix #584 + ## 4.3.16 - 2024-06-11 * Fix wrong warning about missing API keys diff --git a/lizmap/plugin.py b/lizmap/plugin.py index e9cf1587..656fb2f0 100755 --- a/lizmap/plugin.py +++ b/lizmap/plugin.py @@ -3957,12 +3957,12 @@ def project_config_file( max_version = val.get('max_version') if max_version and lwc_version > max_version: - LOGGER.info("Skipping key '{}' because of max_version.".format(key)) + # LOGGER.info("Skipping key '{}' because of max_version.".format(key)) continue min_version = val.get('min_version') if min_version and lwc_version < min_version: - LOGGER.info("Skipping key '{}' because of min_version.".format(key)) + # LOGGER.info("Skipping key '{}' because of min_version.".format(key)) continue if key == 'noLegendImage':