Skip to content

Commit

Permalink
remove speculative link & unreleased tags
Browse files Browse the repository at this point in the history
  • Loading branch information
Wumpf committed Nov 14, 2024
1 parent fbd82d7 commit 1e6cb7b
Show file tree
Hide file tree
Showing 36 changed files with 65 additions and 79 deletions.
4 changes: 2 additions & 2 deletions crates/build/re_protos_builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

Part of the [`rerun`](https://github.com/rerun-io/rerun) family of crates.

[![Latest version](https://img.shields.io/crates/v/re_protos_builder.svg)](https://crates.io/crates/re_protos_builder?speculative-link)
[![Documentation](https://docs.rs/re_protos_builder/badge.svg)](https://docs.rs/re_protos_builder?speculative-link)
[![Latest version](https://img.shields.io/crates/v/re_protos_builder.svg)](https://crates.io/crates/re_protos_builder)
[![Documentation](https://docs.rs/re_protos_builder/badge.svg)](https://docs.rs/re_protos_builder)
![MIT](https://img.shields.io/badge/license-MIT-blue.svg)
![Apache](https://img.shields.io/badge/license-Apache-blue.svg)

Expand Down
4 changes: 2 additions & 2 deletions crates/store/re_grpc_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

Part of the [`rerun`](https://github.com/rerun-io/rerun) family of crates.

[![Latest version](https://img.shields.io/crates/v/re_grpc_client.svg)](https://crates.io/crates/re_grpc_client?speculative-link)
[![Documentation](https://docs.rs/re_grpc_client/badge.svg)](https://docs.rs/re_grpc_client?speculative-link)
[![Latest version](https://img.shields.io/crates/v/re_grpc_client.svg)](https://crates.io/crates/re_grpc_client)
[![Documentation](https://docs.rs/re_grpc_client/badge.svg)](https://docs.rs/re_grpc_client)
![MIT](https://img.shields.io/badge/license-MIT-blue.svg)
![Apache](https://img.shields.io/badge/license-Apache-blue.svg)

Expand Down
4 changes: 2 additions & 2 deletions crates/store/re_protos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

Part of the [`rerun`](https://github.com/rerun-io/rerun) family of crates.

[![Latest version](https://img.shields.io/crates/v/re_protos.svg)](https://crates.io/crates/re_protos?speculative-link)
[![Documentation](https://docs.rs/re_protos/badge.svg)](https://docs.rs/re_protos?speculative-link)
[![Latest version](https://img.shields.io/crates/v/re_protos.svg)](https://crates.io/crates/re_protos)
[![Documentation](https://docs.rs/re_protos/badge.svg)](https://docs.rs/re_protos)
![MIT](https://img.shields.io/badge/license-MIT-blue.svg)
![Apache](https://img.shields.io/badge/license-Apache-blue.svg)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ table Capsules3D (
"attr.rust.new_pub_crate",
"attr.cpp.no_field_ctors",
"attr.docs.category": "Spatial 3D",
"attr.docs.view_types": "Spatial3DView, Spatial2DView: if logged above active projection",
"attr.docs.unreleased"
"attr.docs.view_types": "Spatial3DView, Spatial2DView: if logged above active projection"
) {
// --- Required ---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ table GeoLineStrings (
"attr.rust.derive": "PartialEq",
"attr.rust.new_pub_crate",
"attr.docs.category": "Geospatial",
"attr.docs.view_types": "MapView",
"attr.docs.unreleased"
"attr.docs.view_types": "MapView"
) {
// --- Required ---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ table GeoPoints (
"attr.rust.derive": "PartialEq",
"attr.rust.new_pub_crate",
"attr.docs.category": "Geospatial",
"attr.docs.view_types": "MapView",
"attr.docs.unreleased"
"attr.docs.view_types": "MapView"
) {
// --- Required ---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ namespace rerun.blueprint.archetypes;
/// Configuration for the background map of the map view.
table MapBackground (
"attr.rerun.scope": "blueprint",
"attr.python.aliases": "blueprint_components.MapProviderLike",
"attr.docs.unreleased"
"attr.python.aliases": "blueprint_components.MapProviderLike"
) {
// --- Optional ---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ namespace rerun.blueprint.archetypes;
//TODO(ab): Turn this archetype into `MapArea` and include a `center: LatLon` componnent or similar
table MapZoom (
"attr.rerun.scope": "blueprint",
"attr.python.aliases": "datatypes.Float64Like",
"attr.docs.unreleased"
"attr.python.aliases": "datatypes.Float64Like"
) {
// --- Optional ---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ 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.docs.unreleased"
"attr.rust.derive": "Copy, PartialEq, Eq"
) {
/// 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,8 +6,7 @@ table ZoomLevel (
"attr.python.aliases": "float",
"attr.python.array_aliases": "npt.ArrayLike",
"attr.rerun.scope": "blueprint",
"attr.rust.derive": "Default",
"attr.docs.unreleased"
"attr.rust.derive": "Default"
) {
/// Zoom level: 0 being the lowest zoom level (fully zoomed out) and 22 being the highest (fully zoomed in).
zoom: rerun.datatypes.Float64 (order: 100);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ namespace rerun.blueprint.views;
///
/// \example views/map title="Use a blueprint to create a map view." image="https://static.rerun.io/map_view/9d0a5ba3a6e8d4693ba98e1b3cfcc15d166fd41d/1200w.png"
table MapView (
"attr.rerun.view_identifier": "Map",
"attr.docs.unreleased"
"attr.rerun.view_identifier": "Map"
) {
/// 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 @@ -9,8 +9,7 @@ table GeoLineString (
"attr.python.array_aliases": "npt.NDArray[np.float64]",
"attr.rust.derive": "Default, PartialEq",
"attr.rust.repr": "transparent",
"attr.cpp.no_field_ctors",
"attr.docs.unreleased"
"attr.cpp.no_field_ctors"
) {
lat_lon: [rerun.datatypes.DVec2D] (order: 100);
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ 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.docs.unreleased"
"attr.rust.repr": "transparent"
) {
lat_lon: rerun.datatypes.DVec2D (order: 100);
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ namespace rerun.components;
/// Measured in its local coordinate system; consult the archetype in use to determine which
/// axis or part of the entity this is the length of.
struct Length (
"attr.docs.unreleased",
"attr.python.aliases": "float",
"attr.python.array_aliases": "float, npt.NDArray[np.float32]",
"attr.rust.derive": "Copy, PartialEq, PartialOrd, bytemuck::Pod, bytemuck::Zeroable",
"attr.rust.repr": "transparent"
"attr.rust.derive": "Copy, PartialEq, PartialOrd, bytemuck::Pod, bytemuck::Zeroable"
) {
length: rerun.datatypes.Float32 (order: 100);
}
3 changes: 1 addition & 2 deletions crates/store/re_types/definitions/rerun/datatypes/dvec2d.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ 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.docs.unreleased"
"attr.rust.repr": "C"
) {
xy: [double: 2] (order: 100);
}
1 change: 0 additions & 1 deletion crates/store/re_types/src/components/length.rs

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

6 changes: 3 additions & 3 deletions docs/content/reference/types/archetypes/capsules3d.md

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

6 changes: 3 additions & 3 deletions docs/content/reference/types/archetypes/geo_line_strings.md

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

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.

4 changes: 2 additions & 2 deletions docs/content/reference/types/components/class_id.md

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

6 changes: 3 additions & 3 deletions 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/geo_line_string.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.

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

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

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

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

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

6 changes: 3 additions & 3 deletions docs/content/reference/types/components/radius.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/show_labels.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/text.md

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

10 changes: 5 additions & 5 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/datatypes/float32.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.

2 changes: 1 addition & 1 deletion examples/python/nuscenes_dataset/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ rr.log(
#### GPS data

GPS data is calculated from the scene's reference coordinates and the transformations (starting map point + odometry).
The GPS coordinates are logged as [`GeoPoints`](https://www.rerun.io/docs/reference/types/archetypes/geopoints?speculative-link).
The GPS coordinates are logged as [`GeoPoints`](https://www.rerun.io/docs/reference/types/archetypes/geopoints).

```python
rr.log(
Expand Down
2 changes: 1 addition & 1 deletion examples/python/openstreetmap_data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ channel = "release"


Download [`OpenStreetMap`](https://www.openstreetmap.org) data via the [Overpass](https://overpass-api.de) API and [query language](https://wiki.openstreetmap.org/wiki/Overpass_API/Overpass_QL),
and display it on a [map view](https://www.rerun.io/docs/reference/types/view/map_view?speculative-link).
and display it on a [map view](https://www.rerun.io/docs/reference/types/view/map_view).

<picture>
<img src="https://static.rerun.io/openstreetmap_data/5da23e9244d5cfead76ad484d09ba70cf62c4e57/full.png" alt="">
Expand Down
Loading

0 comments on commit 1e6cb7b

Please sign in to comment.