Skip to content

Commit

Permalink
v0.34.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Deubler <[email protected]>
  • Loading branch information
TerminalTim committed Jun 21, 2023
1 parent 98e8fe8 commit d465d09
Show file tree
Hide file tree
Showing 15 changed files with 1,321 additions and 1,527 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 0.34.0 (2023-6-21)
### editor
* improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range.
* improved: The RangeSelector utility now defines ranges with a precision of 9 decimal places.
* fixed: Dragging the VirtualShape of a Navlink feature with 3d coordinates can result in offset geometry
* fixed: Snapping Navlink shapes can fail when Navlink and Line features are mixed in the same layer source.
* fixed: Turn restrictions from 3D data may be misaligned when forcing a 2D display.
* fixed: For 3D Addresses/Places, the anchor line of routing points can be displayed incorrectly.
* fixed: The crossing tester utility used elevation even though 2D mode was enforced.
### display
* improved: Features can now be at even higher altitudes before being clipped.
* improved: Text placed on 3D line geometry is now properly aligned.
* added: 3D models in Wavefront .obj format can now be placed and viewed on the map using [ModelStyle.model](https://heremaps.github.io/xyz-maps/docs/interfaces/core.modelstyle.html#model)
* added: Alpha support for 3D Models.
* added: 3D Models do now support ambient light, emissive light, specular highlights and normal-maps.
* fixed: Pointer events may fire incorrectly for high altitude Spheres
* fixed: Text placed on lines is now always rendered correctly.
### common
* added: Tasks can now be paused during runtime and resumed at any point in time.

## 0.33.0 (2023-4-6)
### editor
* added: Editing of 3D LineString geometry is now automatically enforced in 2D only when using 2D styling.
Expand Down
6 changes: 1 addition & 5 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
"packages": [
"packages/*"
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.33.0"
"version": "0.34.0"
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps",
"version": "0.33.0",
"version": "0.34.0",
"description": "XYZ Editor is an experimental and work in progress open-source map editor written in TypeScript/JavaScript",
"author": {
"name": "HERE Europe B.V.",
Expand Down Expand Up @@ -44,7 +44,7 @@
"fs-extra": "^10.1.0",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"lerna": "^5.4.3",
"lerna": "^7.0.2",
"lint-staged": "^13.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.19.2",
Expand Down
20 changes: 20 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 0.34.0 (2023-6-21)
### editor
* improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range.
* improved: The RangeSelector utility now defines ranges with a precision of 9 decimal places.
* fixed: Dragging the VirtualShape of a Navlink feature with 3d coordinates can result in offset geometry
* fixed: Snapping Navlink shapes can fail when Navlink and Line features are mixed in the same layer source.
* fixed: Turn restrictions from 3D data may be misaligned when forcing a 2D display.
* fixed: For 3D Addresses/Places, the anchor line of routing points can be displayed incorrectly.
* fixed: The crossing tester utility used elevation even though 2D mode was enforced.
### display
* improved: Features can now be at even higher altitudes before being clipped.
* improved: Text placed on 3D line geometry is now properly aligned.
* added: 3D models in Wavefront .obj format can now be placed and viewed on the map using [ModelStyle.model](https://heremaps.github.io/xyz-maps/docs/interfaces/core.modelstyle.html#model)
* added: Alpha support for 3D Models.
* added: 3D Models do now support ambient light, emissive light, specular highlights and normal-maps.
* fixed: Pointer events may fire incorrectly for high altitude Spheres
* fixed: Text placed on lines is now always rendered correctly.
### common
* added: Tasks can now be paused during runtime and resumed at any point in time.

## 0.33.0 (2023-4-6)
### editor
* added: Editing of 3D LineString geometry is now automatically enforced in 2D only when using 2D styling.
Expand Down
5 changes: 3 additions & 2 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-common",
"version": "0.33.0",
"version": "0.34.0",
"description": "Commonly used libraries of XYZ Maps.",
"author": {
"name": "HERE Europe B.V.",
Expand Down Expand Up @@ -31,5 +31,6 @@
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
},
"gitHead": "45c1cfc050f2fd86d9540dfff1aed75acedb27fa"
}
20 changes: 20 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 0.34.0 (2023-6-21)
### editor
* improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range.
* improved: The RangeSelector utility now defines ranges with a precision of 9 decimal places.
* fixed: Dragging the VirtualShape of a Navlink feature with 3d coordinates can result in offset geometry
* fixed: Snapping Navlink shapes can fail when Navlink and Line features are mixed in the same layer source.
* fixed: Turn restrictions from 3D data may be misaligned when forcing a 2D display.
* fixed: For 3D Addresses/Places, the anchor line of routing points can be displayed incorrectly.
* fixed: The crossing tester utility used elevation even though 2D mode was enforced.
### display
* improved: Features can now be at even higher altitudes before being clipped.
* improved: Text placed on 3D line geometry is now properly aligned.
* added: 3D models in Wavefront .obj format can now be placed and viewed on the map using [ModelStyle.model](https://heremaps.github.io/xyz-maps/docs/interfaces/core.modelstyle.html#model)
* added: Alpha support for 3D Models.
* added: 3D Models do now support ambient light, emissive light, specular highlights and normal-maps.
* fixed: Pointer events may fire incorrectly for high altitude Spheres
* fixed: Text placed on lines is now always rendered correctly.
### common
* added: Tasks can now be paused during runtime and resumed at any point in time.

## 0.33.0 (2023-4-6)
### editor
* added: Editing of 3D LineString geometry is now automatically enforced in 2D only when using 2D styling.
Expand Down
7 changes: 4 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-core",
"version": "0.33.0",
"version": "0.34.0",
"description": "Core libs of XYZ Editor.",
"author": {
"name": "HERE Europe B.V.",
Expand All @@ -27,7 +27,7 @@
},
"publishConfig": {},
"dependencies": {
"@here/xyz-maps-common": "^0.33.0"
"@here/xyz-maps-common": "^0.34.0"
},
"devDependencies": {
"@mapbox/vector-tile": "^1.3.1",
Expand All @@ -44,5 +44,6 @@
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
},
"gitHead": "45c1cfc050f2fd86d9540dfff1aed75acedb27fa"
}
20 changes: 20 additions & 0 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 0.34.0 (2023-6-21)
### editor
* improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range.
* improved: The RangeSelector utility now defines ranges with a precision of 9 decimal places.
* fixed: Dragging the VirtualShape of a Navlink feature with 3d coordinates can result in offset geometry
* fixed: Snapping Navlink shapes can fail when Navlink and Line features are mixed in the same layer source.
* fixed: Turn restrictions from 3D data may be misaligned when forcing a 2D display.
* fixed: For 3D Addresses/Places, the anchor line of routing points can be displayed incorrectly.
* fixed: The crossing tester utility used elevation even though 2D mode was enforced.
### display
* improved: Features can now be at even higher altitudes before being clipped.
* improved: Text placed on 3D line geometry is now properly aligned.
* added: 3D models in Wavefront .obj format can now be placed and viewed on the map using [ModelStyle.model](https://heremaps.github.io/xyz-maps/docs/interfaces/core.modelstyle.html#model)
* added: Alpha support for 3D Models.
* added: 3D Models do now support ambient light, emissive light, specular highlights and normal-maps.
* fixed: Pointer events may fire incorrectly for high altitude Spheres
* fixed: Text placed on lines is now always rendered correctly.
### common
* added: Tasks can now be paused during runtime and resumed at any point in time.

## 0.33.0 (2023-4-6)
### core
* fixed: Using custom margin was ignored when set via TileLayer constructor
Expand Down
9 changes: 5 additions & 4 deletions packages/display/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-display",
"version": "0.33.0",
"version": "0.34.0",
"description": "Map display of XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down Expand Up @@ -28,8 +28,8 @@
},
"publishConfig": {},
"dependencies": {
"@here/xyz-maps-common": "^0.33.0",
"@here/xyz-maps-core": "^0.33.0"
"@here/xyz-maps-common": "^0.34.0",
"@here/xyz-maps-core": "^0.34.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
Expand All @@ -43,5 +43,6 @@
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.1",
"typescript": "^4.7.4"
}
},
"gitHead": "45c1cfc050f2fd86d9540dfff1aed75acedb27fa"
}
20 changes: 20 additions & 0 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 0.34.0 (2023-6-21)
### editor
* improved: The RangeSelector utility now treats RangeMarkers that are exactly on top of each other as a valid zero-length range.
* improved: The RangeSelector utility now defines ranges with a precision of 9 decimal places.
* fixed: Dragging the VirtualShape of a Navlink feature with 3d coordinates can result in offset geometry
* fixed: Snapping Navlink shapes can fail when Navlink and Line features are mixed in the same layer source.
* fixed: Turn restrictions from 3D data may be misaligned when forcing a 2D display.
* fixed: For 3D Addresses/Places, the anchor line of routing points can be displayed incorrectly.
* fixed: The crossing tester utility used elevation even though 2D mode was enforced.
### display
* improved: Features can now be at even higher altitudes before being clipped.
* improved: Text placed on 3D line geometry is now properly aligned.
* added: 3D models in Wavefront .obj format can now be placed and viewed on the map using [ModelStyle.model](https://heremaps.github.io/xyz-maps/docs/interfaces/core.modelstyle.html#model)
* added: Alpha support for 3D Models.
* added: 3D Models do now support ambient light, emissive light, specular highlights and normal-maps.
* fixed: Pointer events may fire incorrectly for high altitude Spheres
* fixed: Text placed on lines is now always rendered correctly.
### common
* added: Tasks can now be paused during runtime and resumed at any point in time.

## 0.33.0 (2023-4-6)
### editor
* added: Editing of 3D LineString geometry is now automatically enforced in 2D only when using 2D styling.
Expand Down
11 changes: 6 additions & 5 deletions packages/editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-editor",
"version": "0.33.0",
"version": "0.34.0",
"description": "XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down Expand Up @@ -28,9 +28,9 @@
"update-changelog": "npx build-changelog"
},
"dependencies": {
"@here/xyz-maps-common": "^0.33.0",
"@here/xyz-maps-core": "^0.33.0",
"@here/xyz-maps-display": "^0.33.0"
"@here/xyz-maps-common": "^0.34.0",
"@here/xyz-maps-core": "^0.34.0",
"@here/xyz-maps-display": "^0.34.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.4",
Expand All @@ -39,5 +39,6 @@
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
},
"gitHead": "45c1cfc050f2fd86d9540dfff1aed75acedb27fa"
}
10 changes: 5 additions & 5 deletions packages/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-playground",
"version": "0.33.0",
"version": "0.34.0",
"description": "Playground for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand All @@ -19,10 +19,10 @@
"dev": "rollup -c -w"
},
"dependencies": {
"@here/xyz-maps-common": "^0.33.0",
"@here/xyz-maps-core": "^0.33.0",
"@here/xyz-maps-display": "^0.33.0",
"@here/xyz-maps-editor": "^0.33.0",
"@here/xyz-maps-common": "^0.34.0",
"@here/xyz-maps-core": "^0.34.0",
"@here/xyz-maps-display": "^0.34.0",
"@here/xyz-maps-editor": "^0.34.0",
"@monaco-editor/react": "^4.4.5",
"monaco-editor": "^0.34.0",
"react": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-test",
"version": "0.33.0",
"version": "0.34.0",
"description": "Tests for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-utils",
"version": "0.33.0",
"version": "0.34.0",
"description": "Development utilities used to build XYZ Maps modules",
"author": {
"name": "HERE Europe B.V.",
Expand Down
Loading

0 comments on commit d465d09

Please sign in to comment.