File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ body = """
43
43
trim = true
44
44
# postprocessors
45
45
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
47
47
{ pattern = ' +\n' , replace = " \n " },
48
48
]
49
49
Original file line number Diff line number Diff line change @@ -99,10 +99,10 @@ BigText::builder().right_aligned();
99
99
[ Code Coverage ] : https://app.codecov.io/gh/joshka/tui-big-text
100
100
[ Ratatui Discord ] : https://discord.gg/pMCEU9hNEj
101
101
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
106
106
107
107
<!-- cargo-rdme end -->
108
108
Original file line number Diff line number Diff line change 97
97
//! [Code Coverage]: https://app.codecov.io/gh/joshka/tui-big-text
98
98
//! [Ratatui Discord]: https://discord.gg/pMCEU9hNEj
99
99
//!
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
104
104
105
105
mod big_text;
106
106
mod pixel_size;
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ match event.read()? {
79
79
The popup also supports rendering arbitrary widgets by implementing SizedWidgetRef (or wrapping them
80
80
with the provided SizedWrapper). This makes it possible to support wrapping and scrolling in using a
81
81
` 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 ) .
83
83
84
84
``` rust
85
85
let lines : Text = (0 .. 10 ). map (| i | Span :: raw (format! (" Line {}" , i ))). collect ();
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ impl StatefulWidget for MyScrollableWidget {
49
49
## Full Example
50
50
51
51
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 )
53
53
54
54
This example shows a scrollable view with two paragraphs of text, one for the line numbers and
55
55
one for the text. On top of this a Gauge widget is rendered to show that this can be used in
Original file line number Diff line number Diff line change 47
47
//! ## Full Example
48
48
//!
49
49
//! 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)
51
51
//!
52
52
//! This example shows a scrollable view with two paragraphs of text, one for the line numbers and
53
53
//! one for the text. On top of this a Gauge widget is rendered to show that this can be used in
You can’t perform that action at this time.
0 commit comments