Commit Graph

1202 Commits

Author SHA1 Message Date
Alexandre Bury
618e07ff34 (cargo-release) start next development iteration 0.13.1-alpha.0 2019-08-16 10:36:30 -07:00
Alexandre Bury
b842feef08 (cargo-release) version 0.13.0 2019-08-16 10:36:16 -07:00
Alexandre Bury
c6f40da9e1 Update changelog for 0.13.0 2019-08-16 10:35:43 -07:00
Alexandre Bury
63302bf01b Cleanup text_view 2019-08-16 10:15:00 -07:00
Leonardo Lang
dc10fd8c44 Fix out-of-bounds access on TextView
Frequent updates to `TextContent` while the screen is being refreshed can
trigger an out-of-bounds access: an update with a smaller string being
performed between calls to `compute_rows()` and `draw()` on TextView will
cause an out-of-bounds access when slicing the string at `Segment::resolve`.

This change fixes the issue by caching the content value when performing
size calculations and using this cached content when drawing the view.

Some additional changes were also made to reuse `TextContent` invalidation
code on `TextView` and wrap content data with `RefCell<Arc<..>>` to enable
sharing the inner string between `content_value` and `content_cache`.
2019-08-01 20:29:50 -04:00
Alexandre Bury
c0004c54c0 SizeConstraint::Full now defer to requested size if larger than available 2019-07-31 21:44:21 -07:00
Alexandre Bury
349756e514 Fix clippy lints 2019-07-30 16:29:03 -07:00
Alexandre Bury
b7d71e8381 Rustfmt
Moves to "Tall" fn_args_layout
2019-07-30 16:08:40 -07:00
Andrzej J. Skalski
4a1fc3e49d Test backend (#310) 2019-07-30 11:57:01 -07:00
Timon
bddb1a9dde Crossterm Performance Update (#361) 2019-07-30 09:48:50 -07:00
cubetastic
ede8423e92 Update docs, fix minor typos, rephrase some parts of the tutorials (#364)
Also mention that strikethrough doesn't work with ncurses and blt.
2019-07-30 09:48:05 -07:00
Alexandre Bury
7053d6a78f Update dependencies 2019-07-29 13:11:30 -07:00
cubetastic
9ca3f50bd6 Add strikethrough effect (#360) 2019-07-29 12:59:58 -07:00
Alexandre Bury
ef60cd0a76 Add ListView::remove_child 2019-07-26 15:36:19 -07:00
Gergely Nagy
74266edf29 replace CbFunc with Box<FnOnce()> (#351)
Since Rust 1.35, Box<FnOnce()> compiles, we can remove the workaround.
2019-07-05 00:16:26 -07:00
Alexandre Bury
babc038e36 Add some documentation to the view::scroll module 2019-07-02 16:50:21 -07:00
Danil Berestov
976cb99bdb Remove extra check (#357) 2019-06-27 16:19:07 -07:00
Alexandre Bury
ad23dfe59b Add ScrollView::{inner_size, is_at_{bottom, top, left, right}} 2019-06-23 21:53:11 -04:00
Alexandre Bury
0c8a7b2708 Rename repo name to use lowercase 2019-06-19 14:39:11 -04:00
Alexandre Bury
874eb95690 Update changelog 2019-06-18 12:44:25 -07:00
Alexandre Bury
269f2ab521 Add dyn to trait objects 2019-06-18 11:44:47 -07:00
Alexandre Bury
5faf8d6c48 Improve tcp_server example a bit 2019-06-18 11:44:47 -07:00
Alexandre Bury
7d81594c69 Fix compilation on stable 2019-06-17 14:59:52 -07:00
Alexandre Bury
c2b2c7b918 Add a TCP example to showcase model-view separation. 2019-06-17 14:49:56 -07:00
Mark LeMoine
39e14d8c93 Add getters for current and max value in SliderView (#353) 2019-06-07 09:47:48 -07:00
Alexandre Bury
23d65aa9dc Update examples and tutorials to Rust 2018 2019-05-20 15:53:22 -07:00
David Ross
b2184b3a36 Fix doc typo (abd -> and) (#350) 2019-05-20 10:19:49 -07:00
Alexandre Bury
8d6b256b1c More public fields in cursive::logger 2019-05-18 08:40:18 -07:00
Alexandre Bury
5ee7e11619 Add warning to vpv if no input is given 2019-05-15 12:18:26 -07:00
Alexandre Bury
859c12320f Send Event::Refresh on fps timeout 2019-05-14 09:41:13 -07:00
Alexandre Bury
8c074ef3d7 Update Readme with latest version 2019-05-09 09:39:56 -07:00
Alexandre Bury
5cfd0b0af2 (cargo-release) start next development iteration 0.12.0 2019-05-09 09:37:41 -07:00
Alexandre Bury
4120ce6172 (cargo-release) version 0.12.0 2019-05-09 09:37:23 -07:00
Alexandre Bury
00f4b27794 Update dependencies 2019-05-09 09:35:39 -07:00
Shixin Zeng
df0391aef2 [PAN] Interprete 'carriage return' as 'enter' (#342)
Pancurses returns different key codes for "Enter" in the normal area
('\r'), and the one in the numpad ('\n'). Cursive only interpretes '\n'
as Enter, and leaves '\r' as CtrlChar('m'), which is different than
that with NCurses on Linux, and makes 'Enter' key not trigger a clicked
event on buttons.
2019-05-08 10:07:05 -07:00
Gergely Nagy
cf86f64334 Enable horizontal scrollbar for debug console (#341) 2019-05-06 13:23:41 -07:00
Alexandre Bury
fb0d26fb4a Add Cursive::take_user_data 2019-04-24 11:48:51 -07:00
Alexandre Bury
a159753ad1 (cargo-release) start next development iteration 0.11.2 2019-04-18 13:49:36 -07:00
Alexandre Bury
1c73f8edff (cargo-release) version 0.11.2 2019-04-18 13:49:14 -07:00
Alexandre Bury
21a43d2b1c Update changelog 2019-04-17 12:13:52 -07:00
Alexandre Bury
e4d92cda66 Add newline at end of gitignore file 2019-04-17 12:09:37 -07:00
Alexandre Bury
26ea559479 Fix clippy warnings 2019-04-17 11:47:01 -07:00
Timon
34ecb67f1b Added crossterm backend. (#335)
Add a backend using the crossterm library.
2019-04-17 11:36:32 -07:00
Alexandre Bury
ea9d215fa3 Fix markdown tests 2019-04-15 15:50:52 -07:00
Alexandre Bury
ac28309b3b Use cfg-if for to define Cursive::default()
And update other dependencies
2019-04-15 15:47:23 -07:00
Alexandre Bury
51c6450688 Rustfmt 2019-04-11 17:08:55 -07:00
Alexandre Bury
158bc65c33 Add direct downcast methods to AnyView 2019-04-08 17:44:42 -07:00
Arnav Singh
070508f0cf Cursive::step() now returns true if something interesting happened. (#332)
Also make `Cursive::refresh()` public so that callers can force a refresh.

Fixes #331
2019-03-30 11:24:47 -07:00
Chris Vest
88037717e6 Add a sort method to SelectView, to easily sort all contained items lexicographically by their label. (#329)
* Add a sort method to SelectView, to easily sort all contained items lexicographically by their label.

* Add more sort methods to SelectView, bringing the API up to parity with Vec (except SelectView does not expose _unstable_ sorting).

* Rename SelectView::sort to sort_by_label to make it clear that it does not sort by the ordering of the items.

* The Ord implementation for select_view::Item is not necessary.

* Implement a SelectView::sort method for when the item values are orderable.
2019-03-30 10:22:08 -07:00
Alexandre Bury
ebfeef06d9 Update changelog 2019-03-28 17:39:12 -07:00