Plugin Directory

Changeset 2245023


Ignore:
Timestamp:
02/16/2020 05:54:50 AM (6 years ago)
Author:
keeross
Message:

Update to version 2.2.1 from GitHub

Location:
do-spaces-sync
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • do-spaces-sync/tags/2.2.1/dos_class.php

    r2245014 r2245023  
    7575  private function register_filters () {
    7676
    77     add_filter('wp_update_attachment_metadata', array($this, 'filter_wp_update_attachment_metadata'), 20, 1);
     77    add_filter('wp_generate_attachment_metadata', array($this, 'filter_wp_generate_attachment_metadata'), 20, 1);
    7878    // add_filter('wp_save_image_editor_file', array($this,'filter_wp_save_image_editor_file'), 10, 5 );
    7979    add_filter('wp_unique_filename', array($this, 'filter_wp_unique_filename') );
     
    127127
    128128  // FILTERS
    129   public function filter_wp_update_attachment_metadata ($metadata) {
     129  public function filter_wp_generate_attachment_metadata ($metadata) {
    130130
    131131    $paths = array();
  • do-spaces-sync/tags/2.2.1/loader.php

    r2245014 r2245023  
    44 * Plugin URI: https://github.com/keeross/DO-Spaces-Wordpress-Sync
    55 * Description: This WordPress plugin syncs your media library with DigitalOcean Spaces Container.
    6  * Version: 2.2.0
     6 * Version: 2.2.1
    77 * Author: keeross
    88 * Author URI: https://github.com/keeross
  • do-spaces-sync/tags/2.2.1/readme.txt

    r2245014 r2245023  
    55Requires at least: 4.6
    66Tested up to: 5.3.2
    7 Stable tag: 2.2.0
     7Stable tag: 2.2.1
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    4646
    4747== Changelog ==
     48
     49= 2.2.1 =
     50* Changed "upload done" hook to improve performance (https://github.com/keeross/DigitalOcean-Spaces-Sync/issues/34)
    4851
    4952= 2.2.0 =
  • do-spaces-sync/trunk/dos_class.php

    r2245014 r2245023  
    7575  private function register_filters () {
    7676
    77     add_filter('wp_update_attachment_metadata', array($this, 'filter_wp_update_attachment_metadata'), 20, 1);
     77    add_filter('wp_generate_attachment_metadata', array($this, 'filter_wp_generate_attachment_metadata'), 20, 1);
    7878    // add_filter('wp_save_image_editor_file', array($this,'filter_wp_save_image_editor_file'), 10, 5 );
    7979    add_filter('wp_unique_filename', array($this, 'filter_wp_unique_filename') );
     
    127127
    128128  // FILTERS
    129   public function filter_wp_update_attachment_metadata ($metadata) {
     129  public function filter_wp_generate_attachment_metadata ($metadata) {
    130130
    131131    $paths = array();
  • do-spaces-sync/trunk/loader.php

    r2245014 r2245023  
    44 * Plugin URI: https://github.com/keeross/DO-Spaces-Wordpress-Sync
    55 * Description: This WordPress plugin syncs your media library with DigitalOcean Spaces Container.
    6  * Version: 2.2.0
     6 * Version: 2.2.1
    77 * Author: keeross
    88 * Author URI: https://github.com/keeross
  • do-spaces-sync/trunk/readme.txt

    r2245014 r2245023  
    55Requires at least: 4.6
    66Tested up to: 5.3.2
    7 Stable tag: 2.2.0
     7Stable tag: 2.2.1
    88License: MIT
    99License URI: https://opensource.org/licenses/MIT
     
    4646
    4747== Changelog ==
     48
     49= 2.2.1 =
     50* Changed "upload done" hook to improve performance (https://github.com/keeross/DigitalOcean-Spaces-Sync/issues/34)
    4851
    4952= 2.2.0 =
Note: See TracChangeset for help on using the changeset viewer.