cordova-promise-fs
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -202,4 +202,4 @@ var CordovaPromiseFS = | ||
fs.then(function(fs){ | ||
CDV_INTERNAL_URL_ROOT = fs.root.toInternalURL(); | ||
CDV_URL_ROOT = fs.root.toURL(); | ||
CDV_INTERNAL_URL_ROOT = isCordova? fs.root.toInternalURL(): CDV_URL_ROOT; | ||
window.__fs = fs; | ||
@@ -206,0 +206,0 @@ },function(err){ |
@@ -155,4 +155,4 @@ /** | ||
fs.then(function(fs){ | ||
CDV_INTERNAL_URL_ROOT = fs.root.toInternalURL(); | ||
CDV_URL_ROOT = fs.root.toURL(); | ||
CDV_INTERNAL_URL_ROOT = isCordova? fs.root.toInternalURL(): CDV_URL_ROOT; | ||
window.__fs = fs; | ||
@@ -159,0 +159,0 @@ },function(err){ |
{ | ||
"name": "cordova-promise-fs", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Cordova FileSystem convienence functions that return promises.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -19,5 +19,5 @@ cordova-promise-fs | ||
# install Cordova and plugins | ||
cordova platform add ios@3.7.0 | ||
cordova plugin add org.apache.cordova.file | ||
cordova plugin add org.apache.cordova.file-transfer # optional | ||
cordova platform add ios | ||
cordova plugin add cordova-plugin-file | ||
cordova plugin add cordova-plugin-file-transfer # optional | ||
``` | ||
@@ -144,2 +144,7 @@ | ||
### 1.1.0 (05/05/2016) | ||
* Fixed bug: download/upload support for different Cordova FileSystems. | ||
* | ||
### 1.0.0 (07/02/2016) | ||
@@ -146,0 +151,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
130492
228