Skip to content

Commit c650636

Browse files
committed
v0.1.7
1 parent 974e227 commit c650636

File tree

5 files changed

+28
-62
lines changed

5 files changed

+28
-62
lines changed

CHANGELOG.md

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,60 @@
1+
## 0.1.7
2+
3+
* Fixed inapp hotkeys key down event repeat triggering #9
4+
* Fixed inapp hotkeys not matching correctly #11
5+
16
## 0.1.6
27

3-
- Fixed `KeyModifierParser.fromModifierKey` Return type.
8+
* Fixed `KeyModifierParser.fromModifierKey` Return type.
49

510
## 0.1.5
611

7-
- [windows] Fix escape key mapping error
8-
- [linux] Supplemental key map
12+
* [windows] Fix escape key mapping error
13+
* [linux] Supplemental key map
914

1015
## 0.1.4
1116

12-
- export `hotKeyManager`.
17+
* export `hotKeyManager`.
1318

1419
## 0.1.3
1520

16-
- `HotKeyVirtualView` Support dark Theme Mode.
21+
* `HotKeyVirtualView` Support dark Theme Mode.
1722

1823
## 0.1.2
1924

20-
- Remove web platform implementation
25+
* Remove web platform implementation
2126

2227
## 0.1.1
2328

24-
- Add `unregisterAll` Method.
29+
* Add `unregisterAll` Method.
2530

2631
## 0.1.0
2732

28-
- Supported Hot Reload.
29-
- #2 Fixed `No element` error.
33+
* Supported Hot Reload.
34+
* #2 Fixed `No element` error.
3035

3136
## 0.0.6
3237

33-
- [linux] Add #include <string> to hotkey_manager_plugin.cc
38+
* [linux] Add #include <string> to hotkey_manager_plugin.cc
3439

3540
## 0.0.5
3641

37-
- Supported `linux` platform.
42+
* Supported `linux` platform.
3843

3944
## 0.0.4
4045

41-
- Supported `web` platform, Embed via iframe.
42-
- Adapt flutter master channel.
46+
* Supported `web` platform, Embed via iframe.
47+
* Adapt flutter master channel.
4348

4449
## 0.0.3
4550

46-
- Supported `windows` platform.
51+
* Supported `windows` platform.
4752

4853
## 0.0.2
4954

50-
- Supported inapp-wide hotkey.
51-
- Add `HotKeyVirtualView`, `HotKeyRecorder` Widgets.
55+
* Supported inapp-wide hotkey.
56+
* Add `HotKeyVirtualView`, `HotKeyRecorder` Widgets.
5257

5358
## 0.0.1
5459

55-
- first release.
60+
* first release.

README-ZH.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[discord-image]: https://img.shields.io/discord/884679008049037342.svg
99
[discord-url]: https://discord.gg/zPa6EZ2jqb
1010

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

1313
---
1414

@@ -47,7 +47,7 @@
4747

4848
```yaml
4949
dependencies:
50-
hotkey_manager: ^0.1.6
50+
hotkey_manager: ^0.1.7
5151
```
5252
5353

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[discord-image]: https://img.shields.io/discord/884679008049037342.svg
99
[discord-url]: https://discord.gg/zPa6EZ2jqb
1010

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

1313
---
1414

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

4848
```yaml
4949
dependencies:
50-
hotkey_manager: ^0.1.6
50+
hotkey_manager: ^0.1.7
5151
```
5252
5353
Or

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ packages:
9292
path: ".."
9393
relative: true
9494
source: path
95-
version: "0.1.6"
95+
version: "0.1.7"
9696
js:
9797
dependency: transitive
9898
description:

pubspec.yaml

Lines changed: 1 addition & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: hotkey_manager
22
description: This plugin allows Flutter desktop apps to defines system/inapp wide hotkey (i.e. shortcut).
3-
version: 0.1.6
3+
version: 0.1.7
44
homepage: https://github.com/leanflutter/hotkey_manager
55

66
environment:
@@ -20,15 +20,7 @@ dev_dependencies:
2020
flutter_test:
2121
sdk: flutter
2222

23-
# For information on the generic Dart part of this file, see the
24-
# following page: https://dart.dev/tools/pub/pubspec
25-
26-
# The following section is specific to Flutter.
2723
flutter:
28-
# This section identifies this Flutter project as a plugin project.
29-
# The 'pluginClass' and Android 'package' identifiers should not ordinarily
30-
# be modified. They are used by the tooling to maintain consistency when
31-
# adding or updating assets for this project.
3224
plugin:
3325
platforms:
3426
linux:
@@ -37,34 +29,3 @@ flutter:
3729
pluginClass: HotkeyManagerPlugin
3830
windows:
3931
pluginClass: HotkeyManagerPlugin
40-
41-
# To add assets to your plugin package, add an assets section, like this:
42-
# assets:
43-
# - images/a_dot_burr.jpeg
44-
# - images/a_dot_ham.jpeg
45-
#
46-
# For details regarding assets in packages, see
47-
# https://flutter.dev/assets-and-images/#from-packages
48-
#
49-
# An image asset can refer to one or more resolution-specific "variants", see
50-
# https://flutter.dev/assets-and-images/#resolution-aware.
51-
52-
# To add custom fonts to your plugin package, add a fonts section here,
53-
# in this "flutter" section. Each entry in this list should have a
54-
# "family" key with the font family name, and a "fonts" key with a
55-
# list giving the asset and other descriptors for the font. For
56-
# example:
57-
# fonts:
58-
# - family: Schyler
59-
# fonts:
60-
# - asset: fonts/Schyler-Regular.ttf
61-
# - asset: fonts/Schyler-Italic.ttf
62-
# style: italic
63-
# - family: Trajan Pro
64-
# fonts:
65-
# - asset: fonts/TrajanPro.ttf
66-
# - asset: fonts/TrajanPro_Bold.ttf
67-
# weight: 700
68-
#
69-
# For details regarding fonts in packages, see
70-
# https://flutter.dev/custom-fonts/#from-packages

0 commit comments

Comments
 (0)