v1.4.2
This commit is contained in:
parent
6a8de6e2e2
commit
a80a4aa4f9
8168 changed files with 3186001 additions and 9155 deletions
|
|
@ -1,15 +1,14 @@
|
|||
<?php
|
||||
/**
|
||||
* Plugin Name: iDrivee2 Media Upload
|
||||
* Plugin URI: https://git.robotstxt.es/ROBOTSTXT/idrivee2-media-upload
|
||||
* Gitea Plugin URI: https://git.robotstxt.es/ROBOTSTXT/idrivee2-media-upload
|
||||
* Primary Branch: main
|
||||
* Plugin URI: https://www.robotstxt.software/plugins/idrivee2-media-upload/
|
||||
* Update URI: https://www.robotstxt.software/plugins/idrivee2-media-upload/
|
||||
* Description: Uploads media files to iDrivee2 (S3-compatible) with enterprise-grade security and logging.
|
||||
* Version: 1.4.1
|
||||
* Version: 1.4.2
|
||||
* Requires at least: 5.3
|
||||
* Requires PHP: 8.1
|
||||
* Author: ROBOTSTXT
|
||||
* Author URI: https://www.robotstxt.es/
|
||||
* Author URI: https://www.robotstxt.software/
|
||||
* License: GPL-3.0-or-later
|
||||
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
* Text Domain: idrivee2-media-upload
|
||||
|
|
@ -36,7 +35,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
*
|
||||
* @since 1.1.4
|
||||
*/
|
||||
define( 'IDRIVEE2_MEDIA_VERSION', '1.4.1' );
|
||||
define( 'IDRIVEE2_MEDIA_VERSION', '1.4.2' );
|
||||
|
||||
/**
|
||||
* Load Composer autoloader if available.
|
||||
|
|
@ -61,6 +60,7 @@ require_once __DIR__ . '/includes/class-url-rewriter.php';
|
|||
require_once __DIR__ . '/includes/class-media-uploader.php';
|
||||
require_once __DIR__ . '/includes/class-admin-page.php';
|
||||
require_once __DIR__ . '/includes/class-subsize-filter.php';
|
||||
require_once __DIR__ . '/includes/class-manager-dependency.php';
|
||||
require_once __DIR__ . '/includes/class-plugin.php';
|
||||
require_once __DIR__ . '/includes/class-cli.php';
|
||||
|
||||
|
|
@ -75,7 +75,3 @@ Plugin::get_instance( __FILE__ )->init();
|
|||
if ( defined( 'WP_CLI' ) && WP_CLI ) {
|
||||
\WP_CLI::add_command( 'idrivee2', new CLI() );
|
||||
}
|
||||
|
||||
// Load the ROBOTSTXT auto-updater (external vendored library — see header in robotstxt-updater.php).
|
||||
require_once __DIR__ . '/robotstxt-updater.php';
|
||||
\Robotstxt_Updater::init( __FILE__ );
|
||||
|
|
|
|||
Loading…
Reference in a new issue