Skip to content

Releases: alexusmai/laravel-file-manager

Laravel 11 support

11 May 17:21
Compare
Choose a tag to compare

Deleted - intervention/imagecache (Abandoned)

delete from config - config/file-manager.php

     /**
     * Image cache ( Intervention Image Cache )
     *
     * set null, 0 - if you don't need cache (default)
     * if you want use cache - set the number of minutes for which the value should be cached
     */
    'cache'             => null,

Updated - Intervention/image to v3 ( used - https://github.com/Intervention/image-laravel)

Laravel 10 support

26 Feb 09:02
Compare
Choose a tag to compare
v3.0.5

Laravel 10

v3.0.1

20 Feb 16:49
Compare
Choose a tag to compare

Laravel 9 support... ONLY!

Vue.js 3
Bootstrap 5
Bootstrap Icons

v2.5.0

29 Jun 18:03
Compare
Choose a tag to compare

You can change Route prefix (default - 'file-manager')

/**
 * LFM Route prefix
 * !!! WARNING - if you change it, you should compile frontend with new prefix(baseUrl) !!!
 */
'routePrefix' => 'file-manager',

Open PDF files in a new tab (test) - use 'double-click'

v2.4.10

11 Jan 14:23
Compare
Choose a tag to compare

Turkish language - thanks for cagrig
Changed date format - now the date is formed using a setted locale.
Fixed - file size calculation

v2.4.8

03 Dec 16:59
Compare
Choose a tag to compare

Fixed - cropped image size (jpeg)

v2.4.7

20 Nov 18:42
Compare
Choose a tag to compare
  • Show / Hide system files and folders - in a config file you can set default value, but you can change this settings from FM manualy (added new button), without saving

config/file-manager.php

'hiddenFiles' => true,
  • Added edditing json and log files in text editor. (Be careful with json! invalid json will then be difficult to fix )

  • Now you don't need to install helper package for laravel 6 - laravel/helpers

Upgrading

You need to update you config file manualy (add new setting) or you can make --force updating, but make backup your settings first

// config
php artisan vendor:publish --tag=fm-config --force
// js, css
php artisan vendor:publish --tag=fm-assets --force

If you are implementing ConfigRepository - add new method in your class

/**
     * Show / Hide system files and folders
     *
     * @return bool
     */
    public function getHiddenFiles(): bool
    {
        return config('file-manager.hiddenFiles');
    }

v2.4.4

16 Sep 16:43
Compare
Choose a tag to compare

Added German language

v2.4.3

05 Sep 18:39
Compare
Choose a tag to compare

Laravel 6

For Laravel 6 - You need to install - String & Array Helpers Package

composer require laravel/helpers

v2.4.2

24 Aug 11:48
Compare
Choose a tag to compare

Pull request - Added TinyMCE v5 integration and czech translation.
Fixed issue - Select a file from mouse context menu not working #57