Skip to content

Commit 4c56c84

Browse files
Release 0.10
1 parent 6685d81 commit 4c56c84

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11
CHANGELOG
22
=========
33

4+
0.10: 2016-05-05
5+
----------------
6+
7+
Upgrade to prompt_toolkit 1.0.0
8+
9+
New features:
10+
- Added 'C-b PPage' key binding (like tmux).
11+
- Many performance improvements in the vt100 parser.
12+
13+
Improvements/fixes:
14+
- Don't crash when decoding utf-8 input fails. (Sometimes it happens when using
15+
the mouse in lxterminal.)
16+
- Cleanup CLI object when the client was detached. (The server would become
17+
very slow if the CLI was not removed for a couple of times.)
18+
- Replace errors when decoding utf-8 input.
19+
- Fixes regarding multiwidth characters.
20+
- Bugfix: Don't use 'del' on a defaultdict, but use pop(..., None) instead, in
21+
order to avoid key errors.
22+
- Handle decomposed unicode characters correctly.
23+
- Bugfix regarding the handling of 'clear'.
24+
- Fixes a bug where the cursor stays at the top.
25+
- Fix: The socket in the pymux client should be blocking.
26+
27+
428
0.9: 2016-03-14
529
---------------
630

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414
setup(
1515
name='pymux',
1616
author='Jonathan Slenders',
17-
version='0.9',
17+
version='0.10',
1818
license='LICENSE',
1919
url='https://github.com/jonathanslenders/',
2020
description='Pure Python terminal multiplexer.',
2121
long_description=long_description,
2222
packages=find_packages('.'),
2323
install_requires = [
24-
'prompt_toolkit==0.60',
24+
'prompt_toolkit>=1.0.0,<1.1.0',
2525
'pyte>=0.5.1',
2626
'six>=1.9.0',
2727
'docopt>=0.6.2',

0 commit comments

Comments
 (0)