- wasConnected helper function
- Improved subscribe with Android. No longer need to specify whether notification or indication
- Read, write, subscribe, unsubscribe, readDescriptor, writeDescriptor queueing for Android #263, #153
- Everything now runs on the single WebCore thread with Android. It should prevent issues with race conditions
- Fix issue with writeDescriptor on Android
- Fix issue with UUID validation on iOS
- Fix issue with undefined params obj on startScan on Android.
- Update OS X
- Fix initializePeripheral issue when not passing parameters on iOS.
- OS X support. Central/client role only. Server/peripheral role was killed on newer versions of OS X.
- Support for server/peripheral role on iOS and partially Android.
- Background mode support controlled by other plugins.
- Require Cordova 5+
- Descriptor now includes permissions when discovering on Android...although descriptors never seem to have permissions set.
- Fixed bug with descriptor values being typed wrong. Now value can have a type of data, number or string.
- Fixed bug with write descriptor callback never being returned.
- Fixed bug which allowed Client Configuration Descriptor to be written, which throws an iOS error.
- Normalized write without response behavior. iOS now returns a write success immediately after executing the write.
- Callbacks for discover, services, characteristics, descriptors, rssi, mtu, readDescriptor, writeDescriptor. Basically everything now.
- Some code cleanup
- Added requestLocation function to help enable location on Android 6.0. Location services must be enabled to scan for unpaired devices. #238
- Updated readme with walkthrough example - Thanks normesta
- Added writeQ function for faster writes.
- Updated config.xml to support Windows 10 #242 - Thanks TimBarham
- Fixed issue with requestPermission() causing crash when executed on Android versions prior to 6.0.
- Added ability to check whether location services are enabled or not. Android 6.0 requires location services to be enabled to find unpaired devices.
- Windows API now compliant with v3.
- Fixed issue with API21+ code running on earlier API versions and causing the plugin to crash.
- Removed connecting / disconnecting statuses since they didn't provide much value and complicated the callback logic.
- Shortened serviceUuid, characteristicUuid, descriptorUuid to uuid or service/characteristic/descriptor depending on the context. See the readme for more info.
- Removed error callback from initialize. The success callback will be used to provide enabled or disabled status updates. #227
- Read/Write/Subscribe/Unsubscribe now return the error callback on unexpected disconnects. For example, iOS 9 wouldn't automatically call the error callback for a read operation when unexpectedly disconnected. On iOS 8 and Android, it would. Future versions will add this to other operations like rssi, readDescriptor, writeDescriptor, etc.
- More advertisement data provided on iOS. #110
- Support for new and improved Android scanning. #232 Thanks pscholl
- Fixed bug with scan race condition #223
- Fixed bug where unsubscribe wouldn't throw an error when already unsubscribed and subscribe wouldn't throw an error when already subscribed.
- Fixed bug where error callback was used instead of success callback when the device unexpectedly disconnected. #209
- Fixed bug where non-BLE devices were returned with retrieveConnected on Android
- Added permissions information to Android discovery.
- Updated and simplified Angular wrapper. Timeouts can now specified for almost any type of operation. Improved its example.
- Removed example. Use the Angular wrapper's example instead. Keeping both examples up to date was too time consuming.
- Changed license to MIT.
- Forgot to increment version
- Close can now be called if the device isn't already disconnected.
- Instead of automatically requesting permissions on scan. It can now be done via the hasPermission and requestPermission functions available for Android. This only needs to be done on Android 6.0 / SDK 23.
- Scan now works on Android 6.0, but requires ACCESS_COARSE_LOCATION permission. The permission will be requested when startScan is called. If the permission isn't granted, an error of "permissions" will be returned. #204
- Added information about permissions and targetting SDK 23
- iOS supports Android style discovery #63
- isConnected and isDiscovered now have separate error callbacks
- Added support for NPM
- Allow duplicate advertisements packets in iOS #184
- Change MTU on Android #183 - Needs additional testing
- Issue with RSSI callback missing device information
- Issue when device name is null
- Many updates pertaining to the changes above
- Cleaned up the example app's code, removed jQuery Mobile
- Request connection priority support added on Android although throughput not personally tested by me. Updated documentation and example as well #134 #136
- Retrieve connected support for Android. Some older Android versions / older devices wouldn't include paired devices in a scan. Doesn't support UUID filtering like iOS
- Issue involving status receiver if initialize was passed null (or invalid) parameters #114
- Issue with discovery status after disconnecting and reconnecting without closing on Android #141
- Issue with unexpected disconnect getting stuck on disconnect on Android 5.0+ #139
- Issue with isConnected returning the negated value on IOS #130
- Issue with retrieveConnected in example app
- Updated discovery documentation to include params #137