Releases: tonyofrancis/Fetch
Releases · tonyofrancis/Fetch
2.0.0-RC18
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
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
Version 2.0.0-RC16
- Fix for retry on network gain. Thanks to dougkeen
- Library updates
2.0.0-RC15
Version 2.0.0-RC15
- updated Fetch Migrator
2.0.0-RC14
Bug fixes
2.0.0-RC13
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
- 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
Version 2.0.0-RC11
- Fixed Fetch close bugs
- Fixed onResume bugs
- Bug fixes
2.0.0-RC10
Version 2.0.0-RC10(FINAL RC)
- Memory usage improvements
- Performance improvements
- Bug fixes
2.0.0-RC9
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