This commit is contained in:
Javier Casares 2026-06-02 18:49:45 +00:00
commit 1dd5809016
606 changed files with 21760 additions and 3778 deletions

View file

@ -5,9 +5,9 @@
* Gitea Plugin URI: https://git.robotstxt.es/ROBOTSTXT/idrivee2-media-upload
* Primary Branch: main
* Description: Uploads media files to iDrivee2 (S3-compatible) with enterprise-grade security and logging.
* Version: 1.1.3
* Requires at least: 6.8
* Requires PHP: 8.2
* Version: 1.1.4
* Requires at least: 4.1
* Requires PHP: 8.1
* Author: ROBOTSTXT
* Author URI: https://www.robotstxt.es/
* License: GPL-3.0-or-later
@ -31,14 +31,21 @@ if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Plugin version constant.
*
* @since 1.1.4
*/
define( 'IDRIVEE2_MEDIA_VERSION', '1.1.4' );
/**
* Load Composer autoloader if available.
*
* @since 0.1.13
*/
$autoload = __DIR__ . '/vendor/autoload.php';
if ( file_exists( $autoload ) ) {
require_once $autoload;
$idrivee2_autoload = __DIR__ . '/vendor/autoload.php';
if ( file_exists( $idrivee2_autoload ) ) {
require_once $idrivee2_autoload;
}
/**