flutter_web_bluetooth 0.2.3 flutter_web_bluetooth: ^0.2.3 copied to clipboard
A library to use the web bluetooth api in your web project. Will play nice if used in IO projects.
0.2.3 #
- Added
optionalManufacturerData
toRequestOptions
. This is needed to get the manufacture data when watching advertisements. - Added
BluetoothDefaultManufacturerIdentifiers
enum with all the registered manufacturer identifiers - Fixed the conversion from a JS map to a dart map for manufacturer data and service data. If you are listening to advertisements then these values will now be returned correctly.
- Update dependencies.
0.2.2 #
- Added
exclusionFilters
toRequestOptionsBuilder
. - Added new MissingUserGestureError that you may need to handle.
- Updated dependencies to be more broad. (The minimum versions are still supported.)
0.2.1 #
- Updated dependencies.
0.2.0 #
- Breaking Removed SNAKE_CASE uuids.
- The default uuids are now an enum since dart supports enums with values.
- If you were using
defaultUuid.ordinal
then you should now usedefaultUuid.index
. - Some names may slightly differ.
- Breaking Upgraded minimum dart sdk to
2.17
- Added
forget
to aBluetoothDevice
, to forget a device.
0.1.0 #
- Breaking in
Bluetooth.requestDevice()
theRequestOptions
are no longer nullable. - Breaking
BluetoothDevice.gatt
is no longer marked as deprecated, it is still marked asvisibleForTesting
. - Added bluetooth advertisements event to a bluetooth device. (Note this is still behind a flag in most browsers.)
- Support the newest version of logging.
- Added
requestLEScan
toBluetooth
andFlutterWebBluetooth
. You can now scan for devices advertisements without needing to pair with each device. However, a normal pair does need to happen before characteristics can be used. - Continuing with the IOS Bluefy browser fix for characteristic properties.
- Added
has
methods for all the fields in characteristic properties. - Return
false
as default value when a property doesn't exist. - Added
hasProperties
method to check if there are any properties at all. Use this to test if the properties are even reliable. - You can remove any try-catch logic around reading properties if you added those for the mitigation.
- Added
- The next version of the library will probably upgrade the minimum SDK from
2.12
to2.17
to keep up with other packages. If there are any good reasons to not do this then please create an issue on Github.
0.0.9 #
- Added a hotfix for the IOS Bluefy browser. As a side effect none of the characteristic properties are required anymore, but there are no methods yet to check if the properties exist. So add a try-catch around these methods for now!
- Updated dependencies to work with Flutter 3.3.0
0.0.8 #
- Added manufacturer scan filters and service scan filters
0.0.7 #
- Added
getCharacteristics
to the bluetooth service to get all the characteristics. - Set target platform to web for pub.dev target platform list (it will still compile when used in non-native programs.)
- Added documentation to the last few public interfaces
0.0.6+2 #
- Fixed the behavior subject stream not returning the stored value causing some implementations to wait forever.
0.0.6+1 #
- Fixed the library trying to add the
availabilitychanged
event on unsupported platforms.
0.0.6 #
- Removed RxDart as a dependency
- Added Dart Meta annotations to help with avoiding methods only meant for testing
- Added a lot of documentation
- Added more error handling and descriptions for when these errors may occur and how to avoid them
- Added characteristic descriptor
- Deprecated SNAKE_CASE for default uuids. Use the camelCase version instead
- Switched to using
logger
instead ofprint
statements. This allows other developers to decide what to do with the log messages
0.0.5 #
- Fixed typo in
characteristicvaluechanged
for theBluetoothCharacteristic.startNotifications()
. ( Thanks AshTerry.) - Fixed crash when the device name of a bluetooth device is null. ( Thanks alextekartik.)
- A lot of small lint fixes, but that shouldn't impact a project based on this library. ( Thanks alextekartik.)
0.0.4 #
- Fixed call to
navigator.bluetooth.getDevices
in browsers that don't support it. - Added more documentation
0.0.3 #
- Forgot some Flutter dependency
0.0.2 #
- Removed Flutter as a dependency
- Added characteristic properties
- Added toLowerCase to every call that requires a UUID, because the web api expects only lower case UUIDS.
- Added Bluetooth descriptors.
0.0.1 #
- Basic support for web bluetooth api