Skip to content

Commit

Permalink
release v2.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gchoqueux committed May 30, 2024
1 parent d49ceb6 commit 7c756b7
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 12 deletions.
47 changes: 47 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
<a name="2.44.0"></a>
# [2.44.0](https://github.com/iTowns/itowns/compare/v2.43.1...v2.44.0) (2024-05-29)


### Features

* Add support for Cloud Optimized Point Clouds (COPC) ([f1e014f](https://github.com/iTowns/itowns/commit/f1e014f))
* **examples:** add COPC url loader ([6b4a5f2](https://github.com/iTowns/itowns/commit/6b4a5f2))
* **LasParser:** add parsing of chunks of LAS files ([eec3197](https://github.com/iTowns/itowns/commit/eec3197))


### Bug Fixes

* **3dTilesLayer:** fix transparency for 3dTilesLayer ([af4d061](https://github.com/iTowns/itowns/commit/af4d061))
* **entwine:** change transparency settings ([47f859d](https://github.com/iTowns/itowns/commit/47f859d))
* **example:** change klokantech url in 3dtile_ion.html ([14891fd](https://github.com/iTowns/itowns/commit/14891fd))
* **test-functional:** fixes on hooks_functional.js ([bc41708](https://github.com/iTowns/itowns/commit/bc41708))
* **test:** fetcher.js augment timeout limit ([5668334](https://github.com/iTowns/itowns/commit/5668334))
* **test:** fix change on id for test functional ([3780c56](https://github.com/iTowns/itowns/commit/3780c56))


### Code Refactoring

* **3dTilesDebug:** add properties hasPnts for pnts fields in GUI ([ff0ff3d](https://github.com/iTowns/itowns/commit/ff0ff3d))
* **3dTiles:** supp unused parameter in debug set up ([5bf62f2](https://github.com/iTowns/itowns/commit/5bf62f2))
* **PotreeDebug:** rename PotreeDebug to PointCloudDebug ([d1eb374](https://github.com/iTowns/itowns/commit/d1eb374))
* **test-functional:** reworks on hooks-functional.js: better gestion of errors and save initial camera position only once ([488d6a1](https://github.com/iTowns/itowns/commit/488d6a1))


### Workflow and chores

* release v2.44.0 ([108450b](https://github.com/iTowns/itowns/commit/108450b))
* **architecture:** monorepo structure ([1e04731](https://github.com/iTowns/itowns/commit/1e04731))
* change namescate to test publishing ([7d0b596](https://github.com/iTowns/itowns/commit/7d0b596))
* move prepare install to Main package. ([49c222f](https://github.com/iTowns/itowns/commit/49c222f))
* prepare publish ([814347b](https://github.com/iTowns/itowns/commit/814347b))
* prepare publish ([2f1926f](https://github.com/iTowns/itowns/commit/2f1926f))
* temp change package name ([e02964a](https://github.com/iTowns/itowns/commit/e02964a))


### Documentation

* Add link to governance repo in the README ([d3a317b](https://github.com/iTowns/itowns/commit/d3a317b))
* **COPC:** expose doc for COPCLayer and COPCSource ([48fb9df](https://github.com/iTowns/itowns/commit/48fb9df))



<a name="2.43.1"></a>
## [2.43.1](https://github.com/iTowns/itowns/compare/v2.43.0...v2.43.1) (2024-04-30)

Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "2.43.1",
"version": "2.44.0",
"description": "A JS/WebGL framework for 3D geospatial data visualization",
"type": "module",
"main": "./packages/lib/Main/Main.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/Geodesy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itowns_gc/geodesy",
"version": "2.43.2-next.0",
"version": "2.44.0",
"description": "Geodesy",
"type": "module",
"main": "lib/Main.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/Gui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@itowns_gc/gui",
"version": "2.43.2-next.0",
"version": "2.44.0",
"description": "Gui",
"type": "module",
"main": "lib/Main.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/Main/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "itowns_gc",
"version": "2.43.2-next.0",
"version": "2.44.0",
"description": "A JS/WebGL framework for 3D geospatial data visualization",
"type": "module",
"main": "lib/Main.js",
Expand Down Expand Up @@ -49,7 +49,7 @@
"url": "https://github.com/iTowns/itowns/issues"
},
"dependencies": {
"@itowns_gc/geodesy": "^2.43.2-next.0",
"@itowns_gc/geodesy": "^2.44.0",
"@mapbox/mapbox-gl-style-spec": "^13.28.0",
"@mapbox/vector-tile": "^1.3.1",
"@tmcw/togeojson": "^5.8.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/Main/src/Main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const conf = {
version: '2.43.1',
version: '2.44.0',
};

export const REVISION = conf.version;
Expand Down

0 comments on commit 7c756b7

Please sign in to comment.