From 03bf925f8a5afae321ae8d69b88159e7e78f14b9 Mon Sep 17 00:00:00 2001 From: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> Date: Tue, 14 May 2024 20:20:34 +0200 Subject: [PATCH] fix references to github.io page Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> --- CHANGELOG.md | 8 ++++---- README.md | 6 +++--- plotly/src/plot.rs | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8b8cb52..658539d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -87,11 +87,11 @@ Version 0.8.0 represents a significant release which refactors a lot of the code ## [0.6.0] - 2020-07-25 ### Added -- Shapes support ([documentation](https://igiagkiozis.github.io/plotly/content/fundamentals/shapes.html)). +- Shapes support ([documentation](https://plotly.github.io/plotly.rs/content/fundamentals/shapes.html)). - Annotations support. - Docstrings to `Scatter`. -- `ndarray` support ([documentation](https://igiagkiozis.github.io/plotly/content/fundamentals/ndarray_support.html)). -- Jupyter lab and notebook support ([documentation](https://igiagkiozis.github.io/plotly/content/fundamentals/jupyter_support.html)). +- `ndarray` support ([documentation](https://plotly.github.io/plotly.rs/content/fundamentals/ndarray_support.html)). +- Jupyter lab and notebook support ([documentation](https://plotly.github.io/plotly.rs/content/fundamentals/jupyter_support.html)). ### Changed - Removed `num` dependence. - Removed `plotly_orca` and the `orca` feature. Use the `kaleido` feature for static image generation. @@ -109,7 +109,7 @@ Version 0.8.0 represents a significant release which refactors a lot of the code ## [0.5.0] - 2020-07-12 ### Added -- [Plotly.rs Book](https://igiagkiozis.github.io/plotly/). +- [Plotly.rs Book](https://plotly.github.io/plotly.rs/). - Using plotly.js from the official CDN is now the default. To use the local version use the `Plot::use_local_plotly` method. - Plot rasterization to `png`, `jpg`, `eps`, `pdf`, `webp` and `svg` using [plotly/Kaleido](https://github.com/plotly/Kaleido), enabled using the `kaleido` feature. - Multi-axis support and examples. diff --git a/README.md b/README.md index d1ec4f3e..fb2365c8 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@

- Getting Started + Getting Started | - Recipes + Recipes | API Docs | @@ -44,7 +44,7 @@ A plotting library for Rust powered by [Plotly.js](https://plot.ly/javascript/). -Documentation and numerous interactive examples are available in the [Plotly.rs Book](https://igiagkiozis.github.io/plotly/content/getting_started.html), the [examples/](https://github.com/plotly/plotly.rs/tree/main/examples) directory and [docs.rs](https://docs.rs/crate/plotly). +Documentation and numerous interactive examples are available in the [Plotly.rs Book](https://plotly.github.io/plotly.rs/content/getting_started.html), the [examples/](https://github.com/plotly/plotly.rs/tree/main/examples) directory and [docs.rs](https://docs.rs/crate/plotly). For changes since the last version, please consult the [changelog](https://github.com/plotly/plotly.rs/tree/main/CHANGELOG.md). diff --git a/plotly/src/plot.rs b/plotly/src/plot.rs index a2dab216..03fe4ae0 100644 --- a/plotly/src/plot.rs +++ b/plotly/src/plot.rs @@ -62,7 +62,7 @@ let height = 680; let scale = 1.0; plot.write_image("filename", ImageFormat::PNG, width, height, scale); -See https://igiagkiozis.github.io/plotly/content/getting_started.html for further details. +See https://plotly.github.io/plotly.rs/content/getting_started.html for further details. "#; /// Image format for static image export.