All Versions
10
Latest Version
Avg Release Cycle
73 days
Latest Release
1942 days ago

Changelog History

  • v0.16.1 Changes

    December 26, 2018
    • ๐Ÿ›  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 Changes

    June 09, 2018
    • ๐Ÿ‘‰ 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 Changes

    February 25, 2018
    • ๐Ÿ‘Œ 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 Changes

    January 20, 2018
    • ๐Ÿ”€ Merged pull requests #24, #27, #30 and #31
    • โž• Added insdelln() and insertln()
    • Tidied up the code
  • v0.13.0 Changes

    November 18, 2017
    • 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 fir the win32 flavor of PDCurses
    • ๐Ÿ Enable resizing win32a windows by default (#20)
    • 0๏ธโƒฃ Disable the Font menu on win32 by default (#17)
  • v0.12.0 Changes

    November 04, 2017
    • 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 Changes

    September 18, 2017
    • โšก๏ธ Updated pdcurses-sys dependency to 0.5 (related to #13)
    • โž• Added ACS box char aliases (ACS_BSSB etc.)
  • v0.10.0 Changes

    September 17, 2017

    Issue #10: Added ACS characters
    Issue #15: Added insch() and mvinsch()

  • v0.9.0 Changes

    July 24, 2017

    Issue #11 : COLORS() and COLOR_PAIRS() now available
    Issue #12 : newterm(), set_term() and delscreen() implemented
    Issue #14 : echo() implemented

  • v0.8.0 Changes

    March 05, 2017
    • โž• Added doupdate(), noutrefresh(), delay_output()
    • ๐Ÿ—„ There is now an Attribute enum and a ColorPair struct that should make working with attributes and color pairs easier. This is the first step towards deprecating the 'chtype' based API in favour of a more strongly typed one. Attributes and ColorPairs support the | and ^ operators, at least for now, so that they work as a drop-in replacement for chtypes.