Skip to content

Commit ef93165

Browse files
committed
release 4.0.0rc2
1 parent f3556d0 commit ef93165

File tree

8 files changed

+33
-7
lines changed

8 files changed

+33
-7
lines changed

NEWS.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
# v4.0.0rc2 (2023-09-28)
2+
3+
4+
5+
## Features
6+
7+
### Core
8+
9+
- Added a configurable delay between key presses, to accommodate applications that can't handle fast keyboard emulation. (#1633)
10+
11+
## Bugfixes
12+
13+
### Core
14+
15+
- Closes serial ports upon disconnection to ensure clean reconnections. (#1636)
16+
17+
### User Interface
18+
19+
- Update the tray icon to "disconnected" when a serial-over-USB machine is unplugged. (#1560)
20+
21+
## API
22+
23+
### Breaking Changes
24+
25+
- Dropped support for Python 3.7. (#1634)
26+
27+
### New
28+
29+
- Introduces the `GenericKeyboardEmulation` interface which automatically handles output delay. (#1633)
30+
31+
132
# v4.0.0rc1 (2023-09-26)
233

334

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
copyright = "Open Steno Project"
77
author = copyright
88

9-
release = "4.0.0-rc1"
9+
release = "4.0.0-rc2"
1010
version = release
1111

1212
# -- General configuration ---------------------------------------------------

news.d/api/1633.new.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news.d/api/1634.break.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news.d/bugfix/1560.ui.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news.d/bugfix/1636.core.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

news.d/feature/1633.core.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

plover/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# want to translate anyway.
1313
_ = lambda s: s
1414

15-
__version__ = '4.0.0rc1'
15+
__version__ = '4.0.0rc2'
1616
__copyright__ = '(C) Open Steno Project'
1717
__url__ = 'http://www.openstenoproject.org/'
1818
__download_url__ = 'http://www.openstenoproject.org/plover'

0 commit comments

Comments
 (0)