Masterarbeit Richard Stern. Flutter App, sich mit einem Bluetooth-Gerät verbindet und Berührungen auf einem Sensor visualisiert.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. ## 0.5.0
  2. * **Breaking change**. Migrate from the deprecated original Android Support
  3. Library to AndroidX. This shouldn't result in any functional changes, but it
  4. requires any Android apps using this plugin to [also
  5. migrate](https://developer.android.com/jetpack/androidx/migrate) if they're
  6. using the original support library.
  7. ## 0.4.2+1
  8. * Upgrade Android Gradle plugin to 3.3.0
  9. * Refresh iOS build files
  10. ## 0.4.2
  11. * Set the verbosity of log messages with `setLogLevel`
  12. * Updated iOS and Android project files
  13. * `autoConnect` now configurable for Android
  14. * Various bug fixes
  15. ## 0.4.1
  16. * Fixed bug where setNotifyValue wasn't properly awaitable.
  17. * Various UI bug fixes to example app.
  18. * Removed unnecessary intl dependencies in example app.
  19. ## 0.4.0
  20. * **Breaking change**. Manufacturer Data is now a `Map` of manufacturer ID's.
  21. * Service UUID's, service data, tx power level packets fixed in advertising data.
  22. * Example app updated to show advertising data.
  23. * Various other bug fixes.
  24. ## 0.3.4
  25. * Updated to use the latest protobuf (^0.9.0+1)
  26. * Updated other dependencies
  27. ## 0.3.3
  28. * `scan` `withServices` to filter by service UUID's (iOS)
  29. * Error handled when trying to scan with adapter off (Android)
  30. ## 0.3.2
  31. * Runtime permissions for Android
  32. * `scan` `withServices` to filter by service UUID's (Android)
  33. * Scan mode can be specified (Android)
  34. * Now targets the latest android SDK
  35. * Dart 2 compatibility
  36. ## 0.3.1
  37. * Now allows simultaneous notifications of characteristics
  38. * Fixed bug on iOS that was returning `discoverServices` too early
  39. ## 0.3.0
  40. * iOS support added
  41. * Bug fixed in example causing discoverServices to be called multiple times
  42. * Various other bug fixes
  43. ## 0.2.4
  44. * **Breaking change**. Upgraded to Gradle 4.1 and Android Studio Gradle plugin
  45. 3.0.1. Older Flutter projects need to upgrade their Gradle setup as well in
  46. order to use this version of the plugin. Instructions can be found
  47. [here](https://github.com/flutter/flutter/wiki/Updating-Flutter-projects-to-Gradle-4.1-and-Android-Studio-Gradle-plugin-3.0.1).
  48. ## 0.2.3
  49. * Bug fixes
  50. ## 0.2.2
  51. * **Breaking changes**:
  52. * `startScan` renamed to `scan`
  53. * `ScanResult` now returns a `BluetoothDevice`
  54. * `connect` now takes a `BluetoothDevice` and returns Stream<BluetoothDeviceState>
  55. * Added parameter `timeout` to `connect`
  56. * Automatic disconnect on deviceConnection.cancel()
  57. ## 0.2.1
  58. * **Breaking change**. Removed `stopScan` from API, use `scanSubscription.cancel()` instead
  59. * Automatically stops scan when `startScan` subscription is canceled (thanks to @brianegan)
  60. * Added `timeout` parameter to `startScan`
  61. * Updated example app to show new scan functionality
  62. ## 0.2.0
  63. * Added state and onStateChanged for BluetoothDevice
  64. * Updated example to show new functionality
  65. ## 0.1.1
  66. * Fixed image for pub.dartlang.org
  67. ## 0.1.0
  68. * Characteristic notifications/indications.
  69. * Merged in Guid library, removed from pubspec.yaml.
  70. ## 0.0.1 - September 1st, 2017
  71. * Initial Release.