This repository has been archived by the owner on Sep 15, 2021. It is now read-only.
v0.1.10-alpha
pbernasconi
released this
04 Jan 17:17
·
403 commits
to master
since this release
This is a relatively small release to reflect more changes to the FB plugin. Important additions were made the network plugin, which now provides the ability to watch for online
and offline
events.
NOTE: ngCordova is arriving at a very stable level and we hope to release the first BETA version in the next few weeks, after we complete some important fixes to the file plugin, push notifications and local notifications plugins. Expect 1 - 2 more ALPHA releases with changes made to these plugins, and send me an email @ [email protected] if you would like to help test these plugins.
NEW
- Network Plugin : adding
$on('online')
,$on('offline')
events 3cccfe4 - 0Auth : salesforce + strava support e0795ce
- Facebook : make more compliant with original plugin and remove unnecessary
init()
from login method. 64b5aa8 2218c4d - mocks : better file plugin 2404142 78e9410 8bac9eb
- docs: ability to search plugins
Fix
- 0Auth : add code to handle cancel / exit events in the oauth browser flow 4d93e12
- Keychain : check if keychain exists before instantiating 7684643
Breaking Changes
Facebook Plugin: (only relevant for browser testing)
Before
.config(function () {
$cordovaFacebookProvider.setAppID(appID, version);
});
After
.config(function () {
$cordovaFacebookProvider. browserInit(12345678, "v2.0")
});