Skip to content

Commit 7e38003

Browse files
SkwalExeSkwalExe
andauthored
fix: broken links from move to tui-widgets
Co-authored-by: SkwalExe <[email protected]>
1 parent bd7c24b commit 7e38003

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

cliff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ body = """
4343
trim = true
4444
# postprocessors
4545
postprocessors = [
46-
{ pattern = '<REPO>', replace = "https://github.com/joshka/tui-scollview" }, # replace repository URL
46+
{ pattern = '<REPO>', replace = "https://github.com/joshka/tui-widgets" }, # replace repository URL
4747
{ pattern = ' +\n', replace = "\n" },
4848
]
4949

tui-big-text/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,10 @@ BigText::builder().right_aligned();
9999
[Code Coverage]: https://app.codecov.io/gh/joshka/tui-big-text
100100
[Ratatui Discord]: https://discord.gg/pMCEU9hNEj
101101

102-
[GitHub Repository]: https://github.com/joshka/tui-big-text
103-
[Examples]: https://github.com/joshka/tui-big-text/tree/main/examples
104-
[Changelog]: https://github.com/joshka/tui-big-text/blob/main/CHANGELOG.md
105-
[Contributing]: https://github.com/joshka/tui-big-text/blob/main/CONTRIBUTING.md
102+
[GitHub Repository]: https://github.com/joshka/tui-widgets
103+
[Examples]: https://github.com/joshka/tui-widgets/tree/main/tui-big-text/examples
104+
[Changelog]: https://github.com/joshka/tui-widgets/blob/main/tui-big-text/CHANGELOG.md
105+
[Contributing]: https://github.com/joshka/tui-widgets/blob/main/CONTRIBUTING.md
106106

107107
<!-- cargo-rdme end -->
108108

tui-big-text/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@
9797
//! [Code Coverage]: https://app.codecov.io/gh/joshka/tui-big-text
9898
//! [Ratatui Discord]: https://discord.gg/pMCEU9hNEj
9999
//!
100-
//! [GitHub Repository]: https://github.com/joshka/tui-big-text
101-
//! [Examples]: https://github.com/joshka/tui-big-text/tree/main/examples
102-
//! [Changelog]: https://github.com/joshka/tui-big-text/blob/main/CHANGELOG.md
103-
//! [Contributing]: https://github.com/joshka/tui-big-text/blob/main/CONTRIBUTING.md
100+
//! [GitHub Repository]: https://github.com/joshka/tui-widgets
101+
//! [Examples]: https://github.com/joshka/tui-widgets/tree/main/tui-big-text/examples
102+
//! [Changelog]: https://github.com/joshka/tui-widgets/blob/main/tui-big-text/CHANGELOG.md
103+
//! [Contributing]: https://github.com/joshka/tui-widgets/blob/main/CONTRIBUTING.md
104104
105105
mod big_text;
106106
mod pixel_size;

tui-popup/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ match event.read()? {
7979
The popup also supports rendering arbitrary widgets by implementing SizedWidgetRef (or wrapping them
8080
with the provided SizedWrapper). This makes it possible to support wrapping and scrolling in using a
8181
`Paragraph` widget, or scrolling any amount of widgets using
82-
[tui-scrollview](https://github.com/joshka/tui-scrollview/).
82+
[tui-scrollview](https://crates.io/crates/tui-scrollview).
8383

8484
```rust
8585
let lines: Text = (0..10).map(|i| Span::raw(format!("Line {}", i))).collect();

tui-scrollview/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl StatefulWidget for MyScrollableWidget {
4949
## Full Example
5050

5151
A full example can be found in the [examples] directory.
52-
[scrollview.rs](https://github.com/joshka/tui-scrollview/tree/main/examples/scrollview.rs)
52+
[scrollview.rs](https://github.com/joshka/tui-widgets/blob/main/tui-scrollview/examples/scrollview.rs)
5353

5454
This example shows a scrollable view with two paragraphs of text, one for the line numbers and
5555
one for the text. On top of this a Gauge widget is rendered to show that this can be used in

tui-scrollview/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
//! ## Full Example
4848
//!
4949
//! A full example can be found in the [examples] directory.
50-
//! [scrollview.rs](https://github.com/joshka/tui-scrollview/tree/main/examples/scrollview.rs)
50+
//! [scrollview.rs](https://github.com/joshka/tui-widgets/tree/main/tui-scrollview/examples/scrollview.rs)
5151
//!
5252
//! This example shows a scrollable view with two paragraphs of text, one for the line numbers and
5353
//! one for the text. On top of this a Gauge widget is rendered to show that this can be used in

0 commit comments

Comments
 (0)