Skip to content

Commit

Permalink
Merge pull request #1360 from benoit-pierre/prepare_dev10
Browse files Browse the repository at this point in the history
Bump development version to dev10
  • Loading branch information
benoit-pierre authored Jun 23, 2021
2 parents 4ad9c30 + 7c5636d commit f3dc3ae
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 14 deletions.
40 changes: 40 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
# v4.0.0.dev10 (2021-06-19)

## Features

### Core

- 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)
- Add FreeBSD/OpenBSD support. (#1306)

### Linux

- The oldest Ubuntu LTS release supported by the AppImage is now Ubuntu Bionic (18.04). (#1329)

## Bugfixes

### Core

- Fix 2 corner cases when handling dictionaries:
- If the class implementation is marked as read-only, then loading from a writable file should still result in a read-only dictionary.
- Don't allow `clear` on a read-only dictionary. (#1302)
- Don't try to start missing extensions. (#1313)

### User Interface

- Correctly restore a window if it was minimized: fix the `focus` command, and activating a tool window. (#1314)

## API

### Breaking Changes

- The `Engine` constructor now takes an additional parameter: the controller. (#1284)

### New

- Add some new helpers to `plover_build_utils.testing`:
- `dictionary_test`: torture tests for dictionary implementations.
- `make_dict`: create a temporary dictionary.
- `parametrize`: parametrize helper for tracking test data source line numbers. (#1302)


# v4.0.0.dev9 (2021-04-22)

## Features
Expand Down
1 change: 0 additions & 1 deletion news.d/api/1284.break.md

This file was deleted.

4 changes: 0 additions & 4 deletions news.d/api/1302.new.md

This file was deleted.

3 changes: 0 additions & 3 deletions news.d/bugfix/1302.core.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion news.d/feature/1329.linux.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.0.dev9'
__version__ = '4.0.0.dev10'
__copyright__ = '(C) Open Steno Project'
__url__ = 'http://www.openstenoproject.org/'
__download_url__ = 'http://www.openstenoproject.org/plover'
Expand Down

0 comments on commit f3dc3ae

Please sign in to comment.