Skip to content

Releases: tonyofrancis/Fetch

2.0.0-RC18

29 Apr 11:38
Compare
Choose a tag to compare

Version 2.0.0-RC18

  • Added new RequestOptions for Fetch. See the Java documents and sample app for more information.
  • Bug fixes
  • Updated the sample app

2.0.0-RC17

25 Apr 02:09
Compare
Choose a tag to compare

Version 2.0.0-RC17

  • Added new method getRequestOutputStream(request: Request, filePointerOffset: Long): OutputStream? on Downloader interface.
    You can now provide Fetch a custom downloader that provides an OutputStream per Download. See Downloader.kt documentation for more information.
    Also see sample app for more information on custom downloader.

Breaking Changes

  • Added new method getRequestOutputStream(request: Request, filePointerOffset: Long): OutputStream? on Downloader interface.
  • Added new fields id, file, and tag on Downloader.Request class.
  • Added new field request on Downloader.Response class.

2.0.0-RC16

19 Apr 23:33
Compare
Choose a tag to compare

Version 2.0.0-RC16

  • Fix for retry on network gain. Thanks to dougkeen
  • Library updates

2.0.0-RC15

19 Apr 13:12
Compare
Choose a tag to compare

Version 2.0.0-RC15

  • updated Fetch Migrator

2.0.0-RC14

17 Apr 00:41
Compare
Choose a tag to compare

Bug fixes

2.0.0-RC13

07 Apr 23:37
Compare
Choose a tag to compare

Version 2.0.0-RC13

  • Bug fixes.
  • Added new Error.FILE_NOT_FOUND constant if the downloaded file on the local devices was deleted
    and the matching request is still managed by Fetch.
  • Fetch now sanitizes(Checks if the local file exist) downloads from the database on each get call.

2.0.0-RC12

24 Mar 15:52
0efadaf
Compare
Choose a tag to compare
  • Improved error reporting and handling when a download encounters an error.
  • Error returned with a download that encountered an error now has a throwable attached when the error occurs.

2.0.0-RC11

15 Mar 20:07
Compare
Choose a tag to compare

Version 2.0.0-RC11

  • Fixed Fetch close bugs
  • Fixed onResume bugs
  • Bug fixes

2.0.0-RC10

11 Mar 14:15
Compare
Choose a tag to compare

Version 2.0.0-RC10(FINAL RC)

  • Memory usage improvements
  • Performance improvements
  • Bug fixes

2.0.0-RC9

04 Mar 21:24
Compare
Choose a tag to compare

Version 2.0.0-RC9

  • Lowered min sdk to 14
  • Updated android support library, Kotlin, rxJava and okHttp library
  • Added copy method on Download Interface
  • Bug fixes on DownloadInfo class
  • Fixed FetchImplementationException crash after calling close method on Fetch.
  • Added missing callbacks on rxFetch enqueue methods
  • Better error handling for non-existing urls - Special thanks to Joshua Park (jclova) for the fix.
  • Added enabledAutoStart method on Fetch Builder
  • Added retry download on network lost feature.
  • Added enableRetryOnNetworkGain method on FetchBuilder
  • Added Tag field to Request and Download classes. Tags are saved to the FetchDatabase. See documentation.
  • Overall improvement and bug fixes