Skip to content

Commit

Permalink
release 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
elias75015 committed Aug 29, 2023
2 parents cde059f + 2991cec commit ae24d60
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions DRAFT_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Bibliothèque d'accès aux services Géoportail, version 3.3.3
# Bibliothèque d'accès aux services Géoportail, version 3.3.4

**02/08/2023 : 3.3.3**
**29/08/2023 : 3.3.4**

> release of geoportal access library
## Summary

Correction mineure sur l'utilisation d'un fichier de configuration local
Correction de la récupération automatique du paramètre style pour les couches géoportail de type WMS Vecteur

## Changelog

Expand All @@ -18,7 +18,7 @@ Correction mineure sur l'utilisation d'un fichier de configuration local

* [Fixed]

- Correction parsing des ressources liées à un fichier de config local (#85)
- Récupération du string vide des styles WMS vecteur pour les couches Géoportail

* [Deprecated]

Expand Down
Binary file removed geoportal-access-lib-3.3.2.tgz
Binary file not shown.
Binary file added geoportal-access-lib-3.3.4.tgz
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "geoportal-access-lib",
"version": "3.3.3",
"date": "02/08/2023",
"version": "3.3.4",
"date": "29/08/2023",
"description": "French Geoportal resources access library",
"module": "src/Gp.js",
"main": "dist/GpServices-src.js",
Expand Down
2 changes: 1 addition & 1 deletion src/Services/Config/ConfigInterface.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ ConfigInterface.prototype = {
const wmsTypeRegex = /\/v\//;
// WMS vector style always empty (not in getCap)
if (wmsTypeRegex.test(params.url)) {
params.styles = "";
params.styles = " ";
} else {
// WMS raster style is defined in getCap
params.styles = layerConf.styles[0].name;
Expand Down

0 comments on commit ae24d60

Please sign in to comment.