go-prompt/CHANGELOG.md

80 lines
2.8 KiB
Markdown
Raw Normal View History

2017-08-17 16:17:27 +00:00
# Change Log
## v0.3.0 (2018/??/??)
next release.
2018-10-20 09:12:50 +00:00
## v0.2.3 (2018/10/25)
### What's new?
* Add `prompt.FuzzyFilter` for fuzzy matching at [#92](https://github.com/c-bata/go-prompt/pull/92).
* Add `OptionShowCompletionAtStart` to show completion at start at [#100](https://github.com/c-bata/go-prompt/pull/100).
* Add `prompt.NewStderrWriter` at [#102](https://github.com/c-bata/go-prompt/pull/102).
### Fixed
* Fix resetting display attributes (please see [pull #104](https://github.com/c-bata/go-prompt/pull/104) for more details).
* Fix error handling of Flush function in ConsoleWriter (please see [pull #97](https://github.com/c-bata/go-prompt/pull/97) for more details).
* Fix panic problem when reading from stdin before starting the prompt (please see [issue #88](https://github.com/c-bata/go-prompt/issues/88) for more details).
### Removed or Deprecated
* `prompt.NewStandardOutputWriter` is deprecated. Please use `prompt.NewStdoutWriter`.
## v0.2.2 (2018/06/28)
2018-02-14 18:12:16 +00:00
2018-06-08 15:00:54 +00:00
### What's new?
2018-06-21 16:45:18 +00:00
* Support CJK(Chinese, Japanese and Korean) and Cyrillic characters.
2018-06-23 19:35:26 +00:00
* Add OptionCompletionWordSeparator(x string) to customize insertion points for completions.
* To support this, text query functions by arbitrary word separator are added in Document (please see [here](https://github.com/c-bata/go-prompt/pull/79) for more details).
* Add FilePathCompleter to complete file path on your system.
2018-06-08 15:00:54 +00:00
* Add option to customize ascii code key bindings.
* Add GetWordAfterCursor method in Document.
2018-02-14 18:12:16 +00:00
2018-06-20 16:50:52 +00:00
### Removed or Deprecated
2018-06-20 17:27:27 +00:00
* prompt.Choose shortcut function is deprecated.
2018-06-20 16:50:52 +00:00
2018-02-14 08:00:03 +00:00
## v0.2.1 (2018/02/14)
2018-02-14 06:43:27 +00:00
### What's New?
2018-02-14 18:12:16 +00:00
* ~~It seems that windows support is almost perfect.~~
* A critical bug is found :( When you change a terminal window size, the layout will be broken because current implementation cannot catch signal for updating window size on Windows.
2018-02-14 06:43:27 +00:00
### Fixed
* Fix a Shift+Tab handling on Windows.
* Fix 4-dimension arrow keys handling on Windows.
2018-02-13 14:43:51 +00:00
## v0.2.0 (2018/02/13)
2017-08-17 16:17:27 +00:00
2018-02-13 14:43:51 +00:00
### What's New?
2017-08-17 16:17:27 +00:00
2018-02-13 14:43:51 +00:00
* Supports scrollbar when there are too many matched suggestions
* Windows support (but please caution because this is still not perfect).
* Add OptionLivePrefix to update the prefix dynamically
2017-08-17 16:17:27 +00:00
* Implement clear screen by `Ctrl+L`.
2018-02-13 14:43:51 +00:00
### Fixed
2017-08-17 16:17:27 +00:00
* Fix the behavior of `Ctrl+W` keybind.
2018-02-13 14:43:51 +00:00
* Fix the panic because when running on a docker container (please see [here](https://github.com/c-bata/go-prompt/pull/32) for details).
* Fix panic when making terminal window small size after input 2 lines of texts. See [here](https://github.com/c-bata/go-prompt/issues/37) for details).
* And also fixed many bugs that layout is broken when using Terminal.app, GNU Terminal and a Goland(IntelliJ).
### News
New core developers are joined (alphabetical order).
2018-02-14 03:00:01 +00:00
* Nao Yonashiro (Github @orisano)
2018-02-13 14:43:51 +00:00
* Ryoma Abe (Github @Allajah)
* Yusuke Nakamura (Github @unasuke)
2017-08-17 16:17:27 +00:00
## v0.1.0 (2017/08/15)
Initial Release