Changeset 2245023
- Timestamp:
- 02/16/2020 05:54:50 AM (6 years ago)
- Location:
- do-spaces-sync
- Files:
-
- 6 edited
- 1 copied
-
tags/2.2.1 (copied) (copied from do-spaces-sync/trunk)
-
tags/2.2.1/dos_class.php (modified) (2 diffs)
-
tags/2.2.1/loader.php (modified) (1 diff)
-
tags/2.2.1/readme.txt (modified) (2 diffs)
-
trunk/dos_class.php (modified) (2 diffs)
-
trunk/loader.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
do-spaces-sync/tags/2.2.1/dos_class.php
r2245014 r2245023 75 75 private function register_filters () { 76 76 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); 78 78 // add_filter('wp_save_image_editor_file', array($this,'filter_wp_save_image_editor_file'), 10, 5 ); 79 79 add_filter('wp_unique_filename', array($this, 'filter_wp_unique_filename') ); … … 127 127 128 128 // FILTERS 129 public function filter_wp_ update_attachment_metadata ($metadata) {129 public function filter_wp_generate_attachment_metadata ($metadata) { 130 130 131 131 $paths = array(); -
do-spaces-sync/tags/2.2.1/loader.php
r2245014 r2245023 4 4 * Plugin URI: https://github.com/keeross/DO-Spaces-Wordpress-Sync 5 5 * Description: This WordPress plugin syncs your media library with DigitalOcean Spaces Container. 6 * Version: 2.2. 06 * Version: 2.2.1 7 7 * Author: keeross 8 8 * Author URI: https://github.com/keeross -
do-spaces-sync/tags/2.2.1/readme.txt
r2245014 r2245023 5 5 Requires at least: 4.6 6 6 Tested up to: 5.3.2 7 Stable tag: 2.2. 07 Stable tag: 2.2.1 8 8 License: MIT 9 9 License URI: https://opensource.org/licenses/MIT … … 46 46 47 47 == Changelog == 48 49 = 2.2.1 = 50 * Changed "upload done" hook to improve performance (https://github.com/keeross/DigitalOcean-Spaces-Sync/issues/34) 48 51 49 52 = 2.2.0 = -
do-spaces-sync/trunk/dos_class.php
r2245014 r2245023 75 75 private function register_filters () { 76 76 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); 78 78 // add_filter('wp_save_image_editor_file', array($this,'filter_wp_save_image_editor_file'), 10, 5 ); 79 79 add_filter('wp_unique_filename', array($this, 'filter_wp_unique_filename') ); … … 127 127 128 128 // FILTERS 129 public function filter_wp_ update_attachment_metadata ($metadata) {129 public function filter_wp_generate_attachment_metadata ($metadata) { 130 130 131 131 $paths = array(); -
do-spaces-sync/trunk/loader.php
r2245014 r2245023 4 4 * Plugin URI: https://github.com/keeross/DO-Spaces-Wordpress-Sync 5 5 * Description: This WordPress plugin syncs your media library with DigitalOcean Spaces Container. 6 * Version: 2.2. 06 * Version: 2.2.1 7 7 * Author: keeross 8 8 * Author URI: https://github.com/keeross -
do-spaces-sync/trunk/readme.txt
r2245014 r2245023 5 5 Requires at least: 4.6 6 6 Tested up to: 5.3.2 7 Stable tag: 2.2. 07 Stable tag: 2.2.1 8 8 License: MIT 9 9 License URI: https://opensource.org/licenses/MIT … … 46 46 47 47 == Changelog == 48 49 = 2.2.1 = 50 * Changed "upload done" hook to improve performance (https://github.com/keeross/DigitalOcean-Spaces-Sync/issues/34) 48 51 49 52 = 2.2.0 =
Note: See TracChangeset
for help on using the changeset viewer.