Plugin Directory

Changeset 2805532


Ignore:
Timestamp:
10/27/2022 06:36:10 AM (3 years ago)
Author:
interfacelab
Message:

Update to version 4.5.3 from GitHub

Location:
ilab-media-tools
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ilab-media-tools/tags/4.5.3/classes/Tasks/TaskSchedule.php

    r2795243 r2805532  
    365365        return null;
    366366    }
     367
     368    public function rescheduleTask(int $minutes) {
     369        global $wpdb;
     370
     371        $table = "{$wpdb->base_prefix}mcloud_task_schedule";
     372        $nextRun = time() + ($minutes * 60);
     373        $wpdb->update($table, ['nextRun' => $nextRun], ['id' => $this->id()]);
     374    }
     375
    367376
    368377    /**
  • ilab-media-tools/tags/4.5.3/config/storage/wasabi.config.php

    r2684586 r2805532  
    4343                    'us-east-2' => 'US East 2',
    4444                    'us-west-1' => 'US West',
    45                     'us-central' => 'US Central',
     45                    'us-central-1' => 'US Central (Texas)',
     46                    'ca-central-1' => 'Canada Central',
    4647                    'eu-central-1' => 'EU (Amsterdam)',
     48                    'eu-central-2' => 'EU (Frankfurt)',
    4749                    'eu-west-1' => 'EU (London)',
    4850                    'eu-west-2' => 'EU (Paris)',
    4951                    'ap-northeast-1' => 'Asia Pacific (Tokyo)',
    5052                    'ap-northeast-2' => 'Asia Pacific (Osaka)',
     53                    'ap-southeast-1' => 'Singapore',
     54                    'ap-southeast-2' => 'Australia',
    5155                ],
    5256            ],
  • ilab-media-tools/tags/4.5.3/ilab-media-tools.php

    r2799190 r2805532  
    66Description: Automatically upload media to Amazon S3 and integrate with Imgix, a real-time image processing CDN.  Boosts site performance and simplifies workflows.
    77Author: interfacelab
    8 Version: 4.5.2
     8Version: 4.5.3
    99Requires PHP: 7.4
    1010Author URI: http://interfacelab.io
     
    9696
    9797// Version Defines
    98 define( 'MEDIA_CLOUD_VERSION', '4.5.2' );
     98define( 'MEDIA_CLOUD_VERSION', '4.5.3' );
    9999define( 'MEDIA_CLOUD_INFO_VERSION', '4.0.2' );
    100100define( 'MCLOUD_IS_BETA', false );
  • ilab-media-tools/tags/4.5.3/readme.txt

    r2799190 r2805532  
    33Tags: offload, amazon, s3, cloudflare, imgix, uploads, video, video encoding, google cloud storage, digital ocean spaces, wasabi, media, cdn, rekognition, cloudfront, images, crop, image editing, image editor, optimize, image optimization, media library, offload, offload s3, smush, imagify, shortpixel
    44Requires at least: 4.9
    5 Tested up to: 6.0.2
     5Tested up to: 6.1
    66License: GPLv3 or later
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
    8 Stable tag: 4.5.2
     8Stable tag: 4.5.3
    99Requires PHP: 7.4
    1010
     
    105105
    106106== Changelog ==
     107
     108= 4.5.3 - 10/15/2022 =
     109
     110* Fix for compatability issue with WP All Import Pro
     111* Added new Wasabi regions
    107112
    108113= 4.5.2 - 10/15/2022 =
  • ilab-media-tools/trunk/classes/Tasks/TaskSchedule.php

    r2795243 r2805532  
    365365        return null;
    366366    }
     367
     368    public function rescheduleTask(int $minutes) {
     369        global $wpdb;
     370
     371        $table = "{$wpdb->base_prefix}mcloud_task_schedule";
     372        $nextRun = time() + ($minutes * 60);
     373        $wpdb->update($table, ['nextRun' => $nextRun], ['id' => $this->id()]);
     374    }
     375
    367376
    368377    /**
  • ilab-media-tools/trunk/config/storage/wasabi.config.php

    r2684586 r2805532  
    4343                    'us-east-2' => 'US East 2',
    4444                    'us-west-1' => 'US West',
    45                     'us-central' => 'US Central',
     45                    'us-central-1' => 'US Central (Texas)',
     46                    'ca-central-1' => 'Canada Central',
    4647                    'eu-central-1' => 'EU (Amsterdam)',
     48                    'eu-central-2' => 'EU (Frankfurt)',
    4749                    'eu-west-1' => 'EU (London)',
    4850                    'eu-west-2' => 'EU (Paris)',
    4951                    'ap-northeast-1' => 'Asia Pacific (Tokyo)',
    5052                    'ap-northeast-2' => 'Asia Pacific (Osaka)',
     53                    'ap-southeast-1' => 'Singapore',
     54                    'ap-southeast-2' => 'Australia',
    5155                ],
    5256            ],
  • ilab-media-tools/trunk/ilab-media-tools.php

    r2799190 r2805532  
    66Description: Automatically upload media to Amazon S3 and integrate with Imgix, a real-time image processing CDN.  Boosts site performance and simplifies workflows.
    77Author: interfacelab
    8 Version: 4.5.2
     8Version: 4.5.3
    99Requires PHP: 7.4
    1010Author URI: http://interfacelab.io
     
    9696
    9797// Version Defines
    98 define( 'MEDIA_CLOUD_VERSION', '4.5.2' );
     98define( 'MEDIA_CLOUD_VERSION', '4.5.3' );
    9999define( 'MEDIA_CLOUD_INFO_VERSION', '4.0.2' );
    100100define( 'MCLOUD_IS_BETA', false );
  • ilab-media-tools/trunk/readme.txt

    r2799190 r2805532  
    33Tags: offload, amazon, s3, cloudflare, imgix, uploads, video, video encoding, google cloud storage, digital ocean spaces, wasabi, media, cdn, rekognition, cloudfront, images, crop, image editing, image editor, optimize, image optimization, media library, offload, offload s3, smush, imagify, shortpixel
    44Requires at least: 4.9
    5 Tested up to: 6.0.2
     5Tested up to: 6.1
    66License: GPLv3 or later
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
    8 Stable tag: 4.5.2
     8Stable tag: 4.5.3
    99Requires PHP: 7.4
    1010
     
    105105
    106106== Changelog ==
     107
     108= 4.5.3 - 10/15/2022 =
     109
     110* Fix for compatability issue with WP All Import Pro
     111* Added new Wasabi regions
    107112
    108113= 4.5.2 - 10/15/2022 =
Note: See TracChangeset for help on using the changeset viewer.