Skip to content

Commit

Permalink
v0.14.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Deubler <[email protected]>
  • Loading branch information
TerminalTim committed Jul 14, 2020
1 parent d71883f commit 531179e
Show file tree
Hide file tree
Showing 13 changed files with 103 additions and 18 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.14.0 (2020-7-14)
### editor
* added: attribute reader/writer interface to allow use of custom zLevel models
### display
* added: styling support of 3-digit hex color codes
* added: styling now supports "zoomRanges" to define zoom dependant values. values for intermediate zoom levels will be interpolated linearly. e.g. radius
* added: hide tile boundaries of polygon geometry from clipped datasources
* improved: disable pointerevent triggering while mapview is changing
* improved: more robust/tolerant parsing of invalid css rgb(a) color codes
* fixed: trigger pointerevents for MVT datasources
* fixed: artifacts when map is pitched and image tiles are placed below vector tiles
* fixed: allow style functions for font stroke/fill colors
* fixed: possible flicker of tile boundaries
* fixed: call stylefunctions always with correct zoomlevel
### core
* fixed: consider tilesize for contentbounds determination when tilemargin is used

## 0.13.0 (2020-6-10)
### editor
* added: Full editing support of LocalProvider data with Editor component. use providerOptions.editable=true to allow editing.
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.13.0",
"version": "0.14.0",
"npmClient": "yarn",
"useWorkspaces": true
}
21 changes: 19 additions & 2 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.14.0 (2020-7-14)
### editor
* added: attribute reader/writer interface to allow use of custom zLevel models
### display
* added: styling support of 3-digit hex color codes
* added: styling now supports "zoomRanges" to define zoom dependant values. values for intermediate zoom levels will be interpolated linearly. e.g. radius
* added: hide tile boundaries of polygon geometry from clipped datasources
* improved: disable pointerevent triggering while mapview is changing
* improved: more robust/tolerant parsing of invalid css rgb(a) color codes
* fixed: trigger pointerevents for MVT datasources
* fixed: artifacts when map is pitched and image tiles are placed below vector tiles
* fixed: allow style functions for font stroke/fill colors
* fixed: possible flicker of tile boundaries
* fixed: call stylefunctions always with correct zoomlevel
### core
* fixed: consider tilesize for contentbounds determination when tilemargin is used

## 0.13.0 (2020-6-10)
### editor
* added: Full editing support of LocalProvider data with Editor component. use providerOptions.editable=true to allow editing.
Expand All @@ -16,8 +33,8 @@
## 0.12.0 (2020-5-22)
### display
* added: control minimum distance of repeated text labels on line geometries via style.repeat=number
* improved: optimized memory usage and performance improvement of geometry buffer creation
* improved: optimized triangulation of polygons from unclipped source data
* improved: optimised memory usage and performance improvement of geometry buffer creation
* improved: optimised triangulation of polygons from unclipped source data
* improved: reuse projected coordinates if line geometry is rendered multiple times
* improved: major performance improvement of line triangulation of very large unclipped geometries
* fixed: behavior settings on mobile/touch have no effect
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.13.0",
"version": "0.14.0",
"description": "Common libs of XYZ Editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
21 changes: 19 additions & 2 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.14.0 (2020-7-14)
### editor
* added: attribute reader/writer interface to allow use of custom zLevel models
### display
* added: styling support of 3-digit hex color codes
* added: styling now supports "zoomRanges" to define zoom dependant values. values for intermediate zoom levels will be interpolated linearly. e.g. radius
* added: hide tile boundaries of polygon geometry from clipped datasources
* improved: disable pointerevent triggering while mapview is changing
* improved: more robust/tolerant parsing of invalid css rgb(a) color codes
* fixed: trigger pointerevents for MVT datasources
* fixed: artifacts when map is pitched and image tiles are placed below vector tiles
* fixed: allow style functions for font stroke/fill colors
* fixed: possible flicker of tile boundaries
* fixed: call stylefunctions always with correct zoomlevel
### core
* fixed: consider tilesize for contentbounds determination when tilemargin is used

