File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.2.0 (2015-05-17)
4+
5+ * Feature: Support echo replacements (asterisk for password prompts)
6+ (#11 )
7+
8+ ``` php
9+ $stdio->getReadline()->setEcho('*');
10+ ```
11+
12+ * Feature: Add accessors for text input buffer and current cursor position
13+ (#8 and #9 )
14+
15+ ``` php
16+ $stdio->getReadline()->setInput('hello);
17+ $stdio->getReadline()->getCursorPosition();
18+ ```
19+
20+ * Feature: All setters now return self to allow easy method chaining
21+ (#7 )
22+
23+ ``` php
24+ $stdio->getReadline()->setPrompt('Password: ')->setEcho('*')->setInput('secret');
25+ ```
26+
27+ * Feature: Only redraw() readline when necessary
28+ (#10 and #14 )
29+
330## 0.1.0 (2014-09-08)
431
532* First tagged release
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ The recommended way to install this library is [through composer](https://getcom
3535``` JSON
3636{
3737 "require" : {
38- "clue/stdio-react" : " ~0.1 .0"
38+ "clue/stdio-react" : " ~0.2 .0"
3939 }
4040}
4141```
You can’t perform that action at this time.
0 commit comments