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

v0.1.15-alpha

Compare
Choose a tag to compare
@pbernasconi pbernasconi released this 23 Apr 19:52
· 224 commits to master since this release

New

Fixes

  • Push Notifications plugin - fix an issue where the onNotification() method was not called due to bootstrapping of Angular app
  • File-Transfer plugin - add encodeURI option to encode the URL for download() and upload() methods 4307348
  • App Rate plugin - refractor general preferences to use an Object rather than String literals -- see below b9f7c10
  • Add DI (dependency injection) for strict-DI rules 9f18124

Breaking changes

$cordovaAppRate

Before:

$cordovaAppRateProvider.useLanguage(...)
$cordovaAppRateProvider.displayAppName(...)
...

Now:

var prefs = {language: 'en', appName: 'some name'};
$cordovaAppRateProvider.setPreferences(prefs)