From c650636a5fff8615f075098bfbbc4836424acf90 Mon Sep 17 00:00:00 2001 From: LiJianying Date: Thu, 28 Apr 2022 18:45:04 +0800 Subject: [PATCH] v0.1.7 --- CHANGELOG.md | 39 ++++++++++++++++++++++----------------- README-ZH.md | 4 ++-- README.md | 4 ++-- example/pubspec.lock | 2 +- pubspec.yaml | 41 +---------------------------------------- 5 files changed, 28 insertions(+), 62 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 796167d..a5b22f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 to hotkey_manager_plugin.cc +* [linux] Add #include 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. diff --git a/README-ZH.md b/README-ZH.md index 7e42300..300415f 100644 --- a/README-ZH.md +++ b/README-ZH.md @@ -8,7 +8,7 @@ [discord-image]: https://img.shields.io/discord/884679008049037342.svg [discord-url]: https://discord.gg/zPa6EZ2jqb -这个插件允许 Flutter **桌面** 应用定义系统/应用范围内的热键(即快捷键)。 +这个插件允许 Flutter 桌面应用定义系统/应用范围内的热键(即快捷键)。 --- @@ -47,7 +47,7 @@ ```yaml dependencies: - hotkey_manager: ^0.1.6 + hotkey_manager: ^0.1.7 ``` 或 diff --git a/README.md b/README.md index c3437e5..8a87289 100644 --- a/README.md +++ b/README.md @@ -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). --- @@ -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 diff --git a/example/pubspec.lock b/example/pubspec.lock index 0ac621f..32dfc9c 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -92,7 +92,7 @@ packages: path: ".." relative: true source: path - version: "0.1.6" + version: "0.1.7" js: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 57e12e6..a3e2cb3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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: @@ -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: @@ -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