From 9ac0b75e9cf98da7acddd2a5688d68652a1db668 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Wed, 10 Jul 2024 07:53:48 +0200 Subject: [PATCH] Fix links to crates (#6839) Because of https://github.com/rerun-io/rerun/pull/6821 ### Checklist * [x] I have read and agree to [Contributor Guide](https://github.com/rerun-io/rerun/blob/main/CONTRIBUTING.md) and the [Code of Conduct](https://github.com/rerun-io/rerun/blob/main/CODE_OF_CONDUCT.md) --- crates/utils/re_analytics/README.md | 2 +- crates/utils/re_analytics/src/event.rs | 2 +- crates/viewer/re_viewer/src/viewer_analytics/mod.rs | 2 +- docs/content/howto/extend/extend-ui.md | 2 +- lychee.toml | 1 + 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/crates/utils/re_analytics/README.md b/crates/utils/re_analytics/README.md index bdd488e36064..f2242922aa0b 100644 --- a/crates/utils/re_analytics/README.md +++ b/crates/utils/re_analytics/README.md @@ -19,7 +19,7 @@ Find out its location by running `rerun analytics config`. Run `rerun analytics disable` to opt out of all usage data collection. ### What data is collected? -The exact set of analytics events and parameters can be found here: +The exact set of analytics events and parameters can be found here: - We collect high level events about the usage of the Rerun Viewer. For example: - The event 'Viewer Opened' helps us estimate how often Rerun is used. diff --git a/crates/utils/re_analytics/src/event.rs b/crates/utils/re_analytics/src/event.rs index ad3ee04b08f5..67cf310c7bf4 100644 --- a/crates/utils/re_analytics/src/event.rs +++ b/crates/utils/re_analytics/src/event.rs @@ -7,7 +7,7 @@ //! //! All collected analytics data is anonymized, stripping all personal identifiable information //! as well as information about user data. -//! Read more about our analytics policy at . +//! Read more about our analytics policy at . /// Records a crash caused by a panic. /// diff --git a/crates/viewer/re_viewer/src/viewer_analytics/mod.rs b/crates/viewer/re_viewer/src/viewer_analytics/mod.rs index 93fb2a01f760..6ba490c55b3c 100644 --- a/crates/viewer/re_viewer/src/viewer_analytics/mod.rs +++ b/crates/viewer/re_viewer/src/viewer_analytics/mod.rs @@ -1,6 +1,6 @@ //! Most analytics events collected by the Rerun Viewer are defined in this file. //! -//! All events are defined in the `re_analytics` crate: +//! All events are defined in the `re_analytics` crate: //! //! Analytics can be completely disabled with `rerun analytics disable`, //! or by compiling rerun without the `analytics` feature flag. diff --git a/docs/content/howto/extend/extend-ui.md b/docs/content/howto/extend/extend-ui.md index 5e7272c3028a..7f21a2b03c78 100644 --- a/docs/content/howto/extend/extend-ui.md +++ b/docs/content/howto/extend/extend-ui.md @@ -12,7 +12,7 @@ In the above screenshot you see the example [`extend_viewer_ui`](https://github. ### How to build it -The Rerun Viewer is defined by the crate [`re_viewer`](https://github.com/rerun-io/rerun/tree/main/crates/re_viewer). It uses the popular Rust GUI library [`egui`](https://github.com/emilk/egui) (written by our CTO) and its framework [`eframe`](https://github.com/emilk/egui/tree/master/crates/eframe). To extend the UI you need to create your own `eframe` application and embed `re_viewer` inside of it. You can then use `egui` to add custom panels and windows. +The Rerun Viewer is defined by the crate [`re_viewer`](https://github.com/rerun-io/rerun/tree/main/crates/viewer/re_viewer). It uses the popular Rust GUI library [`egui`](https://github.com/emilk/egui) (written by our CTO) and its framework [`eframe`](https://github.com/emilk/egui/tree/master/crates/eframe). To extend the UI you need to create your own `eframe` application and embed `re_viewer` inside of it. You can then use `egui` to add custom panels and windows. The best way to get started is by reading [the source code of the `extend_viewer_ui` example](https://github.com/rerun-io/rerun/tree/main/examples/rust/extend_viewer_ui). diff --git a/lychee.toml b/lychee.toml index afde4b70314d..68ca63425cb9 100644 --- a/lychee.toml +++ b/lychee.toml @@ -115,6 +115,7 @@ exclude = [ 'https://9p.io/sys/doc/lexnames.html', # Works locally but on CI we get: `Failed: Network error: error:0A000152:SSL routines:final_renegotiate:unsafe legacy renegotiation disabled:ssl/statem/extensions.c:946:` 'https://pixabay.com/photos/brother-sister-girl-family-boy-977170/', # Gives 403 forbidden on CI. 'https://stackoverflow.com/', # Stackoverflow links are no longer accessible from CI. + 'https://math.stackexchange.com/', # Gives 403 forbidden on CI. 'https://vimeo.com/', # Gives 403 forbidden on CI. 'https://www.reddit.com/', # Gives 403 forbidden on CI. 'https://www.tensorflow.org/', # tensorflow.org apparently blocks CI.