diff --git a/CHANGELOG.md b/CHANGELOG.md index db7333bf..2ad57046 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,73 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2023-03-29 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`super_clipboard` - `v0.3.0`](#super_clipboard---v030) + - [`super_drag_and_drop` - `v0.3.0`](#super_drag_and_drop---v030) + - [`super_native_extensions` - `v0.3.0`](#super_native_extensions---v030) + - [`super_keyboard_layout` - `v0.3.0`](#super_keyboard_layout---v030) + - [`super_hot_key` - `v0.3.0`](#super_hot_key---v030) + +--- + +#### `super_clipboard` - `v0.3.0` + + - **FIX**: [android] build failing with proguard enabled (#114). + - **FEAT**: add htmlFile format (#107). + - **FEAT**: make format in DataReader.getFile optional (#90). + +#### `super_drag_and_drop` - `v0.3.0` + + - **FIX**: [android] build failing with proguard enabled (#114). + - **FIX**: [ios] respect isLocationDraggable check (#109). + - **FIX**: super_drag_and_drop should reexport Format (#83). + - **FEAT**: allow merging of snapshot prepare requests (#110). + - **FEAT**: simplify lift snapshot logic on iOS (#108). + - **FEAT**: improve snapshot API (#101). + - **FEAT**: use widget to customize snapshot setting (#100). + - **FEAT**: implement drag shadow on all platforms (#87). + - **DOCS**: fix typo. + - **DOCS**: improve super_drag_and_drop documentation (#106). + +#### `super_native_extensions` - `v0.3.0` + + - **FIX**: [android] build failing with proguard enabled (#114). + - **FIX**: custom snapshot should propagate exception from renderbox (#104). + - **FIX**: [ios] revert memory leak fix removal (#103). + - **FIX**: [web] dropping over platform views not working (#99). + - **FIX**: [ios] use shadow path from correct image (#97). + - **FIX**: [ios] force separate drag image to account for shadow difference (#92). + - **FIX**: [web] dragging ocasionally getting stuck (#89). + - **FIX**: [windows] pasting files from explorer (#88). + - **FIX**: use unpremultiplied alpha for encoding image data (#85). + - **FEAT**: allow merging of snapshot prepare requests (#110). + - **FEAT**: snapshot optimization (#102). + - **FEAT**: improve snapshot API (#101). + - **FEAT**: use widget to customize snapshot setting (#100). + - **FEAT**: [ios] use real shadow path instead of layer shadow (#95). + - **FEAT**: [ios] remove drag item provider memory leak workaround (#93). + - **FEAT**: implement drag shadow on all platforms (#87). + +#### `super_keyboard_layout` - `v0.3.0` + + - **FIX**: [android] build failing with proguard enabled (#114). + +#### `super_hot_key` - `v0.3.0` + + - n + + ## 2023-03-14 ### Changes diff --git a/super_clipboard/CHANGELOG.md b/super_clipboard/CHANGELOG.md index 62535e30..8047407c 100644 --- a/super_clipboard/CHANGELOG.md +++ b/super_clipboard/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.3.0 + + - **FIX**: [android] build failing with proguard enabled (#114). + - **FEAT**: add htmlFile format (#107). + - **FEAT**: make format in DataReader.getFile optional (#90). + ## 0.2.3+1 - Update a dependency to the latest release. diff --git a/super_clipboard/pubspec.yaml b/super_clipboard/pubspec.yaml index 49afb4f9..5dd1729c 100644 --- a/super_clipboard/pubspec.yaml +++ b/super_clipboard/pubspec.yaml @@ -1,6 +1,6 @@ name: super_clipboard description: Comprehensive clipboard access package for Flutter. Supports reading and writing of rich text, images and other formats. -version: 0.2.3+1 +version: 0.3.0 homepage: https://github.com/superlistapp/super_native_extensions environment: @@ -12,7 +12,7 @@ dependencies: sdk: flutter collection: ^1.16.0 meta: ^1.7.0 - super_native_extensions: ^0.2.4 + super_native_extensions: ^0.3.0 dev_dependencies: flutter_test: sdk: flutter diff --git a/super_drag_and_drop/CHANGELOG.md b/super_drag_and_drop/CHANGELOG.md index c9c3be1a..616a7567 100644 --- a/super_drag_and_drop/CHANGELOG.md +++ b/super_drag_and_drop/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.3.0 + + - **FIX**: [android] build failing with proguard enabled (#114). + - **FIX**: [ios] respect isLocationDraggable check (#109). + - **FIX**: super_drag_and_drop should reexport Format (#83). + - **FEAT**: allow merging of snapshot prepare requests (#110). + - **FEAT**: simplify lift snapshot logic on iOS (#108). + - **FEAT**: improve snapshot API (#101). + - **FEAT**: use widget to customize snapshot setting (#100). + - **FEAT**: implement drag shadow on all platforms (#87). + - **DOCS**: fix typo. + - **DOCS**: improve super_drag_and_drop documentation (#106). + ## 0.2.3+1 - Update a dependency to the latest release. diff --git a/super_drag_and_drop/pubspec.yaml b/super_drag_and_drop/pubspec.yaml index 08f89ca1..6020c706 100644 --- a/super_drag_and_drop/pubspec.yaml +++ b/super_drag_and_drop/pubspec.yaml @@ -1,6 +1,6 @@ name: super_drag_and_drop description: Native Drag and Drop support for Flutter. Allows dragging contents across applications. -version: 0.2.3+1 +version: 0.3.0 homepage: https://github.com/superlistapp/super_native_extensions environment: @@ -11,8 +11,8 @@ dependencies: flutter: sdk: flutter collection: ^1.16.0 - super_native_extensions: ^0.2.4 - super_clipboard: ^0.2.3+1 + super_native_extensions: ^0.3.0 + super_clipboard: ^0.3.0 dev_dependencies: flutter_test: sdk: flutter diff --git a/super_hot_key/CHANGELOG.md b/super_hot_key/CHANGELOG.md index 2484078d..191ed335 100644 --- a/super_hot_key/CHANGELOG.md +++ b/super_hot_key/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.3.0 + + - n + ## 0.1.1+1 - Update a dependency to the latest release. diff --git a/super_hot_key/pubspec.yaml b/super_hot_key/pubspec.yaml index 22d98ed0..9c66500c 100644 --- a/super_hot_key/pubspec.yaml +++ b/super_hot_key/pubspec.yaml @@ -1,6 +1,6 @@ name: super_hot_key description: Allows registering global (system-wide) hot keys. Supported on macOS and Windows. -version: 0.1.1+1 +version: 0.3.0 homepage: https://github.com/superlistapp/super_native_extensions environment: @@ -10,8 +10,8 @@ environment: dependencies: flutter: sdk: flutter - super_native_extensions: ^0.2.4 - super_keyboard_layout: ^0.2.1+1 + super_native_extensions: ^0.3.0 + super_keyboard_layout: ^0.3.0 dev_dependencies: flutter_test: sdk: flutter diff --git a/super_keyboard_layout/CHANGELOG.md b/super_keyboard_layout/CHANGELOG.md index 768d2c1e..3b1ca0b9 100644 --- a/super_keyboard_layout/CHANGELOG.md +++ b/super_keyboard_layout/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.3.0 + + - **FIX**: [android] build failing with proguard enabled (#114). + ## 0.2.1+1 - Update a dependency to the latest release. diff --git a/super_keyboard_layout/pubspec.yaml b/super_keyboard_layout/pubspec.yaml index 960085fe..2893675a 100644 --- a/super_keyboard_layout/pubspec.yaml +++ b/super_keyboard_layout/pubspec.yaml @@ -1,6 +1,6 @@ name: super_keyboard_layout description: Keyboard layout mapping for Flutter. Map between physical and logical keys according to current keyboard layout and provides notification on layout changes. -version: 0.2.1+1 +version: 0.3.0 homepage: https://github.com/superlistapp/super_native_extensions environment: @@ -10,7 +10,7 @@ environment: dependencies: flutter: sdk: flutter - super_native_extensions: ^0.2.4 + super_native_extensions: ^0.3.0 dev_dependencies: flutter_test: sdk: flutter diff --git a/super_native_extensions/CHANGELOG.md b/super_native_extensions/CHANGELOG.md index f6a29637..99795190 100644 --- a/super_native_extensions/CHANGELOG.md +++ b/super_native_extensions/CHANGELOG.md @@ -1,3 +1,22 @@ +## 0.3.0 + + - **FIX**: [android] build failing with proguard enabled (#114). + - **FIX**: custom snapshot should propagate exception from renderbox (#104). + - **FIX**: [ios] revert memory leak fix removal (#103). + - **FIX**: [web] dropping over platform views not working (#99). + - **FIX**: [ios] use shadow path from correct image (#97). + - **FIX**: [ios] force separate drag image to account for shadow difference (#92). + - **FIX**: [web] dragging ocasionally getting stuck (#89). + - **FIX**: [windows] pasting files from explorer (#88). + - **FIX**: use unpremultiplied alpha for encoding image data (#85). + - **FEAT**: allow merging of snapshot prepare requests (#110). + - **FEAT**: snapshot optimization (#102). + - **FEAT**: improve snapshot API (#101). + - **FEAT**: use widget to customize snapshot setting (#100). + - **FEAT**: [ios] use real shadow path instead of layer shadow (#95). + - **FEAT**: [ios] remove drag item provider memory leak workaround (#93). + - **FEAT**: implement drag shadow on all platforms (#87). + ## 0.2.4 - **FEAT**: [macos] receiving virtual files from outlook attachments (#81). diff --git a/super_native_extensions/pubspec.yaml b/super_native_extensions/pubspec.yaml index cb052d7d..b6857866 100644 --- a/super_native_extensions/pubspec.yaml +++ b/super_native_extensions/pubspec.yaml @@ -1,6 +1,6 @@ name: super_native_extensions description: Low level interface various native APIs such as clipboard and Drag and Drop. Not meant to be used directly. -version: 0.2.4 +version: 0.3.0 homepage: https://github.com/superlistapp/super_native_extensions environment: