diff --git a/CHANGELOG.md b/CHANGELOG.md index cf983b7f..1787f073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## Unreleased +## 4.3.8 - 2024-04-25 + +* Improve workflow when publishing a project for the first time +* Add a new "Browser media" button +* Allow HTML template for the Lizmap tooltip feature (Lizmap Web Client 3.8 feature, funded by PNR Ballons des Vosges) +* Check for editing capabilities before to warn for Z or M values lost in Lizmap Web Client + ## 4.3.7 - 2024-04-24 * Remove FTP support from the plugin diff --git a/lizmap/definitions/definitions.py b/lizmap/definitions/definitions.py index 5891b194..994b76ad 100755 --- a/lizmap/definitions/definitions.py +++ b/lizmap/definitions/definitions.py @@ -86,6 +86,9 @@ def find_from_metadata(cls, metadata: dict): PLAUSIBLE_DOMAIN_TEST = "plugin.qgis.lizmap.com" PLAUSIBLE_URL_TEST = "https://plausible.snap.3liz.net/api/event" +# PLAUSIBLE_DOMAIN_TEST = "plugin.qgis.lizmap.com" +# PLAUSIBLE_URL_TEST = "https://analytics.3liz.com/api/event" + @unique @total_ordering diff --git a/lizmap/server_lwc.py b/lizmap/server_lwc.py index 7c906c10..b7fe290c 100755 --- a/lizmap/server_lwc.py +++ b/lizmap/server_lwc.py @@ -903,7 +903,8 @@ def send_stats(self): # Lizmap Desktop version "lizmap-plugin-version": lizmap_plugin_version, # Lizmap Cloud - "lizmap-cloud": lizmap_cloud, + "lizmap-cloud-instances": lizmap_cloud, + "lizmap-cloud": 'yes' if any(instances) else 'no', # QGIS "qgis-version-full": qgis_version_full, "qgis-version-branch": qgis_version_branch,