File tree Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.3.1 (2015-11-26)
4+
5+ * Fix: Support calling ` Readline::setInput() ` during ` line ` event
6+ (#28 )
7+
8+ ``` php
9+ $stdio->on('line', function ($line) use ($stdio) {
10+ $stdio->getReadline()->setInput($line . '!');
11+ });
12+ ```
13+
314## 0.3.0 (2015-05-18)
415
516* Feature: Support multi-byte UTF-8 characters and account for cell width
Original file line number Diff line number Diff line change @@ -263,17 +263,15 @@ $stdin = $stdio->getInput();
263263
264264## Install
265265
266- The recommended way to install this library is [ through composer ] ( https://getcomposer.org ) .
267- [ New to composer ?] ( https://getcomposer.org/doc/00-intro.md )
266+ The recommended way to install this library is [ through Composer ] ( https://getcomposer.org ) .
267+ [ New to Composer ?] ( https://getcomposer.org/doc/00-intro.md )
268268
269- ``` JSON
270- {
271- "require" : {
272- "clue/stdio-react" : " ~0.3.0"
273- }
274- }
269+ ``` bash
270+ $ composer require clue/stdio-react:~ 0.3.0
275271```
276272
273+ More details and upgrade guides can be found in the [ CHANGELOG] ( CHANGELOG.md ) .
274+
277275## License
278276
279277MIT
You can’t perform that action at this time.
0 commit comments