Skip to content

Commit

Permalink
Update to Rerun 0.16 (#11)
Browse files Browse the repository at this point in the history
* Update to 0.16 RC

* Update to rerun 0.16 final
  • Loading branch information
emilk authored Jul 4, 2024
1 parent 4c8aa5a commit cdbe3f0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif()

# Rerun:
include(FetchContent)
FetchContent_Declare(rerun_sdk URL https://github.com/rerun-io/rerun/releases/download/0.15.0/rerun_cpp_sdk.zip)
FetchContent_Declare(rerun_sdk URL https://github.com/rerun-io/rerun/releases/download/0.16.0/rerun_cpp_sdk.zip)
FetchContent_MakeAvailable(rerun_sdk)

# VRS:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ If you choose not to use pixi, you will need to install a few things yourself be
The Rerun C++ SDK works by connecting to an awaiting Rerun Viewer over TCP.

If you need to install the viewer, follow the [installation guide](https://www.rerun.io/docs/getting-started/installing-viewer). Two of the more common ways to install the Rerun Viewer are:
* Via cargo: `cargo install rerun-cli@0.15.0`
* Via pip: `pip install rerun-sdk==0.15.0`
* Via cargo: `cargo install rerun-cli@0.16.0`
* Via pip: `pip install rerun-sdk==0.16.0`

After you have installed it, you should be able to type `rerun` in your terminal to start the viewer.

Expand Down
2 changes: 1 addition & 1 deletion src/frame_player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ namespace rerun_vrs {
if (record.recordType == vrs::Record::Type::CONFIGURATION) {
// NOTE this is meta data from the sensor that doesn't change over time and only comes
// in once in the beginning
_rec->log_timeless(_entity_path + "/configuration", rerun::TextDocument(layout_str));
_rec->log_static(_entity_path + "/configuration", rerun::TextDocument(layout_str));
}

if (record.recordType == vrs::Record::Type::DATA) {
Expand Down
2 changes: 1 addition & 1 deletion src/imu_player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ namespace rerun_vrs {
if (record.recordType == vrs::Record::Type::CONFIGURATION) {
// NOTE this is meta data from the sensor that doesn't change over time and only comes
// in once in the beginning
_rec->log_timeless(_entity_path + "/configuration", rerun::TextDocument(layout_str));
_rec->log_static(_entity_path + "/configuration", rerun::TextDocument(layout_str));

// read properties required for logging
auto& config = getExpectedLayout<IMUConfigurationDataLayout>(layout, blockIndex);
Expand Down

0 comments on commit cdbe3f0

Please sign in to comment.