Skip to content

Latest commit

 

History

History
70 lines (58 loc) · 4.98 KB

CHANGELOG.md

File metadata and controls

70 lines (58 loc) · 4.98 KB

Changelog

Changes for v2.13

  • #544 [Android] Add scanFile method
  • #597 [Android] Perform copyFile in background thread to prevent UI blocking
  • #587 [Windows] Fixed implementation for Windows
  • #585 [Android] Fix EISDIR on stat directory
  • #583 [Android] fix Android downloadFile overflow contentLength and bytesWritten

Changes for v2.12

  • #601 [iOS] Another fix for copyAssetsVideoIOS
  • #599 [iOS] Fix for copyAssetsVideoIOS regarding iCloud-Files
  • #564 [Android] Upgrade to Gradle 3 (BREAKING compatiblity for < RN 0.57)
  • #571 [Android] Fix issue #566 android progress callback not sync and handle uppercase file extension mimetype

Changes for v2.11

  • Prepared for RN 0.56 thanx to #535 by rmevans9
  • #503 make sure to return the original file uri if content:// scheme is not used
  • #510 Fixes an IndexOutOfBounds while uploading files in Android
  • #515 Add cacheable option to downloadFile on iOScompletion callback
  • #516 [iOS] Ensure _bytesWritten is correct in download
  • #519 updated compilesdkversion and buildtoolsversion
  • #535 Make this work with RN56
  • #558 [Android] fixed missing parameter in movefile and writefile
  • #557 [Android] copyFile: fix missing parameter on Android
  • #564 [Android] Replace deprecated 'compile' gradle configuration with 'implementation

Changes for v2.10

  • UploadFiles is now also available for Android #486 by hank121314
  • Fixed a memory leak that caused after running many simultaneous upload jobs on iOS #502 by Ignigena
  • Android: Resolve filepath for content URI 480 by andtos90
  • (Android only) Add ExternalCachesDirectoryPath 490 by superandrew213

Changes for v2.9

  • (iOS only) Resumable downloads and better background downloads handling #335 by ptelad
  • (Android only) getAllExternalFilesDirs() added by ngrj
  • Content URI support #395 by krzysztof-miemiec
  • Fixed Cocoapods-Installation

Changes for v2.8

  • Fix for #346: compressed file assets are detected as directories thx to jacargentina
  • added support for Video-Assets on iOS (copyAssetsVideoIOS) and setReadable() on Android by itinance
  • Added react-native-windows support for UWP #337 thx to rozele
  • Expose the iOS discretionary flag on downloadFile #360 thx to jamesreggio

Changes for v2.5

Changes for v2.4

Changes for v2.3

  • React-Native 0.40 is minimum required for compiling on iOS (otherwise install an older release, see below)
  • Access to iOS-based "assets-library" is now supported with copyAssetsFileIOS
  • readDir will return now creation- and modification-time of files as with stat() (thanks @Ignigena)
  • optional connectionTimeout and readTimeout-Settings on downloadFile for Android (thanks @drunksaint)

Breaking change in v2.0

  • Removed attributes from writeFile and appendFile for iOS / Android consistency
  • downloadFile takes options object rather than parameters
  • stopDownload will cause the rejection of promise returned by downloadFile
  • uploadFiles promise result response property is now body
  • A boolean is no longer returned from any method except exists
  • downloadFile and uploadFiles return an object of the form { jobId: number, promise: Promise }
  • mkdir takes optional 2nd parameter options for iOS users to set the NSURLIsExcludedFromBackupKey attribute