-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
54 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,32 @@ | ||
## v0.2.0 (trunk): | ||
## v0.2.0 (2017-10-31) | ||
|
||
Breaking changes: | ||
* Switch over to `Uchar.t` | ||
* Rename input `#key` to `#special` | ||
* Separate ASCII from general Unicode input | ||
* Move the cursor origin from (1, 1) to (0, 0) | ||
* Replace `I.tile` with more general `I.tabulate` | ||
* All-around speed and memory improvements. | ||
* Draw over lines cell-by-cell instead of using erase-and-skip. | ||
Slower, but flicker-free drawing. | ||
* `Term.create`: optionally inhibit synthetic TTY signals. | ||
* Cursor origin moved from `(1, 1)` to `(0, 0)`. **breaking** | ||
* `#key` renamed to `#special`. **breaking** | ||
* Added `Term.fds` to get connected file descriptors. | ||
* Added `A.equal` and `I.equal`. | ||
* Switched over to `Uchar.t`. **breaking** | ||
* Separated ASCII from the rest of Unicode input. **breaking** | ||
* Added image pretty-printer `I.pp`. | ||
* Added `notty.top` for use in the toplevel. | ||
* Removed `I.tile`. **breaking** | ||
* Added `I.tabulate`, generalizing `I.tile`. | ||
* Added support for 24-bit color. | ||
* Added `Notty_*.show_cursor` and `Notty_*.move_cursor` for manual cursor | ||
positioning in inline mode. | ||
* Removed `output_image_endline`. Can be replaced by `eol`. **breaking** | ||
* `Notty_*.output_image` lost the `~clear` parameter. Can be replaced in various | ||
ways by cursor positioning. | ||
* `Notty_unix.output_image ~chan` renamed to `~fd`. **breaking** | ||
* Added support for bracketed paste. | ||
* More example programs. | ||
|
||
Other changes: | ||
* More examples | ||
* Reduced memory pressure | ||
* Lines are now completely redrawn; reduces blinking | ||
* Option to inhibit synthetic TTY signals on term creation | ||
* Query a terminal for file descriptors it is connected to | ||
* Add attr and image equality | ||
|
||
## v0.1.1 (2016-02-09): | ||
## v0.1.1 (2016-02-09) | ||
* `Term.input` -> `Term.event` | ||
* Option to redraw the line | ||
|
||
## v0.1.0 (2016-02-09): | ||
## v0.1.0 (2016-02-09) | ||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ opam-version: "1.2" | |
homepage: "https://github.com/pqwy/notty" | ||
dev-repo: "https://github.com/pqwy/notty.git" | ||
bug-reports: "https://github.com/pqwy/notty/issues" | ||
doc: "http://pqwy.github.io/notty/doc" | ||
author: "David Kaloper <[email protected]>" | ||
maintainer: "David Kaloper <[email protected]>" | ||
license: "ISC" | ||
|