Skip to content

Commit

Permalink
Release of 4.3.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Jun 27, 2024
1 parent 561c368 commit e6b4b77
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lizmap/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand Down

0 comments on commit e6b4b77

Please sign in to comment.