Skip to content

Releases: MaikuB/flutter_local_notifications

flutter_local_notifications-v1.2.0+4

28 Feb 22:32
aa3c384
Compare
Choose a tag to compare
  • Title at the top of the readme is now the same name as the plugin
  • Updated readme to add subsections under the Android and iOS integration guide
  • Added links in the readme under the Android release build configuration section that point to the configuration files used by the example app

flutter_local_notifications-v1.2.0+3

24 Feb 10:02
3ff8714
Compare
Choose a tag to compare
  • Updated API docs for resolvePlatformSpecificImplementation() method

flutter_local_notifications-v1.2.0+2

23 Feb 11:37
9796661
Compare
Choose a tag to compare
  • Make the static values propeerty of the Priority class return List<Priority> instead of being dynamic and added API docs for the property.

flutter_local_notifications-v1.2.0+1

23 Feb 11:20
8316c5a
Compare
Choose a tag to compare
  • The static values properties for the Day and Importance classes now return List<Day> and List<Importance> respectively instead of being dynamic
  • Added more public API documentation
  • Updated readme to move issues and contributions section to the readme within the repository
  • Added screenshots to readme
  • Updated how breaking changes are highlighted in changelog to all the letters aren't capitalised

flutter_local_notifications-v1.2.0

23 Feb 04:48
8f1f54f
Compare
Choose a tag to compare
  • Added the resolvePlatformSpecificImplementation() method to the FlutterLocalNotificationsPlugin class. This can be used to resolve the underlying platform implementation in order to access platform-specific APIs.
  • Breaking change the static instance properties in the IOSFlutterLocalNotificationsPlugin and AndroidFlutterLocalNotificationsPlugin classes have been removed due to addition of the resolvePlatformSpecificImplementation()
  • Updated readme to remove use of new keyword in code snippets
  • Bumped e2e dependency
  • Bumped example app dependencies
  • Make the pedantic dev_dependency explicit

flutter_local_notifications-v1.1.7

22 Feb 03:44
748071f
Compare
Choose a tag to compare
  • [iOS] Added requestPermissions() method to IOSFlutterLocalNotificationsPlugin class. This can be used to request notification permissions separately from plugin initialisation. To facilitate this the IOSFlutterLocalNotificationsPlugin and AndroidFlutterLocalNotificationsPlugin now expose a static instance property that can be used obtain the platform-specific implementation of the plugin so that platform-specific methods can be used. Thanks to the PR from Dariusz Łuksza
  • Updated documentation to clarify that getNotificationAppLaunchDetails() is intended to be used more on if a notification from this plugin triggered launch an application
  • Updated API docs for consistency and to better follow the guidelines on effective Dart documentation.

flutter_local_notifications-v1.1.6

10 Feb 09:44
Compare
Choose a tag to compare
  • [iOS] Added ability to set badge number. Thanks to PR from FelixYew
  • Fixed a spelling mistake in the 1.1.5+1 changelog entry

flutter_local_notifications-v1.1.5+1

01 Feb 10:39
63e3ac0
Compare
Choose a tag to compare
  • No functional changes. Fixed a reported formatting issue.
  • Mention removal of named constructor argument in 1.1.0 changelog entry
  • Add API docs to FlutterLocalNotificationsPlugin.private() on how it could be used for testing
  • Update notes on testing to mention that the FlutterLocalNotificationsPlugin.private() named constructor may be of use

flutter_local_notifications-v1.1.5

01 Feb 10:04
af67dec
Compare
Choose a tag to compare
  • [Android] minor optimisation on scheduling related code so that Gson instance is reused instead of being rebuilt each time
  • Changed plugin to require 1.12.3+hotfix.5 or greater since pub has issues resolving 1.12.3+hotfix.6
  • Updated changelog entry for version 1.1.4 to mention removal of upper bound constraint on Flutter SDK requirement

flutter_local_notifications-v1.1.4

01 Feb 04:40
09e587f
Compare
Choose a tag to compare
  • Support v2 Android embedding. Note that there is currently a known issue in the Flutter SDK that will cause onSelectNotification to fire twice on Android. The fix is in the master channel but hasn't rolled out to other channels. Subscribe to the issue for updates.
  • Require Flutter SDK 1.12.3+hotfix.6 or greater