This repository has been archived by the owner on Sep 15, 2021. It is now read-only.
v0.1.12-alpha
pbernasconi
released this
28 Jan 13:59
·
323 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
encodeURI
option to encode the URL fordownload()
andupload()
methods 4307348 - App Rate plugin - refractor general preferences to use an
Object
rather thanString
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)