From ee8e2501d3f3f4911902242d99f46c31679f8ffb Mon Sep 17 00:00:00 2001 From: gchoqueux Date: Mon, 31 Jan 2022 18:52:39 +0100 Subject: [PATCH] release v2.37.0 --- changelog.md | 52 +++++++++++++++++++++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/Main.js | 2 +- 4 files changed, 56 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index 2732d2f356..20dbc9b227 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,55 @@ + +# [2.37.0](https://github.com/iTowns/itowns/compare/v2.36.2...v2.37.0) (2022-01-31) + + +### Features + +* **Geoid:** add support for geoid heights ([38569f6](https://github.com/iTowns/itowns/commit/38569f6)) +* **Parser:** add parsers for GTX, ISG and GDF file formats ([a55b154](https://github.com/iTowns/itowns/commit/a55b154)) +* **View:** add a method to pick world coordinates ([91ccfe3](https://github.com/iTowns/itowns/commit/91ccfe3)) +* **View:** add support for ortho camera in getScale method ([06eb805](https://github.com/iTowns/itowns/commit/06eb805)) +* **View:** dispatch an event when camera is moved ([37cfb90](https://github.com/iTowns/itowns/commit/37cfb90)) +* **Widget:** add a minimap widget ([6d82c74](https://github.com/iTowns/itowns/commit/6d82c74)) + + +### Bug Fixes + +* **GlobeControl:** stop damping when launching new animation ([dad7641](https://github.com/iTowns/itowns/commit/dad7641)) +* **test:** fetch local laz files behind proxy. ([b732c0a](https://github.com/iTowns/itowns/commit/b732c0a)) +* **View:** fix picking radius with polygons ([b7be8e9](https://github.com/iTowns/itowns/commit/b7be8e9)) + + +### Examples + +* **Compass:** add an example of a compass in a GlobeView ([3290820](https://github.com/iTowns/itowns/commit/3290820)) +* **FileSource:** add exemples of FileSource instantiation ([7db9bcb](https://github.com/iTowns/itowns/commit/7db9bcb)) +* **Potree:** add an example of Potree intgration within iTowns ([4bbc772](https://github.com/iTowns/itowns/commit/4bbc772)) +* **Potree:** fix minor issues on the example ([1ee50c8](https://github.com/iTowns/itowns/commit/1ee50c8)) +* **source / file:** simplify FileSource usage ([21317b4](https://github.com/iTowns/itowns/commit/21317b4)) +* **Widget:** add an example of minimap widget ([2b89f83](https://github.com/iTowns/itowns/commit/2b89f83)) +* **Widgets:** add a plugin to display widgets ([ec56fa9](https://github.com/iTowns/itowns/commit/ec56fa9)) +* add GeoidLayer implementation example ([5df8cc5](https://github.com/iTowns/itowns/commit/5df8cc5)) + + +### Code Refactoring + +* **TileMesh:** refactorize bbox update method ([18196b6](https://github.com/iTowns/itowns/commit/18196b6)) +* **Widgets:** rename widgets to navigation ([509a042](https://github.com/iTowns/itowns/commit/509a042)) + + +### Workflow and chores + +* release v2.37.0 ([97e59b6](https://github.com/iTowns/itowns/commit/97e59b6)) +* **deps-dev:** bump marked from 4.0.8 to 4.0.10 ([cfc9100](https://github.com/iTowns/itowns/commit/cfc9100)) +* add potree repo and symbolic link to gitignore ([d7bb92c](https://github.com/iTowns/itowns/commit/d7bb92c)) +* change itowns.github.io deploying ([870299f](https://github.com/iTowns/itowns/commit/870299f)) +* deploy itowns and potree bundle. ([b104fd5](https://github.com/iTowns/itowns/commit/b104fd5)) +* fix eslint rules. ([6fff078](https://github.com/iTowns/itowns/commit/6fff078)) +* update CONTRIBUTING.md ([96cfb21](https://github.com/iTowns/itowns/commit/96cfb21)) +* update packages. ([eb7c8d5](https://github.com/iTowns/itowns/commit/eb7c8d5)) + + + ## [2.36.2](https://github.com/iTowns/itowns/compare/v2.36.1...v2.36.2) (2021-11-29) diff --git a/package-lock.json b/package-lock.json index 7961b44585..adafc5d5f2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "itowns", - "version": "2.36.2", + "version": "2.37.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "itowns", - "version": "2.36.2", + "version": "2.37.0", "license": "(CECILL-B OR MIT)", "dependencies": { "@loaders.gl/las": "^3.1.3", diff --git a/package.json b/package.json index e4633256da..5a6d981cc5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "itowns", - "version": "2.36.2", + "version": "2.37.0", "description": "A JS/WebGL framework for 3D geospatial data visualization", "main": "lib/Main.js", "scripts": { diff --git a/src/Main.js b/src/Main.js index e428168881..6de484e065 100644 --- a/src/Main.js +++ b/src/Main.js @@ -1,5 +1,5 @@ const conf = { - version: '2.36.2', + version: '2.37.0', }; export const REVISION = conf.version;