Skip to content

Commit

Permalink
mark all fbs as unreleased
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 committed Oct 25, 2024
1 parent dbf290e commit 9625594
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ namespace rerun.archetypes;
table GeoPoints (
"attr.rust.derive": "PartialEq",
"attr.docs.category": "Geospatial",
"attr.docs.view_types": "MapView"
"attr.docs.view_types": "MapView",
"attr.docs.unreleased"
) {
// --- Required ---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ namespace rerun.blueprint.archetypes;

/// Configuration for the background map of the map view.
table MapBackground (
"attr.rerun.scope": "blueprint"
"attr.rerun.scope": "blueprint",
"attr.docs.unreleased"
) {
// --- Optional ---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ namespace rerun.blueprint.archetypes;
/// Configuration of the map view zoom level.
//TODO(ab): Turn this archetype into `MapArea` and include a `center: LatLon` componnent or similar
table MapZoom (
"attr.rerun.scope": "blueprint"
"attr.rerun.scope": "blueprint",
"attr.docs.unreleased"
) {
// --- Optional ---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ namespace rerun.blueprint.components;
/// Name of the map provider to be used in Map views.
enum MapProvider: ubyte (
"attr.rerun.scope": "blueprint",
"attr.rust.derive": "Copy, PartialEq, Eq"
"attr.rust.derive": "Copy, PartialEq, Eq",
"attr.docs.unreleased"
) {
/// Invalid value. Won't show up in generated types.
Invalid = 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ table ZoomLevel (
"attr.python.aliases": "float",
"attr.python.array_aliases": "npt.ArrayLike",
"attr.rerun.scope": "blueprint",
"attr.rust.derive": "Default"
"attr.rust.derive": "Default",
"attr.docs.unreleased"
) {
/// Zoom level: 0 being the lowest zoom level (fully zoomed out) and 22 being the highest (fully zoomed in).
zoom: rerun.datatypes.Float32 (order: 100);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ namespace rerun.blueprint.views;
/// \example views/map title="Use a blueprint to create a map view."
//TODO(ab): add a screenshot
table MapView (
"attr.rerun.view_identifier": "Map"
"attr.rerun.view_identifier": "Map",
"attr.docs.unreleased"
) {
/// Configures the zoom level of the map view.
zoom: rerun.blueprint.archetypes.MapZoom (order: 1000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ struct LatLon (
"attr.python.aliases": "npt.NDArray[np.float32], Sequence[float], Tuple[float, float]",
"attr.python.array_aliases": "npt.NDArray[np.float32], Sequence[float]",
"attr.rust.derive": "Default, Copy, PartialEq, bytemuck::Pod, bytemuck::Zeroable",
"attr.rust.repr": "transparent"
"attr.rust.repr": "transparent",
"attr.docs.unreleased"
) {
lat_lon: rerun.datatypes.DVec2D (order: 100);
}
3 changes: 2 additions & 1 deletion crates/store/re_types/definitions/rerun/datatypes/dvec2d.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ struct DVec2D (
"attr.python.array_aliases": "npt.NDArray[Any], npt.ArrayLike, Sequence[Sequence[float]], Sequence[float]",
"attr.rust.derive": "Default, Copy, PartialEq, bytemuck::Pod, bytemuck::Zeroable",
"attr.rust.tuple_struct",
"attr.rust.repr": "C"
"attr.rust.repr": "C",
"attr.docs.unreleased"
) {
xy: [double: 2] (order: 100);
}
6 changes: 3 additions & 3 deletions docs/content/reference/types/archetypes/geo_points.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/content/reference/types/components/color.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/content/reference/types/components/lat_lon.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/content/reference/types/components/radius.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/content/reference/types/datatypes/dvec2d.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/content/reference/types/views/map_view.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9625594

Please sign in to comment.