Releases: ihalila/pancurses
Releases · ihalila/pancurses
v0.17.0
- Updated ncurses-rs to 5.101.0 (#60, #83)
- Cleanup
Window::drop()
(#61)
- Expose
Window::resize()
(#65)
- Fix Unix A_CHARTEXT constant (#67)
- Rust 2018 edition compatibility (#69)
- Use slice::iter instead of into_iter to avoid future breakage (#70)
- Use setlocale from libc rather than ncurses-rs (#78)
- Fix warnings and lints (#81)
- Make compatible with ncurses-rs NetBSD fixes (#82)
v0.16.1
- Fixed an issue on windows, using the wrong min function (#49)
- Rename bgkdset() -> bkgdset() to be consistent with bkgd() (#52)
- Remove
try!
so example compiles with 2018 edition (#55)
- Fix
Window::mouse_trafo
's implementation (#56)
- Make Window::mouse_trafo take an immutable &self (#59)
v0.16.0
- Make the various window string methods generic on AsRef (#39)
- Fixed registry permissions (#45)
- Fixed missing log crate when using the win32 feature (#46)
v0.15.0
- Improved input handling, pancurses supports UTF-16 input on Windows and UTF-8 on Linux.
- Numpad keys are now converted consistently between platforms.
- Added raw() and noraw().
v0.14.0
- Merged pull requests #24, #27, #30 and #31
- Added insdelln() and insertln()
- Tidied up the code
v0.13.0
- Mouse event constants are now exported allowing easier handling of mouse events
- Added mouseinterval(), enclose() and mouse_trafo() (#18)
- Use pdcurses-sys 0.7 adding support for the win32 flavor of PDCurses
- Enable resizing win32a windows by default (#20)
- Disable the Font menu on win32 by default (#17)
v0.12.0
- Implement Drop for Window (#19)
- Added is_linetouched(), is_touched(), touch(), touchline(), touchln(), untouch(), dupwin(), mvderwin() and mvwin()
- Fix typo in pancurses::set_blink documentation (#21)
- pdcurses-sys 0.6
v0.11.0
- Updated pdcurses-sys dependency to 0.5 (related to #13)
- Added ACS box char aliases (ACS_BSSB etc.)
0.10.0
Issue #10: Added ACS characters
Issue #15: Added insch() and mvinsch()
0.9.0
Issue #11 : COLORS() and COLOR_PAIRS() now available
Issue #12 : newterm(), set_term() and delscreen() implemented
Issue #14 : echo() implemented