File tree 4 files changed +14
-13
lines changed
4 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " r3bl-cmdr"
3
- version = " 0.0.4 " # remember to update README
3
+ version = " 0.0.5 " # remember to update README
4
4
readme = " README.md"
5
5
edition = " 2021"
6
6
homepage = " https://r3bl.com"
7
7
license = " Apache-2.0"
8
8
9
9
description = """
10
- WIP: a TUI layout manager for the Rust programming language.
10
+ WIP: a TUI app suite for developers built in Rust
11
11
"""
12
12
13
13
# TODO: Replace the following commented lines w/ real values
@@ -34,8 +34,7 @@ tokio = { version = "1.20.1", features = ["full"] }
34
34
async-trait = " 0.1.57"
35
35
36
36
# Latest r3bl_rs_utils.
37
- r3bl_rs_utils = { version = " *" , path = " ../r3bl_rs_utils" }
38
- # r3bl_rs_utils = { version = "0.7.40", path = "../r3bl_rs_utils" }
37
+ r3bl_rs_utils = { version = " 0.7.41" , path = " ../r3bl_rs_utils" }
39
38
40
39
# Reedline.
41
40
reedline = " 0.9.0"
Original file line number Diff line number Diff line change
1
+ documentation, move:
2
+ ✔ copy some of this content over to the r3bl_rs_utils README @done(22-08-02 13:40)
3
+ ✔ move `lolcat` module to `r3bl_rs_utils_core::tui` module @done(22-08-02 13:47)
4
+ ✔ move tests to `r3bl_rs_utils` @done(22-08-02 13:47)
5
+ ✔ move `tui` module to `r3bl_rs_utils::tui` module @done(22-08-02 15:04)
6
+ ✔ docs.rs link is missing from crate (on crates.io) @done(22-08-04 10:34)
7
+ ✔ publish crate *after* r3bl_rs_utils is published @done(22-08-04 10:34)
8
+
1
9
focus mgmt support:
2
10
✔ extend `StateManageFocus` (🔱 statemanagefocus-cursor-support) @done(22-07-27 18:36)
3
11
- add methods that allow access to a `HashMap<String, Position>`
Original file line number Diff line number Diff line change 1
1
╭┄┄┄┄┄┄┄┄┄┄┄╮
2
2
│ r3bl-cmdr │
3
3
╯ ╰┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
4
- documentation, move:
5
- ✔ copy some of this content over to the r3bl_rs_utils README @done(22-08-02 13:40)
6
- ✔ move `lolcat` module to `r3bl_rs_utils_core::tui` module @done(22-08-02 13:47)
7
- ✔ move tests to `r3bl_rs_utils` @done(22-08-02 13:47)
8
- ✔ move `tui` module to `r3bl_rs_utils::tui` module @done(22-08-02 15:04)
9
- ☐ docs.rs link is missing from crate (on crates.io)
10
- ☐ publish crate *after* r3bl_rs_utils is published
11
-
12
4
graphemes & focus mgmt support demo:
13
5
☐ create a POC `RenderComponent` that shows a cursor & graphemes
14
6
- display a string eg: `Hi 📦 🙏🏽 👨🏾🤝👨🏿.`
@@ -63,3 +55,5 @@ mdns & p2p:
63
55
new stuff:
64
56
☐ flow editor
65
57
☐ diagrams
58
+ ☐ desktop notifications https://crates.io/crates/notify-rust
59
+
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ use crossterm::event::*;
22
22
use r3bl_rs_utils:: * ;
23
23
use tokio:: sync:: RwLock ;
24
24
25
- use super :: * ;
25
+ use crate :: * ;
26
26
27
27
/// Async trait object that implements the [TWApp] trait.
28
28
#[ derive( Default ) ]
You can’t perform that action at this time.
0 commit comments