Skip to content

Commit

Permalink
v0.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TerminalTim committed Sep 7, 2021
1 parent 1d98618 commit 6ae79d2
Show file tree
Hide file tree
Showing 12 changed files with 102 additions and 18 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.24.0"
"version": "0.25.0"
}
21 changes: 21 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 0.25.0 (2021-9-7)
### editor
* added: Introduced a new hook "Coordinates.update" that's being executed whenever the coordinates of a feature are updated, modified or removed. see [CoordinatesUpdateHook](https://heremaps.github.io/xyz-maps/docs/modules/editor.html#CoordinatesUpdateHook)
* fixed: hiding the RangeSelector might fail while submit operation is in progress.
### fixed
* editor: Missing history entry when calling lineShape.remove()
### general
* improved: Added missing documentation and typescript declarations for Attribute Readers/Writers and editing Hooks.
### display
* improved: The collision detection is now quantizing bounding-boxes for better space utilisation of rotated/elongated objects.
* improved: Optimized performance of collision detection.
* improved: transparent extruded polygons(Buildings) with height of 0 are hidden when they are covered by other transparent Buildings within the same zIndex.
* added: Take a screenshot of the current viewport of the map (or part of it) by using [map.snapshot](https://heremaps.github.io/xyz-maps/docs/interfaces/editor.range.html#snap)
* added: The outer edges of extruded polygons (Buildings) can now be highlighted and styled individually. See [Style.stroke](https://https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#stroke), [Style.strokeWidth](https://https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#strokewidth)
* added: The base of an extruded Polygon (Building) can now be offset from the ground. See [Style.extrudeBase](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#extrudebase)
* fixed: labels might be placed incorrectly when using multiple text styles for the same geometry.
* fixed: Points that are exactly on the tile boundary may have been placed incorrectly
* fixed: Inaccurate collision detection of objects with offset from different TileLayers with mixed tile-sizes.
* fixed: Incorrect collision detection of collision-groups that used offset and rotation when the map is pitched/rotated.
* fixed: Buildings might not be displayed when alpha is used and the height is explicitly set to 0.

## 0.24.0 (2021-7-23)
### core
* added: the remote URL of an MVTLayer can now also be defined as a function with which the URL can be configured on a tile basis
Expand Down
2 changes: 1 addition & 1 deletion 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.24.0",
"version": "0.25.0",
"description": "Commonly used libraries of XYZ Maps.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
21 changes: 21 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 0.25.0 (2021-9-7)
### editor
* added: Introduced a new hook "Coordinates.update" that's being executed whenever the coordinates of a feature are updated, modified or removed. see [CoordinatesUpdateHook](https://heremaps.github.io/xyz-maps/docs/modules/editor.html#CoordinatesUpdateHook)
* fixed: hiding the RangeSelector might fail while submit operation is in progress.
### fixed
* editor: Missing history entry when calling lineShape.remove()
### general
* improved: Added missing documentation and typescript declarations for Attribute Readers/Writers and editing Hooks.
### display
* improved: The collision detection is now quantizing bounding-boxes for better space utilisation of rotated/elongated objects.
* improved: Optimized performance of collision detection.
* improved: transparent extruded polygons(Buildings) with height of 0 are hidden when they are covered by other transparent Buildings within the same zIndex.
* added: Take a screenshot of the current viewport of the map (or part of it) by using [map.snapshot](https://heremaps.github.io/xyz-maps/docs/interfaces/editor.range.html#snap)
* added: The outer edges of extruded polygons (Buildings) can now be highlighted and styled individually. See [Style.stroke](https://https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#stroke), [Style.strokeWidth](https://https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#strokewidth)
* added: The base of an extruded Polygon (Building) can now be offset from the ground. See [Style.extrudeBase](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#extrudebase)
* fixed: labels might be placed incorrectly when using multiple text styles for the same geometry.
* fixed: Points that are exactly on the tile boundary may have been placed incorrectly
* fixed: Inaccurate collision detection of objects with offset from different TileLayers with mixed tile-sizes.
* fixed: Incorrect collision detection of collision-groups that used offset and rotation when the map is pitched/rotated.
* fixed: Buildings might not be displayed when alpha is used and the height is explicitly set to 0.

## 0.24.0 (2021-7-23)
### core
* added: the remote URL of an MVTLayer can now also be defined as a function with which the URL can be configured on a tile basis
Expand Down
4 changes: 2 additions & 2 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.24.0",
"version": "0.25.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.24.0"
"@here/xyz-maps-common": "^0.25.0"
},
"devDependencies": {
"@mapbox/vector-tile": "^1.3.1",
Expand Down
21 changes: 21 additions & 0 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 0.25.0 (2021-9-7)
### editor
* added: Introduced a new hook "Coordinates.update" that's being executed whenever the coordinates of a feature are updated, modified or removed. see [CoordinatesUpdateHook](https://heremaps.github.io/xyz-maps/docs/modules/editor.html#CoordinatesUpdateHook)
* fixed: hiding the RangeSelector might fail while submit operation is in progress.
### fixed
* editor: Missing history entry when calling lineShape.remove()
### general
* improved: Added missing documentation and typescript declarations for Attribute Readers/Writers and editing Hooks.
### display
* improved: The collision detection is now quantizing bounding-boxes for better space utilisation of rotated/elongated objects.
* improved: Optimized performance of collision detection.
* improved: transparent extruded polygons(Buildings) with height of 0 are hidden when they are covered by other transparent Buildings within the same zIndex.
* added: Take a screenshot of the current viewport of the map (or part of it) by using [map.snapshot](https://heremaps.github.io/xyz-maps/docs/interfaces/editor.range.html#snap)
* added: The outer edges of extruded polygons (Buildings) can now be highlighted and styled individually. See [Style.stroke](https://https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#stroke), [Style.strokeWidth](https://https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#strokewidth)
* added: The base of an extruded Polygon (Building) can now be offset from the ground. See [Style.extrudeBase](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#extrudebase)
* fixed: labels might be placed incorrectly when using multiple text styles for the same geometry.
* fixed: Points that are exactly on the tile boundary may have been placed incorrectly
* fixed: Inaccurate collision detection of objects with offset from different TileLayers with mixed tile-sizes.
* fixed: Incorrect collision detection of collision-groups that used offset and rotation when the map is pitched/rotated.
* fixed: Buildings might not be displayed when alpha is used and the height is explicitly set to 0.

## 0.24.0 (2021-7-23)
### core
* added: the remote URL of an MVTLayer can now also be defined as a function with which the URL can be configured on a tile basis
Expand Down
6 changes: 3 additions & 3 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.24.0",
"version": "0.25.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.24.0",
"@here/xyz-maps-core": "^0.24.0"
"@here/xyz-maps-common": "^0.25.0",
"@here/xyz-maps-core": "^0.25.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
Expand Down
21 changes: 21 additions & 0 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 0.25.0 (2021-9-7)
### editor
* added: Introduced a new hook "Coordinates.update" that's being executed whenever the coordinates of a feature are updated, modified or removed. see [CoordinatesUpdateHook](https://heremaps.github.io/xyz-maps/docs/modules/editor.html#CoordinatesUpdateHook)
* fixed: hiding the RangeSelector might fail while submit operation is in progress.
### fixed
* editor: Missing history entry when calling lineShape.remove()
### general
* improved: Added missing documentation and typescript declarations for Attribute Readers/Writers and editing Hooks.
### display
* improved: The collision detection is now quantizing bounding-boxes for better space utilisation of rotated/elongated objects.
* improved: Optimized performance of collision detection.
* improved: transparent extruded polygons(Buildings) with height of 0 are hidden when they are covered by other transparent Buildings within the same zIndex.
* added: Take a screenshot of the current viewport of the map (or part of it) by using [map.snapshot](https://heremaps.github.io/xyz-maps/docs/interfaces/editor.range.html#snap)
* added: The outer edges of extruded polygons (Buildings) can now be highlighted and styled individually. See [Style.stroke](https://https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#stroke), [Style.strokeWidth](https://https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#strokewidth)
* added: The base of an extruded Polygon (Building) can now be offset from the ground. See [Style.extrudeBase](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#extrudebase)
* fixed: labels might be placed incorrectly when using multiple text styles for the same geometry.
* fixed: Points that are exactly on the tile boundary may have been placed incorrectly
* fixed: Inaccurate collision detection of objects with offset from different TileLayers with mixed tile-sizes.
* fixed: Incorrect collision detection of collision-groups that used offset and rotation when the map is pitched/rotated.
* fixed: Buildings might not be displayed when alpha is used and the height is explicitly set to 0.

## 0.24.0 (2021-7-23)
### core
* added: the remote URL of an MVTLayer can now also be defined as a function with which the URL can be configured on a tile basis
Expand Down
8 changes: 4 additions & 4 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.24.0",
"version": "0.25.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.24.0",
"@here/xyz-maps-core": "^0.24.0",
"@here/xyz-maps-display": "^0.24.0"
"@here/xyz-maps-common": "^0.25.0",
"@here/xyz-maps-core": "^0.25.0",
"@here/xyz-maps-display": "^0.25.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.5",
Expand Down
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.24.0",
"version": "0.25.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.24.0",
"@here/xyz-maps-core": "^0.24.0",
"@here/xyz-maps-display": "^0.24.0",
"@here/xyz-maps-editor": "^0.24.0",
"@here/xyz-maps-common": "^0.25.0",
"@here/xyz-maps-core": "^0.25.0",
"@here/xyz-maps-display": "^0.25.0",
"@here/xyz-maps-editor": "^0.25.0",
"@monaco-editor/react": "^4.2.2",
"monaco-editor": "^0.27.0",
"react": "^17.0.2",
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.24.0",
"version": "0.25.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.24.0",
"version": "0.25.0",
"description": "Development utilities used to build XYZ Maps modules",
"author": {
"name": "HERE Europe B.V.",
Expand Down

0 comments on commit 6ae79d2

Please sign in to comment.