Skip to content

Commit

Permalink
release itowns-2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elias75015 committed May 16, 2024
2 parents e0a5424 + 35039bb commit 4d6f23d
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 13 deletions.
13 changes: 6 additions & 7 deletions DRAFT_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,25 @@



# Extension Geoplateforme OpenLayers, version __VERSION__

**__DATE__**
> Release Extension Geoplateforme openlayers
## Summary

Mise à jour access-lib release 3.4.2

## Changelog

* [Added]

* [Changed]

- Access-lib 3.4.2 pour fix normalyze URL + Isodistance (33196fd6d85503f39c345e600645bc0493405bd5)

* [Deprecated]

* [Removed]

* [Fixed]

- fix definitions de constructeurs (140878f91d578d008a047b3c6ef9b200743230f9)

* [Security]

---
Expand All @@ -50,7 +45,8 @@ Mise à jour access-lib release 3.4.2

- widget itineraire utilise ressource bdtopo-valhalla dans le cas d'un itinéraire pieton en mode fastest (92439bc421cc5f6ee1f10e069f2aa468e2b971b6)
- Correction du logger par définiton de la variable process (e0e3b9b5ad3e1f8c92086891564f04f792e24280)

- recherche avancée : correction du test sur le param query

* [Security]

---
Expand All @@ -63,6 +59,8 @@ Mise à jour access-lib release 3.4.2
## Summary

Corrections mineures sur le Helper et les exemples

## Changelog

* [Added]
Expand All @@ -77,6 +75,7 @@ Mise à jour access-lib release 3.4.2

- corrige couche json itowns, mauvaise url (77c6eb1b75c68a348c215c0fb0f2ee86cc80bd52)
- Correction du logger par définiton de la variable process (e0e3b9b5ad3e1f8c92086891564f04f792e24280)
- mise à jour bibliothèque d'accès en version 3.4.2

* [Security]

Expand Down
6 changes: 3 additions & 3 deletions build/scripts/release/package-itowns.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"license" : "CECILL-B",
"bugs" : {},
"dependencies" : {
"geoportal-access-lib" : "3.4.1",
"geoportal-access-lib" : "3.4.2",
"itowns" : "2.38.2",
"node-fetch" : "^2.6.1",
"proj4" : "2.7.5",
Expand All @@ -26,7 +26,7 @@
"author" : "IGNF",
"peerDependencies" : {},
"main" : "dist/GpPluginItowns-src.js",
"date" : "04/04/2024",
"date" : "16/05/2024",
"homepage" : "https://geoservices.ign.fr/documentation/utilisation_web/extension-itowns.html",
"scripts" : {},
"files" : [
Expand All @@ -37,7 +37,7 @@
"package.json"
],
"bundleDependencies" : [],
"version" : "2.5.0",
"version" : "2.5.1",
"directories" : {},
"repository" : {
"url" : "https://github.com/IGNF/geoportal-extensions.git",
Expand Down
31 changes: 31 additions & 0 deletions doc/CHANGELOG-openlayers.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Extension Geoplateforme OpenLayers, version 3.4.2](#extension-geoplateforme-openlayers-version-342)
* [Summary](#summary-56)
* [Changelog](#changelog-53)
- [Extension Geoplateforme OpenLayers, version 3.4.3](#extension-geoplateforme-openlayers-version-343)
* [Summary](#summary-57)
* [Changelog](#changelog-54)

<!-- tocstop -->

Expand Down Expand Up @@ -2092,3 +2095,31 @@ Correctif Sur la variable process utilisée dans le logger
* [Security]
---
# Extension Geoplateforme OpenLayers, version 3.4.3
**14/05/2024**
> Release Extension Geoplateforme openlayers
## Summary
Mise à jour access-lib release 3.4.2
## Changelog
* [Added]
* [Changed]
- Access-lib 3.4.2 pour fix normalyze URL + Isodistance (33196fd6d85503f39c345e600645bc0493405bd5)
* [Deprecated]
* [Removed]
* [Fixed]
- fix definitions de constructeurs (140878f91d578d008a047b3c6ef9b200743230f9)
* [Security]
---
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"name": "geoportal-extensions",
"description": "French Geoportal Extensions for OpenLayers, Leaflet and iTowns libraries",
"version": "3.0.3",
"date": "14/05/2024",
"date": "16/05/2024",
"leafletExtName": "French Geoportal Extension for Leaflet",
"leafletExtVersion": "2.4.0",
"olExtName": "French Geoportal Extension for OpenLayers",
"olExtVersion": "3.4.3",
"itownsExtName": "French Geoportal Extension for Itowns",
"itownsExtVersion": "2.5.0",
"itownsExtVersion": "2.5.1",
"main": "dist/leaflet/GpPluginLeaflet.js, dist/openlayers/GpPluginOpenLayers.js, dist/itowns/GpPluginItowns.js",
"types": "dist/leaflet/index.d.ts, dist/openlayers/index.d.ts, dist/itowns/index.d.ts",
"module": "src/Leaflet/index.js, src/OpenLayers/index.js, src/Itowns/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/Leaflet/Controls/SearchEngine.js
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ var SearchEngine = L.Control.extend(/** @lends L.geoportalControl.SearchEngine.p
}

// on ne fait pas de requête si la parametre 'text' est vide !
if (!settings.query) {
if (settings.query === null) {
return;
}

Expand Down

0 comments on commit 4d6f23d

Please sign in to comment.