mirror of https://github.com/chzyer/readline.git
release 1.2
This commit is contained in:
parent
4ae9d7e0fd
commit
bd7c8c6fbe
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
|||
# ChangeLog
|
||||
|
||||
### 1.2 - 2016-03-05
|
||||
|
||||
* Add a demo for checking password strength [example/readline-pass-strength](https://github.com/chzyer/readline/blob/master/example/readline-pass-strength/readline-pass-strength.go), , written by [@sahib](https://github.com/sahib)
|
||||
* #23, support stdin remapping
|
||||
* #27, add a `UniqueEditLine` to `Config`, which will erase the editing line after user submited it, usually use in IM.
|
||||
* Add a demo for multiline [example/readline-multiline](https://github.com/chzyer/readline/blob/master/example/readline-multiline/readline-multiline.go) which can submit one SQL by multiple lines.
|
||||
* Supports performs even stdin/stdout is not a tty.
|
||||
* Add a new simple apis for single instance, check by [here](https://github.com/chzyer/readline/blob/master/std.go). It need to save history manually if using this api.
|
||||
* #28, fixes the history is not working as expected.
|
||||
|
||||
### 1.1 - 2015-11-20
|
||||
|
||||
* #12 Add support for key `<Delete>`/`<Home>`/`<End>`
|
||||
|
|
|
@ -41,7 +41,7 @@ type Config struct {
|
|||
MaskRune rune
|
||||
|
||||
// erase the editing line after user submited it
|
||||
// it often use in IM.
|
||||
// it use in IM usually.
|
||||
UniqueEditLine bool
|
||||
|
||||
// force use interactive even stdout is not a tty
|
||||
|
|
Loading…
Reference in New Issue