Skip to content

Commit a90f523

Browse files
committed
Point documentation links to 0.14 branch
1 parent 8d7aac9 commit a90f523

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ The development of Iced is sponsored by the [Cryptowatch] team at [Kraken.com]
187187

188188
[book]: https://book.iced.rs/
189189
[documentation]: https://docs.rs/iced/
190-
[examples]: https://github.com/iced-rs/iced/tree/master/examples#examples
190+
[examples]: https://github.com/iced-rs/iced/tree/0.14/examples#examples
191191
[Coffee]: https://github.com/hecrj/coffee
192192
[Elm]: https://elm-lang.org/
193193
[The Elm Architecture]: https://guide.elm-lang.org/architecture/

core/src/widget.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ use crate::{Clipboard, Event, Length, Rectangle, Shell, Size, Vector};
3030
/// - [`geometry`], a custom widget showcasing how to draw geometry with the
3131
/// `Mesh2D` primitive in [`iced_wgpu`].
3232
///
33-
/// [examples]: https://github.com/iced-rs/iced/tree/master/examples
34-
/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/master/examples/custom_widget
35-
/// [`geometry`]: https://github.com/iced-rs/iced/tree/master/examples/geometry
36-
/// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/master/wgpu
33+
/// [examples]: https://github.com/iced-rs/iced/tree/0.14/examples
34+
/// [`custom_widget`]: https://github.com/iced-rs/iced/tree/0.14/examples/custom_widget
35+
/// [`geometry`]: https://github.com/iced-rs/iced/tree/0.14/examples/geometry
36+
/// [`iced_wgpu`]: https://github.com/iced-rs/iced/tree/0.14/wgpu
3737
pub trait Widget<Message, Theme, Renderer>
3838
where
3939
Renderer: crate::Renderer,

examples/markdown/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ Read the [book], the [documentation], and the [examples] to learn more!
8989

9090
[book]: https://book.iced.rs/
9191
[documentation]: https://docs.rs/iced/
92-
[examples]: https://github.com/iced-rs/iced/tree/master/examples#examples
92+
[examples]: https://github.com/iced-rs/iced/tree/0.14/examples#examples
9393
[The Elm Architecture]: https://guide.elm-lang.org/architecture/

futures/src/subscription.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ impl<T> Subscription<T> {
178178
/// Check out the [`websocket`] example, which showcases this pattern to maintain a `WebSocket`
179179
/// connection open.
180180
///
181-
/// [`websocket`]: https://github.com/iced-rs/iced/tree/master/examples/websocket
181+
/// [`websocket`]: https://github.com/iced-rs/iced/tree/0.14/examples/websocket
182182
pub fn run<S>(builder: fn() -> S) -> Self
183183
where
184184
S: Stream<Item = T> + MaybeSend + 'static,

runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! `iced_runtime` takes [`iced_core`] and builds a native runtime on top of it.
66
//!
7-
//! [`iced_core`]: https://github.com/iced-rs/iced/tree/master/core
7+
//! [`iced_core`]: https://github.com/iced-rs/iced/tree/0.14/core
88
#![doc(
99
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
1010
)]

runtime/src/user_interface.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use crate::core::{
2121
/// The [`integration`] example uses a [`UserInterface`] to integrate Iced in an
2222
/// existing graphical application.
2323
///
24-
/// [`integration`]: https://github.com/iced-rs/iced/tree/master/examples/integration
24+
/// [`integration`]: https://github.com/iced-rs/iced/tree/0.14/examples/integration
2525
pub struct UserInterface<'a, Message, Theme, Renderer> {
2626
root: Element<'a, Message, Theme, Renderer>,
2727
base: layout::Node,

widget/src/pane_grid.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
//! The [`pane_grid` example] showcases how to use a [`PaneGrid`] with resizing,
5353
//! drag and drop, and hotkey support.
5454
//!
55-
//! [`pane_grid` example]: https://github.com/iced-rs/iced/tree/master/examples/pane_grid
55+
//! [`pane_grid` example]: https://github.com/iced-rs/iced/tree/0.14/examples/pane_grid
5656
mod axis;
5757
mod configuration;
5858
mod content;

winit/src/conversion.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Convert [`winit`] types into [`iced_runtime`] types, and viceversa.
22
//!
33
//! [`winit`]: https://github.com/rust-windowing/winit
4-
//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/master/runtime
4+
//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/0.14/runtime
55
use crate::core::input_method;
66
use crate::core::keyboard;
77
use crate::core::mouse;

winit/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! Additionally, a [`conversion`] module is available for users that decide to
1212
//! implement a custom event loop.
1313
//!
14-
//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/master/runtime
14+
//! [`iced_runtime`]: https://github.com/iced-rs/iced/tree/0.14/runtime
1515
//! [`winit`]: https://github.com/rust-windowing/winit
1616
//! [`conversion`]: crate::conversion
1717
#![doc(

0 commit comments

Comments
 (0)