File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
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
+
4
28
0.9: 2016-03-14
5
29
---------------
6
30
Original file line number Diff line number Diff line change 14
14
setup (
15
15
name = 'pymux' ,
16
16
author = 'Jonathan Slenders' ,
17
- version = '0.9 ' ,
17
+ version = '0.10 ' ,
18
18
license = 'LICENSE' ,
19
19
url = 'https://github.com/jonathanslenders/' ,
20
20
description = 'Pure Python terminal multiplexer.' ,
21
21
long_description = long_description ,
22
22
packages = find_packages ('.' ),
23
23
install_requires = [
24
- 'prompt_toolkit==0.60 ' ,
24
+ 'prompt_toolkit>=1.0.0,<1.1.0 ' ,
25
25
'pyte>=0.5.1' ,
26
26
'six>=1.9.0' ,
27
27
'docopt>=0.6.2' ,
You can’t perform that action at this time.
0 commit comments