Skip to content

Commit f3dc3ae

Browse files
Merge pull request #1360 from benoit-pierre/prepare_dev10
Bump development version to dev10
2 parents 4ad9c30 + 7c5636d commit f3dc3ae

File tree

10 files changed

+41
-14
lines changed

10 files changed

+41
-14
lines changed

NEWS.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
# v4.0.0.dev10 (2021-06-19)
2+
3+
## Features
4+
5+
### Core
6+
7+
- Change behavior when launching Plover and an existing instance is already running: send a `focus` command to the existing instance (to show, raise, and focus the main window). Additionally, a new `plover_send_command` executable/script can be used to send other commands. (#1284)
8+
- Add FreeBSD/OpenBSD support. (#1306)
9+
10+
### Linux
11+
12+
- The oldest Ubuntu LTS release supported by the AppImage is now Ubuntu Bionic (18.04). (#1329)
13+
14+
## Bugfixes
15+
16+
### Core
17+
18+
- Fix 2 corner cases when handling dictionaries:
19+
- If the class implementation is marked as read-only, then loading from a writable file should still result in a read-only dictionary.
20+
- Don't allow `clear` on a read-only dictionary. (#1302)
21+
- Don't try to start missing extensions. (#1313)
22+
23+
### User Interface
24+
25+
- Correctly restore a window if it was minimized: fix the `focus` command, and activating a tool window. (#1314)
26+
27+
## API
28+
29+
### Breaking Changes
30+
31+
- The `Engine` constructor now takes an additional parameter: the controller. (#1284)
32+
33+
### New
34+
35+
- Add some new helpers to `plover_build_utils.testing`:
36+
- `dictionary_test`: torture tests for dictionary implementations.
37+
- `make_dict`: create a temporary dictionary.
38+
- `parametrize`: parametrize helper for tracking test data source line numbers. (#1302)
39+
40+
141
# v4.0.0.dev9 (2021-04-22)
242

343
## Features

news.d/api/1284.break.md

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

news.d/api/1302.new.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

news.d/bugfix/1302.core.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

news.d/bugfix/1313.core.md

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

news.d/bugfix/1314.ui.md

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

news.d/feature/1284.core.md

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

news.d/feature/1306.core.md

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

news.d/feature/1329.linux.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.0.dev9'
15+
__version__ = '4.0.0.dev10'
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)