Commit Graph

16 Commits

Author SHA1 Message Date
Timon Post
b717d306c3 Putted Screen behind an Option. Now when you call the functions: color, cursor, terminal, input you won't need to provide a Screen anymore.
When you want to work with the 'alternate screen' you can call the following functions: terminal::from_screen etc. Which will give you an instance to the back of the module you are calling it in.

So instead of:

let color = color(Screen::default());
let cursor = cursor(Screen::default());
let input = input(Screen::default());
let terminal = terminal(Screen::default());

You can do:

let color = color();
let cursor = cursor();
let input = input();
let terminal = terminal();
2018-11-21 07:54:16 -08:00
Timon
ad8b75f448
Fixed bug flush_buf(). (#42)
* Fixed bug flush_buf() issue 42.
2018-11-14 15:13:58 +01:00
Timon
af20e3d605
Update ReleaseNotes.md 2018-09-22 23:03:11 +02:00
TimonPost
4d60ac91b3 updated docs 2018-08-29 22:28:59 +02:00
TimonPost
410009dc46 updated doc 2018-08-25 12:00:39 +02:00
TimonPost
ef09cdfdd6 Merge branch 'development' of https://github.com/TimonPost/crossterm into development 2018-08-14 21:40:13 +02:00
TimonPost
f7c6f36a46 Changed Crossterm type so that the user does not have to enter a reference to a Screen every function call and also updated the readme, docs,comments,examples 2018-08-14 21:40:07 +02:00
Timon
e26fc81e86
Update UpgradeManual.md 2018-08-13 22:32:05 +02:00
Timon
02fb04aac4
Rename ReleaseNotesVersion 0.3.0.md to ReleaseNotes.md 2018-08-13 22:31:23 +02:00
TimonPost
df068b823e bound multible release nodes into one and updated the UpgradeManual 2018-08-13 22:30:28 +02:00
TimonPost
8a3b8b8ce7 removed target, updated version number to 0.3.0 2018-07-15 23:08:10 +02:00
Timon
6527123f6a
Update ReleaseNotesVersion 0.2.3.md 2018-07-14 23:24:11 +02:00
Timon
aa7135ed77
Add files via upload
added readme from previous versions
2018-07-14 21:15:45 +01:00
Timon
33470bbb43
Update ReleaseNotesVersion 0.2.3.md 2018-07-14 17:07:15 +01:00
Timon
81835c8437
Update ReleaseNotesVersion 0.2.3.md 2018-07-14 12:29:39 +02:00
TimonPost
787b4aa1b3 Added release notes, docs, readme changed almost done for release 0.2.3 2018-07-12 23:36:30 +02:00