Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Releases: jordanbyron/react-native-quick-actions

Version 0.3.2

23 May 13:30
Compare
Choose a tag to compare

Android

Fixes non-quick action onNewIntent events from triggering quickActionShortcut. Thanks to @AndrewJack for the PR!

iOS

No Changes

Version 0.3.1

12 May 13:07
Compare
Choose a tag to compare

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

06 May 15:39
Compare
Choose a tag to compare

Adds support for Android 7+ 🤖

Android Shortcut

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

18 Jan 16:00
Compare
Choose a tag to compare

Adds additional icons from iOS 9.1+

Thanks for @Jean-PierreGassin for his help with this release.

Version 0.2.0

12 Jan 18:15
Compare
Choose a tag to compare

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

01 Aug 13:06
Compare
Choose a tag to compare

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

19 May 16:00
Compare
Choose a tag to compare

CocoaPods 1.0 support thanks to @oblador

Version 0.1.3

16 Feb 21:15
Compare
Choose a tag to compare
  • Removed post install script
  • Added LICENSE file to project

Special thanks to @sevachb for helping out with this release!

Version 0.1.2

10 Feb 22:39
Compare
Choose a tag to compare
  • Rollback broken pre iOS 9.0 support
  • Added cocoapods support thanks to @oblador

Version 0.1.1

26 Jan 15:33
Compare
Choose a tag to compare

This version adds support for older iOS devices which don't support quick actions. Thanks to @Kemcake for adding this feature!