diff --git a/README.md b/README.md index 4ef6e4c6..5fe541fb 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ The development of Iced is sponsored by the [Cryptowatch] team at [Kraken.com] [book]: https://book.iced.rs/ [documentation]: https://docs.rs/iced/ -[examples]: https://github.com/iced-rs/iced/tree/master/examples#examples +[examples]: https://github.com/iced-rs/iced/tree/0.14/examples#examples [Coffee]: https://github.com/hecrj/coffee [Elm]: https://elm-lang.org/ [The Elm Architecture]: https://guide.elm-lang.org/architecture/ diff --git a/core/src/widget.rs b/core/src/widget.rs index 35cf16bf..31755306 100644 --- a/core/src/widget.rs +++ b/core/src/widget.rs @@ -30,10 +30,10 @@ use crate::{Clipboard, Event, Length, Rectangle, Shell, Size, Vector}; /// - [`geometry`], a custom widget showcasing how to draw geometry with the /// `Mesh2D` primitive in [`iced_wgpu`]. /// -/// [examples]: https://github.com/iced-rs/iced/tree/master/examples -/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/master/examples/custom_widget -/// [`geometry`]: https://github.com/iced-rs/iced/tree/master/examples/geometry -/// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/master/wgpu +/// [examples]: https://github.com/iced-rs/iced/tree/0.14/examples +/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.14/examples/custom_widget +/// [`geometry`]: https://github.com/iced-rs/iced/tree/0.14/examples/geometry +/// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/0.14/wgpu pub trait Widget where Renderer: crate::Renderer, diff --git a/examples/markdown/overview.md b/examples/markdown/overview.md index 2bb2d931..035fe433 100644 --- a/examples/markdown/overview.md +++ b/examples/markdown/overview.md @@ -89,5 +89,5 @@ Read the [book], the [documentation], and the [examples] to learn more! [book]: https://book.iced.rs/ [documentation]: https://docs.rs/iced/ -[examples]: https://github.com/iced-rs/iced/tree/master/examples#examples +[examples]: https://github.com/iced-rs/iced/tree/0.14/examples#examples [The Elm Architecture]: https://guide.elm-lang.org/architecture/ diff --git a/futures/src/subscription.rs b/futures/src/subscription.rs index 01c41010..12ac3704 100644 --- a/futures/src/subscription.rs +++ b/futures/src/subscription.rs @@ -178,7 +178,7 @@ impl Subscription { /// Check out the [`websocket`] example, which showcases this pattern to maintain a `WebSocket` /// connection open. /// - /// [`websocket`]: https://github.com/iced-rs/iced/tree/master/examples/websocket + /// [`websocket`]: https://github.com/iced-rs/iced/tree/0.14/examples/websocket pub fn run(builder: fn() -> S) -> Self where S: Stream + MaybeSend + 'static, diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index ede15f08..53bb9958 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -4,7 +4,7 @@ //! //! `iced_runtime` takes [`iced_core`] and builds a native runtime on top of it. //! -//! [`iced_core`]: https://github.com/iced-rs/iced/tree/master/core +//! [`iced_core`]: https://github.com/iced-rs/iced/tree/0.14/core #![doc( html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg" )] diff --git a/runtime/src/user_interface.rs b/runtime/src/user_interface.rs index c6092749..7061d3e3 100644 --- a/runtime/src/user_interface.rs +++ b/runtime/src/user_interface.rs @@ -21,7 +21,7 @@ use crate::core::{ /// The [`integration`] example uses a [`UserInterface`] to integrate Iced in an /// existing graphical application. /// -/// [`integration`]: https://github.com/iced-rs/iced/tree/master/examples/integration +/// [`integration`]: https://github.com/iced-rs/iced/tree/0.14/examples/integration pub struct UserInterface<'a, Message, Theme, Renderer> { root: Element<'a, Message, Theme, Renderer>, base: layout::Node, diff --git a/widget/src/pane_grid.rs b/widget/src/pane_grid.rs index eca28ebe..8004055f 100644 --- a/widget/src/pane_grid.rs +++ b/widget/src/pane_grid.rs @@ -52,7 +52,7 @@ //! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing, //! drag and drop, and hotkey support. //! -//! [`pane_grid` example]: https://github.com/iced-rs/iced/tree/master/examples/pane_grid +//! [`pane_grid` example]: https://github.com/iced-rs/iced/tree/0.14/examples/pane_grid mod axis; mod configuration; mod content; diff --git a/winit/src/conversion.rs b/winit/src/conversion.rs index 1cfc89f0..54260e11 100644 --- a/winit/src/conversion.rs +++ b/winit/src/conversion.rs @@ -1,7 +1,7 @@ //! Convert [`winit`] types into [`iced_runtime`] types, and viceversa. //! //! [`winit`]: https://github.com/rust-windowing/winit -//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/master/runtime +//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/0.14/runtime use crate::core::input_method; use crate::core::keyboard; use crate::core::mouse; diff --git a/winit/src/lib.rs b/winit/src/lib.rs index 05938a77..9f48aa8c 100644 --- a/winit/src/lib.rs +++ b/winit/src/lib.rs @@ -11,7 +11,7 @@ //! Additionally, a [`conversion`] module is available for users that decide to //! implement a custom event loop. //! -//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/master/runtime +//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/0.14/runtime //! [`winit`]: https://github.com/rust-windowing/winit //! [`conversion`]: crate::conversion #![doc(