File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ 0.13: 2016-10-16
5
+ ----------------
6
+
7
+ New features:
8
+ - Added status-interval option.
9
+ - Support for ANSI colors only.
10
+ * Added --ansicolor option.
11
+ * Check PROMPT_TOOLKIT_ANSI_COLORS_ONLY environment variable.
12
+ - Added pane-status option for hiding the pane status bar.
13
+ (Disabled by default.)
14
+ - Expose shift+arrow keys for key bindings.
15
+
16
+ Performance improvements:
17
+ - Only do datetime formatting if the string actually contains a '%'
18
+ character.
19
+
20
+ Fixes:
21
+ - Catch OSError in os.tcgetpgrp.
22
+ - Clean up sockets, also in case of a crash.
23
+ - Fix in process.py: don't call remove_reader when master is None.
24
+
25
+
4
26
0.12: 2016-08-03
5
27
----------------
6
28
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.12 ' ,
17
+ version = '0.13 ' ,
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>=1.0.4 ,<1.1.0' ,
24
+ 'prompt_toolkit>=1.0.8 ,<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