Point documentation links to 0.14 branch

This commit is contained in:
Héctor Ramón Jiménez 2025-12-06 04:56:59 +01:00
parent 8d7aac96d7
commit a90f523e71
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
9 changed files with 12 additions and 12 deletions

View file

@ -187,7 +187,7 @@ The development of Iced is sponsored by the [Cryptowatch] team at [Kraken.com]
[book]: https://book.iced.rs/ [book]: https://book.iced.rs/
[documentation]: https://docs.rs/iced/ [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 [Coffee]: https://github.com/hecrj/coffee
[Elm]: https://elm-lang.org/ [Elm]: https://elm-lang.org/
[The Elm Architecture]: https://guide.elm-lang.org/architecture/ [The Elm Architecture]: https://guide.elm-lang.org/architecture/

View file

@ -30,10 +30,10 @@ use crate::{Clipboard, Event, Length, Rectangle, Shell, Size, Vector};
/// - [`geometry`], a custom widget showcasing how to draw geometry with the /// - [`geometry`], a custom widget showcasing how to draw geometry with the
/// `Mesh2D` primitive in [`iced_wgpu`]. /// `Mesh2D` primitive in [`iced_wgpu`].
/// ///
/// [examples]: https://github.com/iced-rs/iced/tree/master/examples /// [examples]: https://github.com/iced-rs/iced/tree/0.14/examples
/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/master/examples/custom_widget /// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.14/examples/custom_widget
/// [`geometry`]: https://github.com/iced-rs/iced/tree/master/examples/geometry /// [`geometry`]: https://github.com/iced-rs/iced/tree/0.14/examples/geometry
/// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/master/wgpu /// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/0.14/wgpu
pub trait Widget<Message, Theme, Renderer> pub trait Widget<Message, Theme, Renderer>
where where
Renderer: crate::Renderer, Renderer: crate::Renderer,

View file

@ -89,5 +89,5 @@ Read the [book], the [documentation], and the [examples] to learn more!
[book]: https://book.iced.rs/ [book]: https://book.iced.rs/
[documentation]: https://docs.rs/iced/ [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/ [The Elm Architecture]: https://guide.elm-lang.org/architecture/

View file

@ -178,7 +178,7 @@ impl<T> Subscription<T> {
/// Check out the [`websocket`] example, which showcases this pattern to maintain a `WebSocket` /// Check out the [`websocket`] example, which showcases this pattern to maintain a `WebSocket`
/// connection open. /// 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<S>(builder: fn() -> S) -> Self pub fn run<S>(builder: fn() -> S) -> Self
where where
S: Stream<Item = T> + MaybeSend + 'static, S: Stream<Item = T> + MaybeSend + 'static,

View file

@ -4,7 +4,7 @@
//! //!
//! `iced_runtime` takes [`iced_core`] and builds a native runtime on top of it. //! `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( #![doc(
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg" html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
)] )]

View file

@ -21,7 +21,7 @@ use crate::core::{
/// The [`integration`] example uses a [`UserInterface`] to integrate Iced in an /// The [`integration`] example uses a [`UserInterface`] to integrate Iced in an
/// existing graphical application. /// 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> { pub struct UserInterface<'a, Message, Theme, Renderer> {
root: Element<'a, Message, Theme, Renderer>, root: Element<'a, Message, Theme, Renderer>,
base: layout::Node, base: layout::Node,

View file

@ -52,7 +52,7 @@
//! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing, //! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing,
//! drag and drop, and hotkey support. //! 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 axis;
mod configuration; mod configuration;
mod content; mod content;

View file

@ -1,7 +1,7 @@
//! Convert [`winit`] types into [`iced_runtime`] types, and viceversa. //! Convert [`winit`] types into [`iced_runtime`] types, and viceversa.
//! //!
//! [`winit`]: https://github.com/rust-windowing/winit //! [`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::input_method;
use crate::core::keyboard; use crate::core::keyboard;
use crate::core::mouse; use crate::core::mouse;

View file

@ -11,7 +11,7 @@
//! Additionally, a [`conversion`] module is available for users that decide to //! Additionally, a [`conversion`] module is available for users that decide to
//! implement a custom event loop. //! 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 //! [`winit`]: https://github.com/rust-windowing/winit
//! [`conversion`]: crate::conversion //! [`conversion`]: crate::conversion
#![doc( #![doc(