From 70c6eabfa76b563f160a261c3a184e693df27f73 Mon Sep 17 00:00:00 2001 From: Sandro Mani Date: Wed, 23 Aug 2023 13:55:59 +0200 Subject: [PATCH] Update qwc2 upgrade notes --- src/release_notes/QWC2UpgradeNotes.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/release_notes/QWC2UpgradeNotes.md b/src/release_notes/QWC2UpgradeNotes.md index 7600a69b..1d5d9654 100644 --- a/src/release_notes/QWC2UpgradeNotes.md +++ b/src/release_notes/QWC2UpgradeNotes.md @@ -4,6 +4,21 @@ This document describes incompatibilites and other aspects which QWC2 applicatio When updating the `qwc2` submodule, run `yarn install` to ensure the dependencies are up to date! +Update to qwc2 submodule revision [7409372](https://github.com/qgis/qwc2/tree/7409372) (23.08.2023) +--------------------------------------------------------------------------------------------------- + +**MapInfoToolTip plugin instantation change** + +* The instantation of the `MapInfoToolTip` in `appConfig.js` needs to be changed to + + MapInfoTooltipPlugin: MapInfoTooltipPlugin() + + Note the extra braces at the end. As a new feature, you can pass a list of [plugins](/references/qwc2_plugins/#mapinfotooltip) to the `MapInfoTooltipPlugin`. + +**Configuration changes** + +* The window size configuration of various plugins has been uniformized to the `geometry` config prop (rather than occasionally `windowSize` before). Affected plugins are: `FeatureForm`, `Identify`, `LayerCatalog`, `LayerTree`, `MapLegend`. Please check the respective [plugin reference](/references/qwc2_plugins/) for more details on the new format. + Update to qwc2 submodule revision [96aaa51](https://github.com/qgis/qwc2/tree/96aaa51) (09.02.2023) ---------------------------------------------------------------------------------------------------