Ben Hsieh 8 anni fa
parent
commit
1df66d6f5f
4 ha cambiato i file con 6 aggiunte e 4 eliminazioni
  1. 3
    2
      README.md
  2. 1
    1
      package.json
  3. 1
    0
      src/README.md
  4. 1
    1
      src/package.json

+ 3
- 2
README.md Vedi File

23
 
23
 
24
 ## About
24
 ## About
25
 
25
 
26
-This project was initially for solving the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854), because React Native does not support `Blob` object and it will cause some problem when sending and receiving binary data. There's aleady [a PR ](https://github.com/facebook/react-native/pull/8324) merged into RN master branch which will probably solving the issue in the near future. 
26
+This project was initially for solving the issue [facebook/react-native#854](https://github.com/facebook/react-native/issues/854), because React Native does not support `Blob` object and it will cause some problem when sending and receiving binary data. There's aleady [a PR ](https://github.com/facebook/react-native/pull/8324) merged into RN master branch which will probably solving the issue in the near future.
27
 
27
 
28
-Now, this project is committed to make file acess and transfer more easier and more effiecient for React Native developers. We've implemented lot of file access function which plays well with our network module. For example, it can upload and download data directly into/from file system, which is much more performant than converting data to BASE64 string and sending them through React JS Bridge, and file stream support so that you can read large file without causing OOM error. 
28
+Now, this project is committed to make file acess and transfer more easier and more effiecient for React Native developers. We've implemented lot of file access function which plays well with our network module. For example, it can upload and download data directly into/from file system, which is much more performant than converting data to BASE64 string and sending them through React JS Bridge, and file stream support so that you can read large file without causing OOM error.
29
 
29
 
30
 ## Backward Compatible
30
 ## Backward Compatible
31
 
31
 
614
 
614
 
615
 | Version | |
615
 | Version | |
616
 |---|---|
616
 |---|---|
617
+| 0.7.3 | Fix OkHttp dependency issue in version < 0.29 |
617
 | 0.7.2 | Fix cancel request bug |
618
 | 0.7.2 | Fix cancel request bug |
618
 | 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
619
 | 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
619
 | 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |
620
 | 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |

+ 1
- 1
package.json Vedi File

1
 {
1
 {
2
   "name": "fetchblob",
2
   "name": "fetchblob",
3
-  "version": "0.7.2",
3
+  "version": "0.7.3",
4
   "private": true,
4
   "private": true,
5
   "scripts": {
5
   "scripts": {
6
     "start": "node node_modules/react-native/local-cli/cli.js start",
6
     "start": "node node_modules/react-native/local-cli/cli.js start",

+ 1
- 0
src/README.md Vedi File

618
 
618
 
619
 | Version | |
619
 | Version | |
620
 |---|---|
620
 |---|---|
621
+| 0.7.3 | Fix OkHttp dependency issue in version < 0.29 |
621
 | 0.7.2 | Fix cancel request bug |
622
 | 0.7.2 | Fix cancel request bug |
622
 | 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
623
 | 0.7.1 | Fix #57 ios module could not compile on ios version <= 9.3 |
623
 | 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |
624
 | 0.7.0 | Add support of Android upload progress, and remove AsyncHttpClient dependency from Android native implementation. |

+ 1
- 1
src/package.json Vedi File

1
 {
1
 {
2
   "name": "react-native-fetch-blob",
2
   "name": "react-native-fetch-blob",
3
-  "version": "0.7.2",
3
+  "version": "0.7.3",
4
   "description": "A module provides upload, download, and files access API. Supports file stream read/write for process large files.",
4
   "description": "A module provides upload, download, and files access API. Supports file stream read/write for process large files.",
5
   "main": "index.js",
5
   "main": "index.js",
6
   "scripts": {
6
   "scripts": {