Changeset 2893752
- Timestamp:
- 04/04/2023 05:04:41 PM (3 years ago)
- Location:
- bubuku-media-library
- Files:
-
- 10 edited
- 1 copied
-
tags/1.0.4 (copied) (copied from bubuku-media-library/trunk)
-
tags/1.0.4/bubuku-media-library.php (modified) (1 diff)
-
tags/1.0.4/readme.txt (modified) (3 diffs)
-
tags/1.0.4/src/BML_assets.php (modified) (1 diff)
-
tags/1.0.4/src/BML_plugin.php (modified) (1 diff)
-
tags/1.0.4/src/BML_restapi.php (modified) (1 diff)
-
trunk/bubuku-media-library.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/BML_assets.php (modified) (1 diff)
-
trunk/src/BML_plugin.php (modified) (1 diff)
-
trunk/src/BML_restapi.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bubuku-media-library/tags/1.0.4/bubuku-media-library.php
r2809833 r2893752 5 5 * Requires at least: 5.2 6 6 * Requires PHP: 7.2 7 * Version: 1.0. 37 * Version: 1.0.4 8 8 * Author: Bubuku 9 9 * Author URI: https://www.bubuku.com/ -
bubuku-media-library/tags/1.0.4/readme.txt
r2809833 r2893752 3 3 Tags: images, media library, performance, Alt Text, seo 4 4 Requires at least: 5.2 5 Tested up to: 6. 15 Tested up to: 6.2 6 6 Requires PHP: 7.2 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 20 20 3. Red: For images of 500k or more, we assign a status of poor optimization. 21 21 22 Thanks to this plugin, we can see if images need to be optimized and improve page load and SEO of images 22 Thanks to this plugin, we can see if images need to be optimized and improve page load and SEO of images. 23 24 More information in Spanish about the plugin in the link [How to know if we have to reduce weight to the image and Alt SEO attribute](https://www.bubuku.com/como-saber-reducir-peso-imagen-atributo-alt-seo/) 23 25 24 26 == Installation == … … 33 35 34 36 == Changelog == 37 = 1.0.4 = 38 * Compatibility: WordPress 6.1 – WordPress 6.2 39 * Fix some PHP errors 40 * Add WordPress JavaScript dependencies 41 35 42 = 1.0.3 = 36 43 * Add a Bulk Action to calculate file size in WordPress admin -
bubuku-media-library/tags/1.0.4/src/BML_assets.php
r2809833 r2893752 30 30 BUBUKU_BML_PLUGIN_ASSETS_URL . '/css/admin.css', 31 31 false, 32 '1.0. 3'32 '1.0.4' 33 33 ); 34 34 35 $js_dependencies = ''; // ['jquery'];35 $js_dependencies = ['wp-blocks', 'wp-i18n', 'wp-element', 'wp-components', 'wp-editor', 'wp-compose']; // ['jquery']; 36 36 37 37 wp_enqueue_script( -
bubuku-media-library/tags/1.0.4/src/BML_plugin.php
r2809833 r2893752 24 24 define( 'BUBUKU_BML_PLUGIN_ASSETS_URL', BUBUKU_BML_PLUGIN_URL . '/assets' ); 25 25 define( 'BUBUKU_BML_PLUGIN_ENDPOINTS_URL', 'bbk_medialibrary/v1' ); 26 define( 'BUBUKU_BML_PLUGIN_VERSION', '1.0. 3' );26 define( 'BUBUKU_BML_PLUGIN_VERSION', '1.0.4' ); 27 27 define( 'BUBUKU_BML_PLUGIN_NONCE', wp_create_nonce('media-library'. BUBUKU_BML_PLUGIN_VERSION) ); 28 28 -
bubuku-media-library/tags/1.0.4/src/BML_restapi.php
r2809833 r2893752 33 33 'methods' => 'POST', 34 34 'callback' => array ($this, 'calculate_file_size'), 35 'args' => array('media_id'), 35 'args' => array( 36 'media_id' => array( 37 'required' => true, 38 'validate_callback' => function($param, $request, $key) { 39 return is_numeric( $param ); 40 } 41 ), 42 ), 36 43 'permission_callback' => '__return_true' 37 44 )); -
bubuku-media-library/trunk/bubuku-media-library.php
r2809833 r2893752 5 5 * Requires at least: 5.2 6 6 * Requires PHP: 7.2 7 * Version: 1.0. 37 * Version: 1.0.4 8 8 * Author: Bubuku 9 9 * Author URI: https://www.bubuku.com/ -
bubuku-media-library/trunk/readme.txt
r2809833 r2893752 3 3 Tags: images, media library, performance, Alt Text, seo 4 4 Requires at least: 5.2 5 Tested up to: 6. 15 Tested up to: 6.2 6 6 Requires PHP: 7.2 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 20 20 3. Red: For images of 500k or more, we assign a status of poor optimization. 21 21 22 Thanks to this plugin, we can see if images need to be optimized and improve page load and SEO of images 22 Thanks to this plugin, we can see if images need to be optimized and improve page load and SEO of images. 23 24 More information in Spanish about the plugin in the link [How to know if we have to reduce weight to the image and Alt SEO attribute](https://www.bubuku.com/como-saber-reducir-peso-imagen-atributo-alt-seo/) 23 25 24 26 == Installation == … … 33 35 34 36 == Changelog == 37 = 1.0.4 = 38 * Compatibility: WordPress 6.1 – WordPress 6.2 39 * Fix some PHP errors 40 * Add WordPress JavaScript dependencies 41 35 42 = 1.0.3 = 36 43 * Add a Bulk Action to calculate file size in WordPress admin -
bubuku-media-library/trunk/src/BML_assets.php
r2809833 r2893752 30 30 BUBUKU_BML_PLUGIN_ASSETS_URL . '/css/admin.css', 31 31 false, 32 '1.0. 3'32 '1.0.4' 33 33 ); 34 34 35 $js_dependencies = ''; // ['jquery'];35 $js_dependencies = ['wp-blocks', 'wp-i18n', 'wp-element', 'wp-components', 'wp-editor', 'wp-compose']; // ['jquery']; 36 36 37 37 wp_enqueue_script( -
bubuku-media-library/trunk/src/BML_plugin.php
r2809833 r2893752 24 24 define( 'BUBUKU_BML_PLUGIN_ASSETS_URL', BUBUKU_BML_PLUGIN_URL . '/assets' ); 25 25 define( 'BUBUKU_BML_PLUGIN_ENDPOINTS_URL', 'bbk_medialibrary/v1' ); 26 define( 'BUBUKU_BML_PLUGIN_VERSION', '1.0. 3' );26 define( 'BUBUKU_BML_PLUGIN_VERSION', '1.0.4' ); 27 27 define( 'BUBUKU_BML_PLUGIN_NONCE', wp_create_nonce('media-library'. BUBUKU_BML_PLUGIN_VERSION) ); 28 28 -
bubuku-media-library/trunk/src/BML_restapi.php
r2809833 r2893752 33 33 'methods' => 'POST', 34 34 'callback' => array ($this, 'calculate_file_size'), 35 'args' => array('media_id'), 35 'args' => array( 36 'media_id' => array( 37 'required' => true, 38 'validate_callback' => function($param, $request, $key) { 39 return is_numeric( $param ); 40 } 41 ), 42 ), 36 43 'permission_callback' => '__return_true' 37 44 ));
Note: See TracChangeset
for help on using the changeset viewer.