Skip to content

Releases: pionl/laravel-chunk-upload

1.1.4

04 Feb 16:28
Compare
Choose a tag to compare

🙌 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

27 Oct 13:55
Compare
Choose a tag to compare

🍻 Added DropZone support - #22
👷 Removed Laravel dependency in favor of Illuminate packages - #21

1.1.2

06 Sep 14:24
Compare
Choose a tag to compare

Added support for Auto-Discovery (thanks to @laravelish - #20)

1.1.1

01 Sep 10:13
Compare
Choose a tag to compare

Added support for Laravel 5.5 (thanks to @Colbydude)

1.1.0

03 Jul 11:59
Compare
Choose a tag to compare

From now, when file upload has an error, exception will be thrown (on FileReceiver construct).

Related to #17

1.0.4

29 Jun 10:17
Compare
Choose a tag to compare

Fixed #15 + #16

1.0.3

17 Mar 17:00
Compare
Choose a tag to compare
  • 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

17 Mar 16:09
Compare
Choose a tag to compare
  • Added resumable.js provider
  • Added getChunkFile method in ChunkSave for returning only the chunk file

1.0.1

14 Feb 19:45
Compare
Choose a tag to compare

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

07 Feb 14:59
Compare
Choose a tag to compare
  • Updated composer to support Laravel 5.4
  • Updated readme with example project link