File tree 3 files changed +24
-3
lines changed 3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ 3.0.15: 2021-02-10
5
+ ------------------
6
+
7
+ Fixes:
8
+ - Set stdout blocking when writing in vt100 output. Fixes an issue when uvloop
9
+ is used and big amounts of text are written.
10
+ - Guarantee height of at least 1 for both labels and text areas.
11
+ - In the `Window` rendering, take `dont_extend_width`/`dont_extend_height` into
12
+ account. This fixes issues where one window is enlarged unexpectedly because
13
+ it's bundled with another window in a `HSplit`/`VSplit`, but with different
14
+ width/height.
15
+ - Don't handle `SIGWINCH` in progress bar anymore. (The UI runs in another
16
+ thread, and we have terminal size polling now).
17
+ - Fix several thread safety issues and a race condition in the progress bar.
18
+ - Fix thread safety issues in `Application.invalidate()`. (Fixes a
19
+ `RuntimeError` in some situations when using progress bars.)
20
+ - Fix handling of mouse events on Windows if we have a Windows 10 console with
21
+ ANSI support.
22
+ - Disable `QUICK_EDIT_MODE` on Windows 10 when mouse support is requested.
23
+
24
+
4
25
3.0.14: 2021-01-24
5
26
------------------
6
27
Original file line number Diff line number Diff line change 51
51
# built documents.
52
52
#
53
53
# The short X.Y version.
54
- version = "3.0.14 "
54
+ version = "3.0.15 "
55
55
# The full version, including alpha/beta/rc tags.
56
- release = "3.0.14 "
56
+ release = "3.0.15 "
57
57
58
58
# The language for content autogenerated by Sphinx. Refer to documentation
59
59
# for a list of supported languages.
Original file line number Diff line number Diff line change 18
18
from .shortcuts import PromptSession , print_formatted_text , prompt
19
19
20
20
# Don't forget to update in `docs/conf.py`!
21
- __version__ = "3.0.14 "
21
+ __version__ = "3.0.15 "
22
22
23
23
# Version tuple.
24
24
VERSION = tuple (__version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments