Skip to content
This repository has been archived by the owner on May 11, 2023. It is now read-only.

Releases: outl1ne/nova-media-field

1.2.2

29 Jul 09:48
Compare
Choose a tag to compare
  • Fixed non-image (for example SVG) upload which was broken in 1.2.1

1.2.1

15 Jun 09:51
Compare
Choose a tag to compare

Changed

  • Fixed uploaded webp image not saving original file as png, even though it was encoded as such

1.2.0

05 May 06:16
Compare
Choose a tag to compare

Added

  • Added ability to copy link to clipboard through click (thanks to Rafael Milewski)
  • Added config option to overwrite the Media resource (thanks to Rafael Milewski)

Changed

1.1.0

28 Apr 06:11
Compare
Choose a tag to compare

Added

  • Added ability to overwrite MediaHandler class (thanks to Rafael Milewski)

1.0.1

27 Apr 10:03
Compare
Choose a tag to compare

Changed

  • Fixed issue with media not being queried on detail view

1.0.0

24 Apr 10:17
Compare
Choose a tag to compare

Initial public release.

Changed

  • Fixed bug where a numeric value would not be queryable
  • Updated packages

UI updates

17 Oct 10:55
Compare
Choose a tag to compare

0.1.19 - 2019-10-17

Updated

  • Field UI when in compact mode + add default thumbnail size
  • Media modal UI

WebP support and UI fixes

16 Oct 14:14
Compare
Choose a tag to compare

0.1.17 - 2019-10-16

Manual changes required

  • run php artisan migrate to add columns that are required for WebP

Added

  • Upload button on resource index page
  • Search on upload index page
  • WebP support
  • Method to modify thumbnail sizes on nova admin
  • Method to format Media model serialization

Resource view update

02 Oct 07:35
Compare
Choose a tag to compare

0.1.9 - 2019-10-02

Updated

  • UI changes in media library modal
  • Selected files are now rendered at top when opening modal
  • Upload Media button added to resource view that opens stripped media modal for file upload
  • Custom formatter option for media model to decrease response size

Removed

  • Media nav item from under nova resource navigation

Added

  • Custom resource view.
  • Blade template for nova navigation

Display resource view in Nova navigation

In your NovaServiceProvider class add or update tools method

use OptimistDigital\MediaField\NovaMediaLibrary;

public function tools()
{
    return [
        new \OptimistDigital\MediaField\NovaMediaLibrary,
    ];
}