Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

Latest commit

 

History

History
80 lines (56 loc) · 2.89 KB

CHANGELOG.md

File metadata and controls

80 lines (56 loc) · 2.89 KB

Version 0.5.0

  • Internal refactoring (PR #3)
    • Removed unsafe static mut
    • Documentation update
    • Remove all references to the crossterm book
  • Sync documentation style (PR #4)
  • Sync SyncReader::next() Windows and UNIX behavior (PR #5)
  • Remove all references to the crossterm book (PR #6)
  • Mouse coordinates synchronized with the cursor (PR #7)
    • Upper/left reported as (0, 0)
  • Fixed bug that read sync didn't block (Windows) (PR #8)
  • Refactored UNIX readers (PR #9)
    • AsyncReader produces mouse events
    • One reading thread per application, not per AsyncReader
    • Cursor position no longer consumed by another AsyncReader
    • Implemented sync reader for read_char (requires raw mode)
    • Fixed SIGTTIN when executed under the LLDB
    • Added mio for reading from FD and more efficient polling (UNIX only)
  • Sync UNIX and Windows vertical mouse position (PR #11)
    • Top is always reported as 0

Windows only

  • Fixed the KeyEvent BackTab vs Tab bug
  • SyncReader Iterator implementation returns None from the next method in case of error

Version 0.4.1

Version 0.4.0

  • TerminalInput::read_line returns crossterm::Result instead of io::Result
  • TerminalInput::read_char returns crossterm::Result instead of io::Result
  • Command::get_anis_code() to ansi_code()
  • Added KeyEvent::Enter and KeyEvent::Tab: added-key-event-enter, added-key-event-tab
  • ExecutableCommand::queue returns crossterm::Result
  • QueueableCommand::queue returns crossterm::Result
  • Added derives: Serialize/Deserialize for key events serde
  • Command API takes mutable self instead of self

Version 0.3.3

  • Removed println from SyncReader

Version 0.3.2

  • Fixed some special key combination detections for UNIX systems
  • Windows mouse input event position was 0-based and should be 1-based

Version 0.3.1

  • Updated crossterm_utils

Version 0.3.0

  • Removed TerminalInput::from_output()

Version 0.2.2

  • Fixed SyncReade bug.

Version 0.2.1

  • Introduced SyncReader

Version 0.2.0

  • Introduced KeyEvents
  • Introduced MouseEvents

Version 0.1.0

  • Moved out of crossterm 5.4 crate.