## 0.13.0 (2020-6-10)
### editor
* added: Full editing support of LocalProvider data with Editor component. use providerOptions.editable=true to allow editing.
Expand All @@ -16,8 +33,8 @@
## 0.12.0 (2020-5-22)
### display
* added: control minimum distance of repeated text labels on line geometries via style.repeat=number
* improved: optimized memory usage and performance improvement of geometry buffer creation
* improved: optimized triangulation of polygons from unclipped source data
* improved: optimised memory usage and performance improvement of geometry buffer creation
* improved: optimised triangulation of polygons from unclipped source data
* improved: reuse projected coordinates if line geometry is rendered multiple times
* improved: major performance improvement of line triangulation of very large unclipped geometries
* fixed: behavior settings on mobile/touch have no effect
Expand Down
2 changes: 1 addition & 1 deletion 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.13.0",
"version": "0.14.0",
"description": "Core libs of XYZ Editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
21 changes: 19 additions & 2 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.14.0 (2020-7-14)
### editor
* added: attribute reader/writer interface to allow use of custom zLevel models
### display
* added: styling support of 3-digit hex color codes
* added: styling now supports "zoomRanges" to define zoom dependant values. values for intermediate zoom levels will be interpolated linearly. e.g. radius
* added: hide tile boundaries of polygon geometry from clipped datasources
* improved: disable pointerevent triggering while mapview is changing
* improved: more robust/tolerant parsing of invalid css rgb(a) color codes
* fixed: trigger pointerevents for MVT datasources
* fixed: artifacts when map is pitched and image tiles are placed below vector tiles
* fixed: allow style functions for font stroke/fill colors
* fixed: possible flicker of tile boundaries
* fixed: call stylefunctions always with correct zoomlevel
### core
* fixed: consider tilesize for contentbounds determination when tilemargin is used

## 0.13.0 (2020-6-10)
### editor
* added: Full editing support of LocalProvider data with Editor component. use providerOptions.editable=true to allow editing.
Expand All @@ -16,8 +33,8 @@
## 0.12.0 (2020-5-22)
### display
* added: control minimum distance of repeated text labels on line geometries via style.repeat=number
* improved: optimized memory usage and performance improvement of geometry buffer creation
* improved: optimized triangulation of polygons from unclipped source data
* improved: optimised memory usage and performance improvement of geometry buffer creation
* improved: optimised triangulation of polygons from unclipped source data
* improved: reuse projected coordinates if line geometry is rendered multiple times
* improved: major performance improvement of line triangulation of very large unclipped geometries
* fixed: behavior settings on mobile/touch have no effect
Expand Down
2 changes: 1 addition & 1 deletion 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.13.0",
"version": "0.14.0",
"description": "Map display of XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-docs",
"version": "0.13.0",
"version": "0.14.0",
"description": "Documentation for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
25 changes: 21 additions & 4 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.14.0 (2020-7-14)
### editor
* added: attribute reader/writer interface to allow use of custom zLevel models
### display
* added: styling support of 3-digit hex color codes
* added: styling now supports "zoomRanges" to define zoom dependant values. values for intermediate zoom levels will be interpolated linearly. e.g. radius
* added: hide tile boundaries of polygon geometry from clipped datasources
* improved: disable pointerevent triggering while mapview is changing
* improved: more robust/tolerant parsing of invalid css rgb(a) color codes
* fixed: trigger pointerevents for MVT datasources
* fixed: artifacts when map is pitched and image tiles are placed below vector tiles
* fixed: allow style functions for font stroke/fill colors
* fixed: possible flicker of tile boundaries
* fixed: call stylefunctions always with correct zoomlevel
### core
* fixed: consider tilesize for contentbounds determination when tilemargin is used

## 0.13.0 (2020-6-10)
### editor
* added: Full editing support of LocalProvider data with Editor component. use providerOptions.editable=true to allow editing.
Expand All @@ -16,8 +33,8 @@
## 0.12.0 (2020-5-22)
### display
* added: control minimum distance of repeated text labels on line geometries via style.repeat=number
* improved: optimized memory usage and performance improvement of geometry buffer creation
* improved: optimized triangulation of polygons from unclipped source data
* improved: optimised memory usage and performance improvement of geometry buffer creation
* improved: optimised triangulation of polygons from unclipped source data
* improved: reuse projected coordinates if line geometry is rendered multiple times
* improved: major performance improvement of line triangulation of very large unclipped geometries
* fixed: behavior settings on mobile/touch have no effect
Expand Down Expand Up @@ -58,9 +75,9 @@

## 0.10.1 (2020-3-9)
### general
* fixed: bundling issues when webpack is used to consume packages
* fixed: bundling issues when webpack is used to consume packages
### editor
* fixed: Line/Navlink Shapes not displayed correctly in case of feature style is using value functions
* fixed: Line/Navlink Shapes not displayed correctly in case of feature style is using value functions

## 0.10.0 (2020-03-03)
### display
Expand Down
2 changes: 1 addition & 1 deletion 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.13.0",
"version": "0.14.0",
"description": "XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
2 changes: 1 addition & 1 deletion 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.13.0",
"version": "0.14.0",
"description": "Playground for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
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.13.0",
"version": "0.14.0",
"description": "Tests for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down

0 comments on commit 531179e

Please sign in to comment.