Skip to content

Commit 144787d

Browse files
committed
chore: bump packages to v0.2.0
1 parent c758afc commit 144787d

4 files changed

Lines changed: 25 additions & 3 deletions

File tree

packages/cnativeapi/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.2.0
2+
3+
* Regenerate the complete C bindings from the new code generator
4+
* Unify the object identity/lifecycle model with a generational handle table
5+
* Fix tray icon bounds on multi-display setups (macOS)
6+
* Fix macOS global shortcuts never firing
7+
* Rewrite EventEmitter locking and dispatch; add a main-thread dispatcher
8+
* Add `UrlOpener` CanOpen support
9+
* Require C++17 and propagate the requirement to consumers
10+
* Remove the obsolete Python bindgen tooling
11+
112
## 0.1.4
213

314
* Fix macOS menu item disabled state not being respected

packages/cnativeapi/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: cnativeapi
22
description: "Native API C bindings for Flutter"
3-
version: 0.1.4
3+
version: 0.2.0
44
homepage: https://github.com/libnativeapi/nativeapi-flutter
55
resolution: workspace
66

packages/nativeapi/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.2.0
2+
3+
* **Breaking:** regenerate the Dart API from the new code generator; the object identity/lifecycle model is unified and many signatures changed
4+
* **Breaking:** rework the event system — `EventEmitter` and the separate `WindowEvent`/`MenuEvent`/`TrayIconEvent` classes are replaced by typed event listeners on each object
5+
* Add `Application` API
6+
* Add `KeyboardMonitor` API
7+
* Add `Shortcut` and `ShortcutManager` APIs for global shortcuts
8+
* Add `ImageAsset` widget helper
9+
* Fix tray icon bounds on multi-display setups (macOS)
10+
* Fix macOS global shortcuts never firing
11+
112
## 0.1.4
213

314
* Fix macOS menu item disabled state not being respected

packages/nativeapi/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: nativeapi
22
description: "Flutter bindings for nativeapi - providing seamless, unified access to native system APIs."
3-
version: 0.1.4
3+
version: 0.2.0
44
homepage: https://github.com/libnativeapi/nativeapi-flutter
55
resolution: workspace
66

@@ -12,7 +12,7 @@ dependencies:
1212
ffi: ">=1.2.1 <3.0.0"
1313
flutter:
1414
sdk: flutter
15-
cnativeapi: ^0.1.4
15+
cnativeapi: ^0.2.0
1616
path: ^1.9.1
1717
meta: ^1.16.0
1818

0 commit comments

Comments
 (0)