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 1
1
# Changelog
2
2
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
+
3
30
## 0.1.0 (2014-09-08)
4
31
5
32
* 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
35
35
``` JSON
36
36
{
37
37
"require" : {
38
- "clue/stdio-react" : " ~0.1 .0"
38
+ "clue/stdio-react" : " ~0.2 .0"
39
39
}
40
40
}
41
41
```
You can’t perform that action at this time.
0 commit comments