This repository was archived by the owner on Sep 15, 2021. It is now read-only.
v0.1.15-alpha
·
224 commits
to master
since this release
New
- HealthKit plugin - HealthKit is now covered by ngCordova! Check out the docs too - thanks @mlynch
Fixes
- Push Notifications plugin - fix an issue where the
onNotification()method was not called due to bootstrapping of Angular app - File-Transfer plugin - add
encodeURIoption to encode the URL fordownload()andupload()methods 4307348 - App Rate plugin - refractor general preferences to use an
Objectrather thanStringliterals -- see below b9f7c10 - Add DI (dependency injection) for
strict-DIrules 9f18124
Breaking changes
$cordovaAppRate
Before:
$cordovaAppRateProvider.useLanguage(...)
$cordovaAppRateProvider.displayAppName(...)
...
Now:
var prefs = {language: 'en', appName: 'some name'};
$cordovaAppRateProvider.setPreferences(prefs)