Skip to content

Commit

Permalink
v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lijy91 committed Apr 28, 2022
1 parent 974e227 commit c650636
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 62 deletions.
39 changes: 22 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,55 +1,60 @@
## 0.1.7

* Fixed inapp hotkeys key down event repeat triggering #9
* Fixed inapp hotkeys not matching correctly #11

## 0.1.6

- Fixed `KeyModifierParser.fromModifierKey` Return type.
* Fixed `KeyModifierParser.fromModifierKey` Return type.

## 0.1.5

- [windows] Fix escape key mapping error
- [linux] Supplemental key map
* [windows] Fix escape key mapping error
* [linux] Supplemental key map

## 0.1.4

- export `hotKeyManager`.
* export `hotKeyManager`.

## 0.1.3

- `HotKeyVirtualView` Support dark Theme Mode.
* `HotKeyVirtualView` Support dark Theme Mode.

## 0.1.2

- Remove web platform implementation
* Remove web platform implementation

## 0.1.1

- Add `unregisterAll` Method.
* Add `unregisterAll` Method.

## 0.1.0

- Supported Hot Reload.
- #2 Fixed `No element` error.
* Supported Hot Reload.
* #2 Fixed `No element` error.

## 0.0.6

- [linux] Add #include <string> to hotkey_manager_plugin.cc
* [linux] Add #include <string> to hotkey_manager_plugin.cc

## 0.0.5

- Supported `linux` platform.
* Supported `linux` platform.

## 0.0.4

- Supported `web` platform, Embed via iframe.
- Adapt flutter master channel.
* Supported `web` platform, Embed via iframe.
* Adapt flutter master channel.

## 0.0.3

- Supported `windows` platform.
* Supported `windows` platform.

## 0.0.2

- Supported inapp-wide hotkey.
- Add `HotKeyVirtualView`, `HotKeyRecorder` Widgets.
* Supported inapp-wide hotkey.
* Add `HotKeyVirtualView`, `HotKeyRecorder` Widgets.

## 0.0.1

- first release.
* first release.
4 changes: 2 additions & 2 deletions README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[discord-image]: https://img.shields.io/discord/884679008049037342.svg
[discord-url]: https://discord.gg/zPa6EZ2jqb

这个插件允许 Flutter **桌面** 应用定义系统/应用范围内的热键(即快捷键)。
这个插件允许 Flutter 桌面应用定义系统/应用范围内的热键(即快捷键)。

---

Expand Down Expand Up @@ -47,7 +47,7 @@

```yaml
dependencies:
hotkey_manager: ^0.1.6
hotkey_manager: ^0.1.7
```
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[discord-image]: https://img.shields.io/discord/884679008049037342.svg
[discord-url]: https://discord.gg/zPa6EZ2jqb

This plugin allows Flutter **desktop** apps to defines system/inapp wide hotkey (i.e. shortcut).
This plugin allows Flutter desktop apps to defines system/inapp wide hotkey (i.e. shortcut).

---

Expand Down Expand Up @@ -47,7 +47,7 @@ Add this to your package's pubspec.yaml file:

```yaml
dependencies:
hotkey_manager: ^0.1.6
hotkey_manager: ^0.1.7
```
Or
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.6"
version: "0.1.7"
js:
dependency: transitive
description:
Expand Down
41 changes: 1 addition & 40 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: hotkey_manager
description: This plugin allows Flutter desktop apps to defines system/inapp wide hotkey (i.e. shortcut).
version: 0.1.6
version: 0.1.7
homepage: https://github.com/leanflutter/hotkey_manager

environment:
Expand All @@ -20,15 +20,7 @@ dev_dependencies:
flutter_test:
sdk: flutter

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec

# The following section is specific to Flutter.
flutter:
# This section identifies this Flutter project as a plugin project.
# The 'pluginClass' and Android 'package' identifiers should not ordinarily
# be modified. They are used by the tooling to maintain consistency when
# adding or updating assets for this project.
plugin:
platforms:
linux:
Expand All @@ -37,34 +29,3 @@ flutter:
pluginClass: HotkeyManagerPlugin
windows:
pluginClass: HotkeyManagerPlugin

# To add assets to your plugin package, add an assets section, like this:
# assets:
# - images/a_dot_burr.jpeg
# - images/a_dot_ham.jpeg
#
# For details regarding assets in packages, see
# https://flutter.dev/assets-and-images/#from-packages
#
# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.dev/assets-and-images/#resolution-aware.

# To add custom fonts to your plugin package, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
# fonts:
# - family: Schyler
# fonts:
# - asset: fonts/Schyler-Regular.ttf
# - asset: fonts/Schyler-Italic.ttf
# style: italic
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts in packages, see
# https://flutter.dev/custom-fonts/#from-packages

0 comments on commit c650636

Please sign in to comment.