You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/configuration/ViewerConfiguration.md
+6-18
Original file line number
Diff line number
Diff line change
@@ -177,7 +177,7 @@ A particularly interesting aspect is the configuration of the entries in the app
177
177
|` "shortcut": "<shortcut>"`| Optional, keyboard shortcut which triggers the entry, i.e. `"alt+shift+a"`. |
178
178
|`}`||
179
179
180
-
*Note:* The built-in icons are those located in [`qwc2-app/qwc2/icons`](https://github.com/qgis/qwc2/tree/master/icons) and in `qwc-app/icons`. The built-in icon names are the respective file names, without `.svg` extension.
180
+
*Note:* The built-in icons are those located in [`qwc2/icons`](https://github.com/qgis/qwc2/tree/master/icons) and in `qwc-app/icons`. The built-in icon names are the respective file names, without `.svg` extension.
181
181
182
182
Also the map buttons ([LocationButton](../references/qwc2_plugins.md#locatebutton), [HomeButton](../references/qwc2_plugins.md#homebutton), [TaskButton](../references/qwc2_plugins.md#taskbutton), [ZoomButton](../references/qwc2_plugins.md#zoombutton)) support `themeFlagBlacklist` and `themeFlagWhitelist` for controlling the visibility based on the [theme flags](ThemesConfiguration.md#manual-theme-configuration).
183
183
@@ -288,11 +288,11 @@ The legend print template `assets/templates/legendprint.html` is used when print
288
288
289
289
## Building a custom viewer <aname="custom-viewer"></a>
290
290
291
-
The QWC stock application, hosted at [https://github.com/qgis/qwc2/](https://github.com/qgis/qwc2/), can serve as a base for building a custom application. An example of a custom application is hosted at [https://github.com/qgis/qwc2-demo-app](https://github.com/qgis/qwc2-demo-app).
291
+
The QWC stock application, hosted at [https://github.com/qgis/qwc2/](https://github.com/qgis/qwc2/), can serve as a base for building a custom application, and is published as an [NPM package](https://www.npmjs.com/package/qwc2). An example of a custom application is hosted at [https://github.com/qgis/qwc2-demo-app](https://github.com/qgis/qwc2-demo-app).
292
292
293
293
To build a custom viewer, the first step is cloning the demo application:
|`├─ qwc2/`| Git submodule containing the core QWC components. |
314
313
|`├─ index.html`| Entry point. |
315
314
|`├─ package.json`| NodeJS configuration file. |
316
315
|`└─ webpack.config.js`| Webpack configuration. |
@@ -350,16 +349,8 @@ qwc-map-viewer:
350
349
```
351
350
### Keeping the QWC application up to date
352
351
353
-
As mentioned above, QWC is split into a common components repository and an application specific repository. The goal of this approach is to cleanly separate user-specific configuration and components which common components which serve as a basis for all QWC applications, and to make it as easy as possible to rebase the application onto the latest common QWC components.
352
+
To update the base QWC components, just update the version of the `qwc2` dependency in `package.json`.
354
353
355
-
The recommended workflow is to keep the `qwc2` folder a submodule referencing the [upstream qwc2 repository](https://github.com/qgis/qwc2). To update it, just checkout/update the desired branch:
356
-
```bash
357
-
cd qwc2
358
-
git checkout master
359
-
# or
360
-
git checkout YYYY-lts
361
-
git pull
362
-
```
363
354
The [QWC Upgrade Notes](../release_notes/QWC2UpgradeNotes.md) documents major changes, and in particular all incompatible changes between releases which require changes to the application specific code and/or configuration.
364
355
365
356
@@ -375,12 +366,9 @@ The [`Settings`](../references/qwc2_plugins.md#settings) furthermore allows grap
375
366
376
367
### Adding and modify translations
377
368
378
-
When working inside a `qwc-app` source folder, the translations can be found on two levels:
379
-
380
-
- At QWC components level, in `qwc-app/qwc2/static/translations`.
381
-
- At application level, in `qwc-app/static/translations`.
369
+
When working inside a `qwc-app` source folder, the translations are located at `qwc-app/static/translations`.
382
370
383
-
A script will take care of merging the component translations into the application translations. This way, when updating the QWC submodule, new translations are automatically obtained. This script is automatically invoked on `yarn start`, but can also be manually invoked using
371
+
A script will take care of merging the translations from the `qwc2` package into the application translations. This way, when updating the `qwc2` dependency, new translations are automatically obtained. This script is automatically invoked on `yarn start`, but can also be manually invoked using
Copy file name to clipboardexpand all lines: src/release_notes/QWC2UpgradeNotes.md
+19-2
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,25 @@
1
1
# Upgrade notes
2
2
3
-
This document describes incompatibilites and other aspects which QWC applications need to address when updating against the latest qwc2 submodule.
3
+
This document describes configuration and code incompatibilites, as well as other aspects, which need to addressed when updating to a new version of the QWC viewer.
4
4
5
-
When updating the `qwc2` submodule, run `yarn install` to ensure the dependencies are up to date!
5
+
Update to qwc2 2025.4.3
6
+
-----------------------
7
+
8
+
**Switch to npm package**
9
+
10
+
The [QWC stock viewer ](https://github.com/qgis/qwc2) components are now published as an [NPM package](https://www.npmjs.com/package/qwc2).
11
+
If you are building a custom viewer on top of the QWC stock components, it is recommended you pull it in as a dependency in `package.json` rather than as a git submodule.
12
+
13
+
To this end:
14
+
15
+
- Delete the submodule and adjust the `package.json` by removing the `qwc2` workspace and adding the `qwc2` dependency, see [`package.json`](https://github.com/qgis/qwc2-demo-app/blob/44b4d16b7c8a8684aa98317351d96de7453a922e/package.json).
16
+
- Modify the `webpack.config.js` as follows
17
+
```
18
+
- new webpack.NormalModuleReplacementPlugin(/openlayers$/, path.join(__dirname, "qwc2", "libs", "openlayers")),
19
+
+ new webpack.NormalModuleReplacementPlugin(/openlayers$/, path.join(__dirname, "node_modules", "qwc2", "libs", "openlayers")),
20
+
```
21
+
22
+
No further code changes are necessary.
6
23
7
24
Update to qwc2 submodule revision [574fe2a](https://github.com/qgis/qwc2/tree/574fe2a) (06.02.2025)
0 commit comments