Browse Source

bump to 0.5.6

Ben Hsieh 8 years ago
parent
commit
076165ab3c
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      src/README.md

+ 6
- 1
src/README.md View File

@@ -1,4 +1,4 @@
1
-# react-native-fetch-blob [![npm version](https://img.shields.io/badge/npm package-0.5.5-brightgreen.svg)](https://badge.fury.io/js/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg) ![](https://img.shields.io/badge/in progress-0.6.0-yellow.svg)
1
+# react-native-fetch-blob [![npm version](https://img.shields.io/badge/npm package-0.5.6-brightgreen.svg)](https://badge.fury.io/js/react-native-fetch-blob) ![](https://img.shields.io/badge/PR-Welcome-brightgreen.svg) ![](https://img.shields.io/badge/in progress-0.6.0-yellow.svg)
2 2
 
3 3
 A module provides upload, download, and files access API. Supports file stream read/write for process large files.
4 4
 
@@ -772,6 +772,10 @@ Connect `Media Scanner` and scan the file. see [Android Media Scanner, and Downl
772 772
 
773 773
 A set of configurations that will be injected into a `fetch` method, with the following properties.
774 774
 
775
+#### indicator:boolean
776
+  `0.5.6`
777
+  Set this property to `true` to display a network indicator on status bar, this feature is only supported on IOS.
778
+
775 779
 #### trusty:boolean
776 780
   `0.5.3`
777 781
   Set this property to `true` will allow the request create connection with server have self-signed SSL certification. This is not recommended to use in production.
@@ -847,6 +851,7 @@ A `session` is an object that helps you manage files. It simply maintains a list
847 851
 
848 852
 | Version | |
849 853
 |---|---|
854
+| 0.5.6 | Add support for IOS network status indicator. Fix file stream ASCII reader bug. |
850 855
 | 0.5.5 | Remove work in progress code added in 0.5.2 which may cause memory leaks. |
851 856
 | 0.5.4 | Fix #30 #31 build build error, and improve memory efficiency. |
852 857
 | 0.5.3 | Add API for access untrusted SSL server |