Skip to content

Commit

Permalink
Release of 3.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustry committed Aug 9, 2023
1 parent ef0ca50 commit 3ba8e01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 3.16.2 - 2023-08-09

* Report all layers having a primary key which is not in the layer's fields.

## 3.16.1 - 2023-08-09

* Fix the use of OpenTopoMap background
Expand Down
2 changes: 2 additions & 0 deletions lizmap/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2717,11 +2717,13 @@ def project_config_file(self, lwc_version: LwcVersions, with_gui: bool = True, c
"temporary field called '{}' to be a unique identifier. On QGIS Server, this will bring issues."
).format(field))
self.dlg.log_panel.append("<br>")
layers.sort()
for layer_name in layers:
self.dlg.log_panel.append('⚫ {}'.format(layer_name))
self.dlg.log_panel.append("<br>")

if int8:
int8.sort()
self.dlg.log_panel.append(tr(
"The primary key has been detected as a bigint (integer8) for your layer :"))
self.dlg.log_panel.append("<br>")
Expand Down

0 comments on commit 3ba8e01

Please sign in to comment.