Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.4.0

### Added

- Migrate add-on to the catalog — import folders from Enhanced Media Library, FileBird, Real Media Library, HappyFiles, WP Media Folder, Media Library Assistant, and CatFolders

## 1.3.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vmfa",
"version": "1.3.0",
"version": "1.4.0",
"description": "Install and manage add-ons that extend Virtual Media Folders.",
"author": "Per Soderlind",
"license": "GPL-2.0-or-later",
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: media, folders, addons, manager
Requires at least: 6.8
Tested up to: 7.0
Requires PHP: 8.3
Stable tag: 1.3.0
Stable tag: 1.4.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -32,6 +32,9 @@ Update checks use the latest GitHub releases for each supported add-on.

== Changelog ==

= 1.4.0 =
* Added: Migrate add-on to the catalog — import folders from Enhanced Media Library, FileBird, Real Media Library, HappyFiles, WP Media Folder, Media Library Assistant, and CatFolders.

= 1.3.0 =
* Added: WP 7.0+ design-token style overrides for the add-on manager admin page
* Fixed: Cache failed GitHub release lookups as empty string to avoid repeated null transient misses
Expand Down
4 changes: 4 additions & 0 deletions src/AddonCatalog.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ final class AddonCatalog {
'title' => 'Media Cleanup',
'description' => 'Tools to identify and clean up unused or duplicate media files.',
],
'vmfa-migrate' => [
'title' => 'Migrate',
'description' => 'Import folders and assignments from Enhanced Media Library, FileBird, Real Media Library, HappyFiles, WP Media Folder, Media Library Assistant, and CatFolders.',
],
'vmfa-rules-engine' => [
'title' => 'Rules Engine',
'description' => 'Rule-based automatic folder assignment for media uploads, based on metadata, file type, or other criteria.',
Expand Down
4 changes: 2 additions & 2 deletions vmfa.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Virtual Media Folders - Add-On Manager
* Description: Install and manage add-ons that extend Virtual Media Folders.
* Version: 1.3.0
* Version: 1.4.0
* Requires at least: 6.8
* Requires PHP: 8.3
* Author: Per Soderlind
Expand All @@ -18,7 +18,7 @@
exit;
}

define( 'VMFA_VERSION', '1.3.0' );
define( 'VMFA_VERSION', '1.4.0' );
define( 'VMFA_FILE', __FILE__ );
define( 'VMFA_PATH', __DIR__ . '/' );
define( 'VMFA_URL', plugin_dir_url( __FILE__ ) );
Expand Down
Loading