All Versions
72
Latest Version
Avg Release Cycle
143 days
Latest Release
1630 days ago

Changelog History
Page 5

  • v1.6.7 Changes

    • ๐Ÿ›  Fixed bug introduced in 1.6.6 attempted fix (by Aaron Gifford).
  • v1.6.6 Changes

    • ๐Ÿ›  Fixed old style references causing HighLine::String errors (by Aaron Gifford).
  • v1.6.5 Changes

    • HighLine#list() now correctly handles empty lists (fix by Lachlan Dowding).
    • HighLine#list() now supports :uneven_columns_across and :uneven_columns_down modes.
  • v1.6.4 Changes

    • Add introspection methods to color_scheme: definition, keys, to_hash.
    • โž• Add tests for new methods.
  • v1.6.3 Changes

    • โž• Add color NONE.
    • โž• Add RGB color capability.
    • Made 'color' available as a class or instance method of HighLine, for instance: HighLine.color("foo", :blue)) or highline_obj.color("foo", :blue) are now both possible and equivalent.
    • โž• Add HighLine::String class with convenience methods: #color (alias #foreground), #on (alias #background), colors, and styles. See lib/string_extensions.rb.
    • โž• Add (optional) ability to extend String with the same convenience methods from HighLine::String, using Highline.colorize_strings.
  • v1.6.2 Changes

    • Correctly handle STDIN being closed before we receive any data (fix by mleinart).
    • ๐Ÿ Try if msvcrt, if we can't load crtdll on Windows (fix by pepijnve).
    • A fix for nil_on_handled not running the action (reported by Andrew Davey).
  • v1.6.1 Changes

    • Fixed raw_no_echo_mode so that it uses stty -icanon rather than cbreak as cbreak does not appear to be the posixly correct argument. It fails on Solaris if cbreak is used.
    • ๐Ÿ›  Fixed an issue that kept Menu from showing the correct choices for disambiguation.
    • โœ‚ Removed a circular require that kept Ruby 1.9.2 from loading HighLine.
    • ๐Ÿ›  Fixed a bug that caused infinite looping when wrapping text without spaces.
    • ๐Ÿ›  Fixed it so that :auto paging accounts for the two lines it adds.
    • ๐Ÿ’Ž On JRuby, improved error message about ffi-ncurses. Before 1.5.3, HighLine was silently swallowing error messages when ffi-ncurses gem was installed without ncurses present on the system.
    • ๐Ÿ Reverted Aaron Simmons's patch to allow redirecting STDIN on Windows. This is the only way we could find to restore HighLine's character reading to working order.
  • v1.5.2 Changes

    • โž• Added support for using the ffi-ncurses gem which is supported in JRuby.
    • โž• Added gem build instructions.
  • v1.5.1 Changes

    • ๐Ÿ›  Fixed the long standing echo true bug. (reported by Lauri Tuominen)
    • ๐Ÿ‘Œ Improved Windows API calls to support the redirection of STDIN. (patch by Aaron Simmons)
    • โšก๏ธ Updated gem specification to avoid a deprecated call.
    • ๐Ÿ“š Made a minor documentation clarification about character mode support.
    • ๐Ÿ’Ž Worked around some API changes in Ruby's standard library in Ruby 1.9. (patch by Jake Benilov)
  • v1.5.0 Changes

    • ๐Ÿ›  Fixed a bug that would prevent Readline from showing all completions. (reported by Yaohan Chen)
    • โž• Added the ability to pass a block to HighLine#agree(). (patch by Yaohan Chen)