Showing
1 changed file
with
8 additions
and
4 deletions
| @@ -22,11 +22,15 @@ Features: | @@ -22,11 +22,15 @@ Features: | ||
| 22 | * Added `autoStart` parameter to MobileScannerController(). If set to false, controller won't start automatically. | 22 | * Added `autoStart` parameter to MobileScannerController(). If set to false, controller won't start automatically. |
| 23 | * Added `hasTorch` function on MobileScannerController(). After starting the controller, you can check if the device has a torch. | 23 | * Added `hasTorch` function on MobileScannerController(). After starting the controller, you can check if the device has a torch. |
| 24 | 24 | ||
| 25 | -Fixed: | ||
| 26 | -* Fixed a memory leak where the `MobileScanner` widget would never close its subscription to the barcode events. | ||
| 27 | -* Fixed a dependency on all properties of `MediaQueryData` to build the preview widget. Now the preview only depends on its layout constraints. | 25 | +Fixes: |
| 26 | +* Fixes the missing gradle setup for the Android project, which prevented gradle sync from working. | ||
| 27 | +* Fixes `MobileScannerController.stop()` throwing when already stopped. | ||
| 28 | +* Fixes `MobileScannerController.toggleTorch()` throwing if the device has no torch. | ||
| 29 | + Now it does nothing if the torch is not available. | ||
| 30 | +* Fixes a memory leak where the `MobileScanner` would keep listening to the barcode events. | ||
| 31 | +* Fixes the `MobileScanner` preview depending on all attributes of `MediaQueryData`. | ||
| 32 | + Now it only depends on its layout constraints. | ||
| 28 | * Fixed a potential crash when the scanner is restarted due to the app being resumed. | 33 | * Fixed a potential crash when the scanner is restarted due to the app being resumed. |
| 29 | -* Various documentation improvements. | ||
| 30 | 34 | ||
| 31 | ## 3.0.0-beta.2 | 35 | ## 3.0.0-beta.2 |
| 32 | Breaking changes: | 36 | Breaking changes: |
-
Please register or login to post a comment