Josh McKinney
548961f610
test(list): add characterization tests for list ( #167 )
...
- also adds builder methods on list state to make it easy to construct
a list state with selected and offset as a one-liner. Uses `with_` as
the prefix for these methods as the selected method currently acts as
a getter rather than a builder.
- cargo tarpaulin suggests only two lines are not covered (the two
match patterns of the self.start_corner match 223 and 227).
the body of these lines is covered, so this is probably 100% coverage.
2023-05-09 17:39:01 +02:00
TimerErTim
b3072ce354
style: clippy's variable inlining in format macros
2023-05-07 16:19:34 -07:00
Josh McKinney
98b6b1911c
test(buffer): add assert_buffer_eq!
and Debug implementation ( #161 )
...
- The implementation of Debug is customized to make it easy to use the
output (particularly the content) directly when writing tests (by
surrounding it with `Buffer::with_lines(vec![])`). The styles part of
the message shows the position of every style change, rather than the
style of each cell, which reduces the verbosity of the detail, while
still showing everything necessary to debug the buffer.
```rust
Buffer {
area: Rect { x: 0, y: 0, width: 12, height: 2 },
content: [
"Hello World!",
"G'day World!",
],
styles: [
x: 0, y: 0, fg: Reset, bg: Reset, modifier: (empty),
x: 0, y: 1, fg: Green, bg: Yellow, modifier: BOLD,
]
}
```
- The assert_buffer_eq! macro shows debug view and diff of the two
buffers, which makes it easy to understand exactly where the difference
is.
- Also adds a unit test for buffer_set_string_multi_width_overwrite
which was missing from the buffer tests
2023-05-07 21:39:51 +02:00
kyoto7250
ef96109ea5
feat(list): add len() to List
2023-05-06 22:29:54 -07:00
Josh McKinney
cf1a759fa5
test(widget): add unit tests for Paragraph ( #156 )
2023-05-04 21:29:40 +02:00
a-kenji
86c3fc9fac
feat(test): expose test buffer ( #160 )
...
Allow a way to expose the buffer of the `TestBackend`,
to easier support different testing methodologies.
2023-05-04 21:28:55 +02:00
Josh McKinney
5f12f06297
ci: add ci, build, and revert to allowed commit types
...
This is the same list as https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional\#rules
2023-05-04 04:12:55 -07:00
Lowell Thoerner
33b3f4e312
feat(widget): add style methods to Span, Spans, Text ( #148 )
...
- add patch_style() and reset_style() to `Span` and `Spans`
- add reset_style() to `Text`
- updated doc for patch_style() on `Text` for clarity.
2023-05-02 15:30:05 -07:00
Josh McKinney
603ec3f10a
docs(block): add example for block.inner ( #158 )
2023-05-02 06:48:38 +01:00
Leon Sautour
37bb82e87d
docs(readme): add acknowledgement section ( #154 )
2023-04-27 14:10:26 +02:00
Orhun Parmaksız
047e0b7e8d
style(readme): update project introduction in README.md ( #153 )
2023-04-27 12:03:37 +01:00
Orhun Parmaksız
782820c34a
feat(widget): support adding padding to Block ( #20 )
...
Co-authored-by: Igor Mandello <igormandello@gmail.com>
Co-authored-by: Léon Sautour <leon@sautour.net>
2023-04-27 12:30:13 +02:00
Leon Sautour
26cf1f7a89
refactor(examples): refactor paragraph example ( #152 )
2023-04-27 11:06:45 +01:00
Erich Heine
f7ab4f04ac
feat(calendar): add calendar widget ( #138 )
2023-04-26 23:02:35 +02:00
Erich Heine
2751f08bdc
fix(142): cleanup doc example ( #145 )
2023-04-21 16:06:14 +02:00
wcampbell
0904d448e0
docs(apps): ix rsadsb/adsb_deku radar link ( #140 )
2023-04-18 18:50:34 +02:00
BADR
fab7952af6
docs(apps): add tenere ( #141 )
2023-04-18 18:48:53 +02:00
Conrad Ludgate
6af75d6d40
feat(terminal)!: add inline viewport ( #114 )
...
Co-authored-by: Florian Dehau <work@fdehau.com>
Co-authored-by: Orhun Parmaksız <orhunparmaksiz@gmail.com>
2023-04-17 14:23:50 +02:00
Josh McKinney
5f1a37f0db
fix(canvas)!: use full block for Marker::Block ( #133 )
2023-04-15 17:40:28 +02:00
Josh McKinney
b7bd3051b1
feat(sparkline): finish #1 Sparkline directions PR ( #134 )
...
Co-authored-by: Joseph Price <pricejosephd@gmail.com>
2023-04-14 19:15:56 +02:00
Orhun Parmaksız
7adc3fe19b
feat(block): support placing the title on bottom ( #36 )
...
Co-authored-by: Spencer Gouw <swyverng55@g.ucla.edu>
Co-authored-by: Benjscho <47790940+Benjscho@users.noreply.github.com>
Co-authored-by: Arijit Basu <sayanarijit@gmail.com>
2023-04-13 22:24:31 +02:00
lesleyrs
4842885aa6
fix(examples): update input in examples to only use press events ( #129 )
2023-04-13 22:21:35 +02:00
Xithrius
00e8c0d1b0
docs(apps): add twitch-tui ( #124 )
2023-04-11 13:05:47 +02:00
MeowKing
239efa5fbd
docs(readme): update project description ( #127 )
2023-04-07 16:28:42 +02:00
Brook Jeynes [SSW]
a9ba23bae8
docs(apps): add oxycards ( #113 )
2023-03-27 10:43:40 +02:00
Orhun Parmaksız
62930f2821
refactor(example): remove redundant vec![]
in user_input
example ( #26 )
...
Co-authored-by: rhysd <lin90162@yahoo.co.jp>
2023-03-25 14:45:28 +01:00
FujiApple
4334c71bc7
docs(apps): re-add trippy to APPS.md ( #117 )
2023-03-25 12:29:52 +01:00
kpcyrd
21a029f17e
refactor(style): Mark some Style fns const so they can be defined globally ( #115 )
2023-03-24 17:34:06 +01:00
Orhun Parmaksız
9d37c3bd45
docs(changelog): update the empty profile link in contributors ( #112 )
2023-03-23 09:40:39 +05:30
Arijit Basu
343ec220b4
chore(release): prepare for 0.20.1 ( #110 )
2023-03-22 23:57:54 +05:30
Josh McKinney
2da4c10384
docs: fixup remaining tui references ( #106 )
2023-03-22 11:03:45 +05:30
acheronfail
829dfee9e5
Update APPS.md ( #108 )
2023-03-22 10:57:20 +05:30
UncleScientist
26c7bcfdd5
fix(style): bold needs a bit ( #104 )
2023-03-20 23:09:27 +05:30
todoesverso
cf1b05d16e
docs(apps): add "logss" to apps ( #105 )
2023-03-20 18:20:22 +01:00
Orhun Parmaksız
cfa8b8042a
chore(release): prepare for 0.20.0 ( #97 )
2023-03-19 18:11:15 +01:00
Orhun Parmaksız
f0c0985708
docs(readme): update crate status badge ( #102 )
2023-03-19 17:55:48 +01:00
Leon Sautour
73c937bc30
docs(readme): small edits before first release ( #101 )
2023-03-19 17:49:26 +01:00
Orhun Parmaksız
33e67abbe9
docs(canvas): add documentation for x_bounds, y_bounds ( #35 )
...
Co-authored-by: girvel <widauka@ya.ru>
Co-authored-by: Leon Sautour <leon1.sautour@epitech.eu>
Co-authored-by: Arijit Basu <sayanarijit@users.noreply.github.com>
2023-03-19 17:30:23 +01:00
Arijit Basu
c20fb723ef
docs(readme): add install instruction and update title ( #100 )
2023-03-19 16:08:04 +01:00
Orhun Parmaksız
ccd142df97
docs(apps): move 'apps using ratatui' to dedicated file ( #98 ) ( #99 )
2023-03-19 01:30:47 +01:00
Orhun Parmaksız
f6dbd1c0b5
docs(readme): add systeroid to application list ( #92 )
2023-03-18 08:11:44 +05:30
Orhun Parmaksız
d38d185d1c
feat(cd): add continuous deployment workflow ( #93 )
2023-03-17 21:19:01 +01:00
Qichao Lan
ef79b72471
docs(readme): add glicol-cli to showcase list ( #95 )
2023-03-17 21:18:04 +01:00
Orhun Parmaksız
ed12ab16e0
chore(cargo): update project metadata ( #94 )
2023-03-17 17:03:49 +01:00
Orhun Parmaksız
24820cfcff
chore(ci): integrate typos
for checking typos ( #91 )
2023-03-16 15:00:52 +01:00
Kian-Meng Ang
e10f62663e
docs: fix typos ( #90 )
2023-03-16 18:56:50 +05:30
Conrad Ludgate
02573b0ad2
better safe shared layout cache ( #62 )
2023-03-12 18:23:30 +05:30
Orhun Parmaksız
0dc39434c2
Fix: cassowary/layouts: add extra constraints for fixing Min(v)/Max(v) combination. ( #31 )
...
Co-authored-by: Simon Allen <simon@simonallen.org>
2023-03-11 17:11:13 +05:30
Linda_pp
33acfce083
fix(ci): Test MSRV compatibility on CI ( #85 )
2023-03-08 22:07:19 +05:30
Arijit Basu
79d0eadbd6
docs: update to build more backends ( #81 )
...
Co-authored-by: Doug Goldstein <cardoe@cardoe.com>
2023-03-05 13:25:36 +01:00