Skip to content

Commit

Permalink
release 4.0.0rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
sammdot committed Sep 28, 2023
1 parent f3556d0 commit ef93165
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 7 deletions.
31 changes: 31 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
# v4.0.0rc2 (2023-09-28)



## Features

### Core

- Added a configurable delay between key presses, to accommodate applications that can't handle fast keyboard emulation. (#1633)

## Bugfixes

### Core

- Closes serial ports upon disconnection to ensure clean reconnections. (#1636)

### User Interface

- Update the tray icon to "disconnected" when a serial-over-USB machine is unplugged. (#1560)

## API

### Breaking Changes

- Dropped support for Python 3.7. (#1634)

### New

- Introduces the `GenericKeyboardEmulation` interface which automatically handles output delay. (#1633)


# v4.0.0rc1 (2023-09-26)


Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
copyright = "Open Steno Project"
author = copyright

release = "4.0.0-rc1"
release = "4.0.0-rc2"
version = release

# -- General configuration ---------------------------------------------------
Expand Down
1 change: 0 additions & 1 deletion news.d/api/1633.new.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/api/1634.break.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/bugfix/1560.ui.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/bugfix/1636.core.md

This file was deleted.

1 change: 0 additions & 1 deletion news.d/feature/1633.core.md

This file was deleted.

2 changes: 1 addition & 1 deletion plover/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# want to translate anyway.
_ = lambda s: s

__version__ = '4.0.0rc1'
__version__ = '4.0.0rc2'
__copyright__ = '(C) Open Steno Project'
__url__ = 'http://www.openstenoproject.org/'
__download_url__ = 'http://www.openstenoproject.org/plover'
Expand Down

0 comments on commit ef93165

Please sign in to comment.