Changeset 3358769
- Timestamp:
- 09/09/2025 04:39:47 PM (5 months ago)
- Location:
- coding-bunny-image-optimizer-lite
- Files:
-
- 27 added
- 3 edited
-
tags/2.3.1 (added)
-
tags/2.3.1/admin (added)
-
tags/2.3.1/admin/admin-menu.php (added)
-
tags/2.3.1/admin/enqueue-scripts.php (added)
-
tags/2.3.1/admin/image-optimizer.php (added)
-
tags/2.3.1/admin/script-loader.php (added)
-
tags/2.3.1/admin/system-info.php (added)
-
tags/2.3.1/assets (added)
-
tags/2.3.1/assets/css (added)
-
tags/2.3.1/assets/css/styles.css (added)
-
tags/2.3.1/assets/images (added)
-
tags/2.3.1/assets/images/cbio-icon.svg (added)
-
tags/2.3.1/assets/js (added)
-
tags/2.3.1/assets/js/browser-convert.js (added)
-
tags/2.3.1/assets/js/scripts.js (added)
-
tags/2.3.1/coding-bunny-image-optimizer-lite.php (added)
-
tags/2.3.1/includes (added)
-
tags/2.3.1/includes/image-convert.php (added)
-
tags/2.3.1/includes/image-exif.php (added)
-
tags/2.3.1/includes/image-lazyload.php (added)
-
tags/2.3.1/includes/image-preload.php (added)
-
tags/2.3.1/includes/image-resize.php (added)
-
tags/2.3.1/includes/image-stats.php (added)
-
tags/2.3.1/index.php (added)
-
tags/2.3.1/languages (added)
-
tags/2.3.1/readme.txt (added)
-
tags/2.3.1/uninstall.php (added)
-
trunk/admin/image-optimizer.php (modified) (1 diff)
-
trunk/coding-bunny-image-optimizer-lite.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coding-bunny-image-optimizer-lite/trunk/admin/image-optimizer.php
r3353714 r3358769 25 25 26 26 if ($current_tab === 'conversion') { 27 $convert_format = isset( $_POST['convert_format'] ) ? sanitize_text_field( wp_unslash( $_POST['convert_format'] ) ) : 'webp'; 28 $enable_conversion = isset( $_POST['enable_conversion'] ) ? '1' : '0'; 29 $delete_original = isset( $_POST['delete_original'] ) ? '1' : '0'; 30 31 if ( ! $licence_active ) { 32 $remove_metadata = '0'; 33 } 34 35 update_option( 'cbio_convert_format', $convert_format ); 36 update_option( 'cbio_enable_conversion', $enable_conversion ); 37 update_option( 'cbio_delete_original', $delete_original ); 27 $convert_format = isset( $_POST['convert_format'] ) ? sanitize_text_field( wp_unslash( $_POST['convert_format'] ) ) : 'webp'; 28 $enable_conversion = isset( $_POST['enable_conversion'] ) ? '1' : '0'; 29 $delete_original = isset( $_POST['delete_original'] ) ? '1' : '0'; 30 $convert_method = isset( $_POST['convert_method'] ) ? sanitize_text_field( wp_unslash( $_POST['convert_method'] ) ) : 'server'; 31 32 if ( ! $licence_active ) { 33 $remove_metadata = '0'; 34 } 35 36 update_option( 'cbio_convert_format', $convert_format ); 37 update_option( 'cbio_enable_conversion', $enable_conversion ); 38 update_option( 'cbio_delete_original', $delete_original ); 39 update_option( 'cbio_convert_method', $convert_method ); 38 40 } 39 41 elseif ($current_tab === 'resizing') { -
coding-bunny-image-optimizer-lite/trunk/coding-bunny-image-optimizer-lite.php
r3353714 r3358769 5 5 * Plugin URI: https://coding-bunny.com/image-optimizer/ 6 6 * Description: Speed up your site! Compress and optimize images automatically. 7 * Version: 2. 2.07 * Version: 2.3.1 8 8 * Requires at least: 6.0 9 9 * Requires PHP: 8.0 … … 19 19 } 20 20 21 define( 'CBIO_LITE_VERSION', '2. 2.0' );21 define( 'CBIO_LITE_VERSION', '2.3.1' ); 22 22 define( 'CBIO_PLUGIN_FILE', __FILE__ ); 23 23 -
coding-bunny-image-optimizer-lite/trunk/readme.txt
r3353714 r3358769 4 4 Requires at least: 6.0 5 5 Tested up to: 6.8 6 Stable tag: 2. 2.06 Stable tag: 2.3.1 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 60 60 == Changelog == 61 61 62 = 2.3.1: 2025-09-04 = 63 * Fix: Plugin update system modified. Automatic update removed (PRO version). 64 * Fix: Fixed a problem with convert method settings (FREE version). 65 66 = 2.3.0: 2025-09-03 = 67 * New: Added Missing Images finder: find missing images that are linked to content but not present in the uploads folder (PRO version). 68 * Improvement: Added Watermark Preview (PRO version). 69 62 70 = 2.2.0: 2025-09-01 = 63 * Added the ability to convert new images to WebP via browser.64 * Added Watermark Preview (PRO version).65 * Added Padding option to the Watermark settings page (PRO version).71 * New: Added the ability to convert new images to WebP via browser. 72 * New: Added Watermark Preview (PRO version). 73 * New: Added Padding option to the Watermark settings page (PRO version). 66 74 67 75 = 2.1.0: 2025-08-28 = 68 * Added Alt Text Template (PRO version).69 * Added Force Overwrite Existing Alt Text (PRO version).76 * New: Added Alt Text Template (PRO version). 77 * New: Added Force Overwrite Existing Alt Text (PRO version). 70 78 71 79 = 2.0.0: 2025-08-25 =
Note: See TracChangeset
for help on using the changeset viewer.