Releases: pionl/laravel-chunk-upload
Releases · pionl/laravel-chunk-upload
1.1.4
🙌 Now if the session can't be used, it will fallback to browser data instead to prevent incorrect usage. Now it is more easier to use it - just copy the examples and setup your route.
👍 Resumable identifier is used for chunk name.
1.1.3
🍻 Added DropZone support - #22
👷 Removed Laravel dependency in favor of Illuminate packages - #21
1.1.2
Added support for Auto-Discovery (thanks to @laravelish - #20)
1.1.1
Added support for Laravel 5.5 (thanks to @Colbydude)
1.1.0
From now, when file upload has an error, exception will be thrown (on FileReceiver construct).
Related to #17
1.0.3
- Enabled to construct the FileReceiver with dependency injection - the fasted way.
public function upload(FileReceiver $receiver) {
// check if the upload is success
if ($receiver->isUploaded()) {
....
}
}
- Removed the
getChunkFile
and added getUploadedFile
for all Save classes. Returns always the uploaded file (the uploaded chunk).
1.0.2
- Added resumable.js provider
- Added getChunkFile method in ChunkSave for returning only the chunk file
1.0.1
Added support for passing file object instead of fileIndex (example: multiple files in a request). Change discussion in #7 (@RAZORzdenko), merged in #8
1.0.0
- Updated composer to support Laravel 5.4
- Updated readme with example project link