Skip to content

Releases: apsonex/filament-simple-file

v1.0.9

09 Nov 21:18

Choose a tag to compare

Fix validation

v1.0.8

09 Nov 19:23

Choose a tag to compare

Fixed non-deletion

v1.0.7

03 Nov 20:48

Choose a tag to compare

Bug fixes

v1.0.6

10 Oct 14:44

Choose a tag to compare

Inline alpine component. Easy to debug

v1.0.5

04 Oct 17:23

Choose a tag to compare

Removed apsonex/filament-asset-routing

v1.0.4

22 Sep 18:09

Choose a tag to compare

Implement "saveUploadedFileUsing" in File.php. Use streams now.

if ($component->getVisibility() === 'public') {
    $res = $component->getDisk()->writeStream(
        $location,
        $file->readStream(),
        ['public'],
    );
} else {
    $res = $component->getDisk()->writeStream(
        $location,
        $file->readStream(),
    );
}

v1.0.3

19 Sep 01:22

Choose a tag to compare

Instead of custom class, File class now extend BaseFileUpload

v1.0.2

16 Sep 00:41

Choose a tag to compare

Fixed CanMoveFiles.php

v1.0.1

15 Sep 14:26

Choose a tag to compare

Fix getUrlPrefix() in \Apsonex\FilamentSimpleFile\Form\Components\Concerns\HasDisk.php

v1.0.0

15 Sep 13:33

Choose a tag to compare

WIP