== 1.6.19
* Fixed `terminal_size()` with jline2 (by presidentbeef).
== 1.6.18
* Fixed a long supported interface that was accidentally broken with a recent change (by Rubem Nakamura Carneiro).
== 1.6.17
* Added encoding support to menus (by David Lyons).
* Some minor fixes to SystemExtensions (by whiteleaf and presidentbeef).
== 1.6.16
* Added the new indention feature (by davispuh).
* Separated auto-completion from the answer type (by davispuh).
* Improved JRuby support (by rsutphin).
* General code clean up (by stomar).
* Made HighLine#say() a little smarter with regard to color escapes
(by Kenneth Murphy).
= Change Log
Below is a complete listing of changes for each revision of HighLine.
== 1.6.14
* Added JRuby 1.7 support (by Mina Nagy).
* Take into account color escape sequences when wrapping text (by Mark J.
Titorenko).
== 1.6.13
* Removed unneeded Shebang lines (by Scott Gonyea).
* Protect the String passed to Question.new from modification (by michael).
* Added a retype-to-verify setting (by michael).
= Change Log
Below is a complete listing of changes for each revision of HighLine.
== 1.6.11
* Fixed a bad test. (Fix by Diego Elio Pettenò.)
== 1.6.10
* Fixed a regression that prevented asking for String arguments (by Jeffery
Sman.)
* Fixed a testing incompatibility (by Hans de Graaff.)
== 1.6.9
* The new list modes now properly ignore escapes when sizing.
* Added a project gemspec file.
* Fixed a bug that prevented the use of termios (by tomdz).
* Switch to JLine to provide better echo support on JRuby (by tomdz).
Changelog:
== 1.6.5
* HighLine#list() now correctly handles empty lists (fix by Lachlan Dowding).
* HighLine#list() now supports <tt>:uneven_columns_across</tt> and
<tt>:uneven_columns_down</tt> modes.
== 1.6.4
* Add introspection methods to color_scheme: definition, keys, to_hash.
* Add tests for new methods.
== 1.6.3
* 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.
= Change Log
Below is a complete listing of changes for each revision of HighLine.
== 1.6.2
* 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).
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.
* Remove default value of GEM_BUILD.
== 1.6.1
* 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.
based on package by @anyakichi via twiter.
== 1.5.2
* Added support for using the ffi-ncurses gem which is supported in JRuby.
* Added gem build instructions.
== 1.5.1
* 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)
== 1.5.0
* 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)
A high-level IO library that provides validation, type conversion,
and more for command-line interfaces. HighLine also includes a complete
menu system that can crank out anything from simple list selection to
complete shells with just minutes of work.