This repository has been archived by the owner on May 11, 2023. It is now read-only.
Releases: outl1ne/nova-media-field
Releases · outl1ne/nova-media-field
1.2.2
- Fixed non-image (for example SVG) upload which was broken in 1.2.1
1.2.1
1.2.0
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
- Fixed URL field not displaying (thanks to Rafael Milewski)
1.1.0
Added
- Added ability to overwrite MediaHandler class (thanks to Rafael Milewski)
1.0.1
1.0.0
UI updates
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
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
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,
];
}