Skip to content

Commit

Permalink
Release of 4.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Apr 25, 2024
1 parent 0e5d30f commit 722e94c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions lizmap/definitions/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion lizmap/server_lwc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 722e94c

Please sign in to comment.