Releases: jordanbyron/react-native-quick-actions
Version 0.3.2
Android
Fixes non-quick action onNewIntent
events from triggering quickActionShortcut
. Thanks to @AndrewJack for the PR!
iOS
No Changes
Version 0.3.1
Android bug fixes
Fixes an issue on Android 4.4 where an exception is thrown during startup due to undefined class ShortcutInfo
being referenced in function createShortcutInfo()
Again a big thanks to @huangmr for his continued work on our Android code 🤗
Version 0.3.0
Adds support for Android 7+ 🤖
See the README for details and let us know if you encounter any issues. Big thanks to @huangmr for doing the heavy lifting to get this done.
Breaking changes ⚠️
popInitialAction
now returns a promise.
QuickActions.popInitialAction().then(doSomethingWithTheAction).catch(console.error)
Version 0.2.1
Adds additional icons from iOS 9.1+
Thanks for @Jean-PierreGassin for his help with this release.
Version 0.2.0
Support React-Native versions 0.40 and higher. If you need to stay on older versions of RN please use version 0.1.5
of this package.
Big thanks to @messense for working on this release.
Version 1.0.5
Add QuickActions.isSupported
function to determine if a device supports 3D Touch.
QuickActions.isSupported(function(error, supported) {
if (!supported) {
console.log('Device does not support 3d touch or 3d touch is disabled.');
}
});
Big thanks to @superandrew213 for the PR!
Version 0.1.4
CocoaPods 1.0 support thanks to @oblador
Version 0.1.3
- Removed post install script
- Added
LICENSE
file to project
Special thanks to @sevachb for helping out with this release!
Version 0.1.2
- Rollback broken pre iOS 9.0 support
- Added cocoapods support thanks to @oblador
Version 0.1.1
This version adds support for older iOS devices which don't support quick actions. Thanks to @Kemcake for adding this feature!