Skip to content

Commit

Permalink
version 0.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lotabout committed Jun 4, 2019
1 parent 430a217 commit 4755344
Show file tree
Hide file tree
Showing 4 changed files with 294 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/target
**/*.rs.bk
Cargo.lock
.idea
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change Logs

## v0.2.7: 2019-06-04

Features:
- Implement `From` trait for variaous struct
* `From<Color> for Attr`
* `From<Effect> for Attr`
* `From<char> for Cell`
- `win/split` now accept `Into<...>` struct. Previously when initializing
splits, you need to write `split.basis(10.into())`,
now it's just `split.basis(10)`.
- Implement builder pattern for `Attr`. We could now do
`Attr::default().fg(...).bg(...)`.
- Add two user defined event(`User1` and `User2`). Use it for your own need.

Bug fixes:
- fix compilation error on FreeBSD.

## v0.2.6: 2019-03-28

Reduce CPU usage on idle.
Expand Down
276 changes: 276 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tuikit"
version = "0.2.6"
version = "0.2.7"
authors = ["Jinzhou Zhang <lotabout@gmail.com>"]
description = "Toolkit for writing TUI applications"
documentation = "https://docs.rs/tuikit"
Expand Down

0 comments on commit 4755344

Please sign in to comment.