diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ef7895..8b6ff6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.1.1 + +* Now the default allowed directions is not `portrait`, but all of them, as it's more intuitive +* Little improvement on in-code documentation +* **Possibly Breaking Change:** Change DeviceDirection enum to represent more intuitively the directions. Now, `landscape` is `landscapeLeft`, and `landscapeReversed` is `landscapeRight`. + ## 0.1.0+3 * Updated README.md @@ -13,31 +19,31 @@ ## 0.1.0 -* API has reached a reasonable stability. -* README.md has been updated with enough info. -* Little update on the documentation. +* API has reached a reasonable stability +* README.md has been updated with enough info +* Little update on the documentation ## 0.0.15+4 -* Fix [BehaviorSubject] instantiation. +* Fix [BehaviorSubject] instantiation ## 0.0.15 -* Little improvement on NaviveDeviceDirection handling. +* Little improvement on NaviveDeviceDirection handling ## 0.0.14+4 -* Fix for [DeviceDirection.difference]. -* Tests for [DeviceDirection.difference]. +* Fix for [DeviceDirection.difference] +* Tests for [DeviceDirection.difference] ## 0.0.14+1 -* Adjustment on [DeviceDirection.difference] method. +* Adjustment on [DeviceDirection.difference] method ## 0.0.14 -* Added a method to returs the difference of directions in degrees. -* See [DeviceDirection.difference]. +* Added a method to returs the difference of directions in degrees +* See [DeviceDirection.difference] ## 0.0.13+4 @@ -79,14 +85,14 @@ ## 0.0.9 -* This breaks the API. -* Instead of returning an [Option], the [.push] method now returns a [Either], in concordance with [takePicture] method. This change provides an efficient way to handle camera exceptions. +* This breaks the API +* Instead of returning an [Option], the [.push] method now returns a [Either], in concordance with [takePicture] method. This change provides an efficient way to handle camera exceptions * Improvements on documentation ## 0.0.8 -* Make functions [toRadian] and [toDegrees] for [DeviceDirection] into extension methods ([.radian] and [.degrees] respectively). -* For this, raised Dart SDK requirement to 2.7. +* Make functions [toRadian] and [toDegrees] for [DeviceDirection] into extension methods ([.radian] and [.degrees] respectively) +* For this, raised Dart SDK requirement to 2.7 * Also, reraised required path_provider version to 1.5.1 ## 0.0.7 @@ -111,7 +117,7 @@ ## 0.0.2 -* Instead of [pushWithConfirmation] (not yet implemented), the confirmation screen has been implemented on the [defaultCameraControlLayer] method. +* Instead of [pushWithConfirmation] (not yet implemented), the confirmation screen has been implemented on the [defaultCameraControlLayer] method * Change on package structure * Little change on API: instead of returning a String, now the MagicEye return an [Option]. Futurely, it will return a [Either] @@ -130,7 +136,7 @@ ### Other info -The readme will be made later. Thanks. +The readme will be made later. Thanks The example folder is working, but its just a personal test of the package. A proper example with MREs and diverse -options will be available in the future. \ No newline at end of file +options will be available in the future \ No newline at end of file diff --git a/example/pubspec.lock b/example/pubspec.lock index 1697117..f363d59 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -94,7 +94,7 @@ packages: path: ".." relative: true source: path - version: "0.1.0+3" + version: "0.1.1" matcher: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index 7a95b8b..836e6ff 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: magiceye description: An abstraction on top of flutter camera, that allows you to have a default camera screen or build your own with the layer builders. -version: 0.1.0+3 +version: 0.1.1 homepage: https://github.com/mateusfccp/magiceye repository: https://github.com/mateusfccp/magiceye