Skip to content

Commit

Permalink
v0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TerminalTim committed Jul 1, 2022
1 parent f5f5e95 commit bcaa212
Show file tree
Hide file tree
Showing 12 changed files with 139 additions and 19 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.27.0"
"version": "0.28.0"
}
30 changes: 30 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
## 0.28.0 (2022-7-1)
### editor
* added: Tapping on LineShape or Marker features will trigger pointerdown events.
* added: The drag behavior of Markers and LineShape features can now be configured to define the "dragAxis" or "dragPlane" on which to drag the feature.
* added: It is now possible to use custom IDs for newly created features by using [option.forceRandomFeatureId](https://heremaps.github.io/xyz-maps/docs/interfaces/core.editableremotetileprovideroptions.html#forceRandomFeatureId).
* added: The altitude of Marker Features can now be modified by user interaction.
* added: Basic editing of 3d line geometry is now possible.
* fixed: Dragging Features with the right mouse button may result in tiny map movements.
### core
* fixed: anchor "Centroid" is now correctly declared in typescript declarations
### deps
* build: bump shelljs from 0.8.4 to 0.8.5
* build: bump engine.io from 4.1.1 to 4.1.2
* build: bump minimist from 1.2.5 to 1.2.6
* build: bump follow-redirects from 1.14.1 to 1.15.1
* build: bump async from 2.6.3 to 2.6.4
* build: bump trim-off-newlines from 1.0.1 to 1.0.3
* build: bump node-fetch from 2.6.1 to 2.6.7
* build: bump log4js from 6.3.0 to 6.5.2
### display
* improved: Optimized point placement for tiny polygon geometries when using style.anchor="Centroid"
* added: Box Styles can be rotated around the z-axis.
* added: The minimum threshold for detecting a pan or pitch map gesture can now be configured.
* added: The altitude of point and line geometry can now be displayed in 3D space using styles of type Circle, Rectangle, Image, Text and Line. See: [Style.altitude](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#altitude).
* added: Pointerevent triggering now supports 3d geometry and styles.
* added: New 3d styles of type "Sphere" and "Box" have been added.
* fixed: The pointer-event target is now set correctly in all cases.
* fixed: When using zLayer, an incorrect drawing order could occur in rare cases.
* fixed: The placement of icon using different "alignments" is now correct in all cases.

## 0.27.0 (2021-12-15)
### editor
* added: Editing of Line Features with "MultiLineString" geometry is now supported.
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.27.0",
"version": "0.28.0",
"description": "Commonly used libraries of XYZ Maps.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
30 changes: 30 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
## 0.28.0 (2022-7-1)
### editor
* added: Tapping on LineShape or Marker features will trigger pointerdown events.
* added: The drag behavior of Markers and LineShape features can now be configured to define the "dragAxis" or "dragPlane" on which to drag the feature.
* added: It is now possible to use custom IDs for newly created features by using [option.forceRandomFeatureId](https://heremaps.github.io/xyz-maps/docs/interfaces/core.editableremotetileprovideroptions.html#forceRandomFeatureId).
* added: The altitude of Marker Features can now be modified by user interaction.
* added: Basic editing of 3d line geometry is now possible.
* fixed: Dragging Features with the right mouse button may result in tiny map movements.
### core
* fixed: anchor "Centroid" is now correctly declared in typescript declarations
### deps
* build: bump shelljs from 0.8.4 to 0.8.5
* build: bump engine.io from 4.1.1 to 4.1.2
* build: bump minimist from 1.2.5 to 1.2.6
* build: bump follow-redirects from 1.14.1 to 1.15.1
* build: bump async from 2.6.3 to 2.6.4
* build: bump trim-off-newlines from 1.0.1 to 1.0.3
* build: bump node-fetch from 2.6.1 to 2.6.7
* build: bump log4js from 6.3.0 to 6.5.2
### display
* improved: Optimized point placement for tiny polygon geometries when using style.anchor="Centroid"
* added: Box Styles can be rotated around the z-axis.
* added: The minimum threshold for detecting a pan or pitch map gesture can now be configured.
* added: The altitude of point and line geometry can now be displayed in 3D space using styles of type Circle, Rectangle, Image, Text and Line. See: [Style.altitude](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#altitude).
* added: Pointerevent triggering now supports 3d geometry and styles.
* added: New 3d styles of type "Sphere" and "Box" have been added.
* fixed: The pointer-event target is now set correctly in all cases.
* fixed: When using zLayer, an incorrect drawing order could occur in rare cases.
* fixed: The placement of icon using different "alignments" is now correct in all cases.

## 0.27.0 (2021-12-15)
### editor
* added: Editing of Line Features with "MultiLineString" geometry is now supported.
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.27.0",
"version": "0.28.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.27.0"
"@here/xyz-maps-common": "^0.28.0"
},
"devDependencies": {
"@mapbox/vector-tile": "^1.3.1",
Expand Down
30 changes: 30 additions & 0 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
## 0.28.0 (2022-7-1)
### editor
* added: Tapping on LineShape or Marker features will trigger pointerdown events.
* added: The drag behavior of Markers and LineShape features can now be configured to define the "dragAxis" or "dragPlane" on which to drag the feature.
* added: It is now possible to use custom IDs for newly created features by using [option.forceRandomFeatureId](https://heremaps.github.io/xyz-maps/docs/interfaces/core.editableremotetileprovideroptions.html#forceRandomFeatureId).
* added: The altitude of Marker Features can now be modified by user interaction.
* added: Basic editing of 3d line geometry is now possible.
* fixed: Dragging Features with the right mouse button may result in tiny map movements.
### core
* fixed: anchor "Centroid" is now correctly declared in typescript declarations
### deps
* build: bump shelljs from 0.8.4 to 0.8.5
* build: bump engine.io from 4.1.1 to 4.1.2
* build: bump minimist from 1.2.5 to 1.2.6
* build: bump follow-redirects from 1.14.1 to 1.15.1
* build: bump async from 2.6.3 to 2.6.4
* build: bump trim-off-newlines from 1.0.1 to 1.0.3
* build: bump node-fetch from 2.6.1 to 2.6.7
* build: bump log4js from 6.3.0 to 6.5.2
### display
* improved: Optimized point placement for tiny polygon geometries when using style.anchor="Centroid"
* added: Box Styles can be rotated around the z-axis.
* added: The minimum threshold for detecting a pan or pitch map gesture can now be configured.
* added: The altitude of point and line geometry can now be displayed in 3D space using styles of type Circle, Rectangle, Image, Text and Line. See: [Style.altitude](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#altitude).
* added: Pointerevent triggering now supports 3d geometry and styles.
* added: New 3d styles of type "Sphere" and "Box" have been added.
* fixed: The pointer-event target is now set correctly in all cases.
* fixed: When using zLayer, an incorrect drawing order could occur in rare cases.
* fixed: The placement of icon using different "alignments" is now correct in all cases.

## 0.27.0 (2021-12-15)
### editor
* added: Editing of Line Features with "MultiLineString" geometry is now supported.
Expand Down
8 changes: 4 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.27.0",
"version": "0.28.0",
"description": "Map display of XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down Expand Up @@ -28,18 +28,18 @@
},
"publishConfig": {},
"dependencies": {
"@here/xyz-maps-common": "^0.27.0",
"@here/xyz-maps-core": "^0.27.0"
"@here/xyz-maps-common": "^0.28.0",
"@here/xyz-maps-core": "^0.28.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@rollup/plugin-virtual": "^2.1.0",
"rollup-plugin-glslify": "^1.2.1",
"earcut": "^2.2.3",
"gl-matrix": "^3.4.3",
"rollup": "^2.74.1",
"rollup-plugin-glslify": "^1.2.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
Expand Down
30 changes: 30 additions & 0 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
## 0.28.0 (2022-7-1)
### editor
* added: Tapping on LineShape or Marker features will trigger pointerdown events.
* added: The drag behavior of Markers and LineShape features can now be configured to define the "dragAxis" or "dragPlane" on which to drag the feature.
* added: It is now possible to use custom IDs for newly created features by using [option.forceRandomFeatureId](https://heremaps.github.io/xyz-maps/docs/interfaces/core.editableremotetileprovideroptions.html#forceRandomFeatureId).
* added: The altitude of Marker Features can now be modified by user interaction.
* added: Basic editing of 3d line geometry is now possible.
* fixed: Dragging Features with the right mouse button may result in tiny map movements.
### core
* fixed: anchor "Centroid" is now correctly declared in typescript declarations
### deps
* build: bump shelljs from 0.8.4 to 0.8.5
* build: bump engine.io from 4.1.1 to 4.1.2
* build: bump minimist from 1.2.5 to 1.2.6
* build: bump follow-redirects from 1.14.1 to 1.15.1
* build: bump async from 2.6.3 to 2.6.4
* build: bump trim-off-newlines from 1.0.1 to 1.0.3
* build: bump node-fetch from 2.6.1 to 2.6.7
* build: bump log4js from 6.3.0 to 6.5.2
### display
* improved: Optimized point placement for tiny polygon geometries when using style.anchor="Centroid"
* added: Box Styles can be rotated around the z-axis.
* added: The minimum threshold for detecting a pan or pitch map gesture can now be configured.
* added: The altitude of point and line geometry can now be displayed in 3D space using styles of type Circle, Rectangle, Image, Text and Line. See: [Style.altitude](https://heremaps.github.io/xyz-maps/docs/interfaces/core.style.html#altitude).
* added: Pointerevent triggering now supports 3d geometry and styles.
* added: New 3d styles of type "Sphere" and "Box" have been added.
* fixed: The pointer-event target is now set correctly in all cases.
* fixed: When using zLayer, an incorrect drawing order could occur in rare cases.
* fixed: The placement of icon using different "alignments" is now correct in all cases.

## 0.27.0 (2021-12-15)
### editor
* added: Editing of Line Features with "MultiLineString" geometry is now supported.
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.27.0",
"version": "0.28.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.27.0",
"@here/xyz-maps-core": "^0.27.0",
"@here/xyz-maps-display": "^0.27.0"
"@here/xyz-maps-common": "^0.28.0",
"@here/xyz-maps-core": "^0.28.0",
"@here/xyz-maps-display": "^0.28.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.2",
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.27.0",
"version": "0.28.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.27.0",
"@here/xyz-maps-core": "^0.27.0",
"@here/xyz-maps-display": "^0.27.0",
"@here/xyz-maps-editor": "^0.27.0",
"@here/xyz-maps-common": "^0.28.0",
"@here/xyz-maps-core": "^0.28.0",
"@here/xyz-maps-display": "^0.28.0",
"@here/xyz-maps-editor": "^0.28.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.27.0",
"version": "0.28.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.27.0",
"version": "0.28.0",
"description": "Development utilities used to build XYZ Maps modules",
"author": {
"name": "HERE Europe B.V.",
Expand Down

0 comments on commit bcaa212

Please sign in to comment.