Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Dec 16, 2024
1 parent 84d9b82 commit 17c7f37
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 29 deletions.
35 changes: 13 additions & 22 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased](https://github.com/rerun-io/rerun/compare/latest...HEAD)

## [0.21.0](https://github.com/rerun-io/rerun/compare/0.20.3...0.21.0) - Graph view, 3D Grid & Undo/Redo
## [0.21.0](https://github.com/rerun-io/rerun/compare/0.20.3...0.21.0) - Graph view, 3D Grid & UI/UX improvements

TODO: add link to release video

Expand All @@ -14,8 +14,6 @@ TODO: add link to release video

#### Graph view

TODO: add Jochen to not-contributors

We've added two new logging primitives: [`GraphNodes`](https://rerun.io/docs/reference/types/archetypes/graph_nodes) and [`GraphEdges`](https://rerun.io/docs/reference/types/archetypes/graph_edges) that can be used to visualize node-link diagrams. For this, we have implemented a new Graph View that uses force-based layouts to draw graphs.

<p align="center">
Expand All @@ -24,46 +22,39 @@ We've added two new logging primitives: [`GraphNodes`](https://rerun.io/docs/ref
</picture>
</p>

TODO: link to https://github.com/rerun-io/rerun/pull/7500 for the curious
Have a look at https://github.com/rerun-io/rerun/pull/7500 if you want to learn to more.

#### 3D Grid

The 3D view now offers an infinite 3D grid, enabled by default. Further controls and settings are available as usual through the [blueprint](TODO) and/or the selection panel.
The 3D view now offers an infinite 3D grid, enabled by default. Further controls and settings are available as usual through the blueprint and/or the selection panel.

<p align="center">
<picture>
<img src="https://static.rerun.io/changelog_grid/f8bc043a18de0409b12a05a245d50de19fdf9375/480w.png" alt="">
</picture>
</p>

TODO: link to
All the nitty gritty details in:
* https://github.com/rerun-io/rerun/pull/8230
* https://github.com/rerun-io/rerun/pull/8234

#### Undo/Redo
### UI/UX improvements

* Undo/Redo
TODO: embed somehow emil's loom about it

#### Drag-n-drop

TODO: drag-n-drop????

#### View screenshots

TODO: is screenshotting a highlight?

#### Breadcrumbs and other UI/UX improvements

* Drag-n-drop
* View screenshots
* Breadcrumbs and other UI/UX improvements
TODO: Katya's loom
TODO: breadcrumbs?


### ⚠️ Breaking changes

TODO: mention migration kernel
* Near clip plane for `Spatial2D` views now defaults to `0.1` in 3D scene units.
* Blueprint: Types and fields got renamed from `.*space_view.*`/`.*SpaceView.*` to `.*view.*`/`.*View.*`.
* 3D transform arrow visualization show up less often by default.

TODO: fill in
🧳 Migration guide: https://rerun.io/docs/reference/migration/migration-0-21
Read our 🧳 migration guide for more detailed information: https://rerun.io/docs/reference/migration/migration-0-21.

### 🔎 Details

Expand Down
12 changes: 5 additions & 7 deletions docs/content/reference/migration/migration-0-21.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,15 @@ rr.send_blueprint(
```


### Types and fields got renamed from `.*space_view.*`/`.*SpaceView.*` to `.*view.*`/`.*View.*`
### Blueprint types and fields got renamed from `.*space_view.*`/`.*SpaceView.*` to `.*view.*`/`.*View.*`

Various types and fields got changed to refer to "views" rather than "space views".
This exclusively affects the Python blueprint sdk:
This exclusively affects the Python blueprint sdk.

#### Field/argument changes:
#### Field/argument changes

TODO: search and replaced too far

* `ViewportBlueprint(...auto_views=...)` -> `ViewportBlueprint(...auto_views=...)`
* `Blueprint(...auto_views=...)` -> `Blueprint(...auto_views=...)`
* `ViewportBlueprint(...auto_space_views=...)` -> `ViewportBlueprint(...auto_views=...)`
* `Blueprint(...auto_space_views=...)` -> `Blueprint(...auto_views=...)`

#### Type changes

Expand Down

0 comments on commit 17c7f37

Please sign in to comment.