Skip to content

Commit

Permalink
bump changelog, add whats-new docs file (uber#695)
Browse files Browse the repository at this point in the history
  • Loading branch information
igorDykhta authored Feb 7, 2022
1 parent facbad7 commit 40933f4
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 2 deletions.
37 changes: 35 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,45 @@ _All notable changes to this project will be documented in this file. This proje

<!-- INSERT HERE -->

## [v1.0.2-alpha.1](https://github.com/uber/nebula.gl/compare/v1.0.2-alpha.0...v1.0.2-alpha.1) - TBD

### Changes

- Fix EditingMode drag to move (react-map-gl-draw) (#600)
- Add Draw Rectangle From Center mode (#530)
- Expose addTentativePosition (react-map-gl-draw) (#610)
- Fix cursor issue when using the scale mode (#522)
- Remove broken calculateZLevels (#678)
- Fix link to modes in overview (#679)
- Translate mode: translate shapes in screen space (#692)
- EditableGeojsonLayer: pickingLineWidthExtraPixels prop (#694)
- feat(modify-mode): an option to lock shape or rectangles and prevent insertion of point (#691)

## [v1.0.2-alpha.0](https://github.com/uber/nebula.gl/compare/v1.0.1-alpha.0...v1.0.2-alpha.0) - Dec 8, 2021

### Changes

- bump deck types and prett fix (#676)

## [v1.0.1-alpha.0](https://github.com/uber/nebula.gl/compare/v1.0.0-alpha.0...v1.0.1-alpha.0) - Dec 5, 2021

### Changes

- Update deck typings for deck 8.6 (#670)
- Fix "Cannot read properties of undefined (reading 'clone')" (#671)

## [v1.0.0-alpha.0](https://github.com/uber/nebula.gl/compare/v0.23.6...v1.0.0-alpha.0) - Nov 17, 2021

### Changes

- Bump deck.gl from 8.4.6 to 8.6.0, luma.gl from 8.4.3 to 8.5.10 (#660)

## [0.23.6](https://github.com/uber/nebula.gl/compare/v0.23.3...v0.23.6) - 2021-09-08

### Changes

* Update outdated links (#631)
* fix: "this.state is null" error (#628)
- Update outdated links (#631)
- fix: "this.state is null" error (#628)

## [0.23.3](https://github.com/uber/nebula.gl/compare/v0.22.3...v0.23.3) - 2021-07-14

Expand Down
3 changes: 3 additions & 0 deletions docs/table-of-contents.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
{
"entry": "docs/README"
},
{
"entry": "docs/whats-new"
},
{
"entry": "docs/roadmap"
},
Expand Down
27 changes: 27 additions & 0 deletions docs/whats-new.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# What's New

This page contains highlights of each nebula.gl release.

## nebula.gl v1.0

Release date: TBD

### Draw Rectangle From Center Mode

- new `DrawRectangleFromCenterMode`. User can draw a new rectangular `Polygon` feature by clicking the center, then along a corner of the rectangle.

### Translate mode

- `screenSpace` option can be provided in the `modeConfig` of Translate mode so the features will be translated without distortion in screen space.

### Modify mode

- `lockRectangles` option can be provided in the `modeConfig` object for ModifyMode, so the features with `properties.shape === 'Rectangle'` will preserve rectangular shape.

### EditableGeojsonLayer

- `pickingLineWidthExtraPixels` property to specify additional line width in pixels for picking. Can be useful when `EditableGeojsonLayer` is over a deck.gl layer and precise picking is problematic, and when usage of `pickingDepth` introduces performance issues.

### Other

- Check [CHANGELOG](../CHANGELOG.md) for full list of changes.

0 comments on commit 40933f4

Please sign in to comment.