Skip to content

Commit

Permalink
v1.16 for release
Browse files Browse the repository at this point in the history
Plus a tiny demo i found in my bin folder ??
  • Loading branch information
Jeff Quast committed Oct 18, 2019
1 parent 0dade64 commit c71ce07
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
16 changes: 16 additions & 0 deletions bin/strip.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env python3
"""Example scrip that strips input of terminal sequences."""
import sys

import blessed


def main():
"""Program entry point."""
term = blessed.Terminal()
for line in sys.stdin:
print(term.strip_seqs(line))


if __name__ == '__main__':
main()
3 changes: 3 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Version History
===============
1.16
* Windows support?! :ghissue:`110`

1.15
* disable timing integration tests for keyboard routines.

Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "1.15.1"}
{"version": "1.16.0"}

0 comments on commit c71ce07

Please sign in to comment.