Plugin Directory

Changeset 3358769


Ignore:
Timestamp:
09/09/2025 04:39:47 PM (5 months ago)
Author:
codingbunny
Message:

V.2.3.1

Location:
coding-bunny-image-optimizer-lite
Files:
27 added
3 edited

Legend:

Unmodified
Added
Removed
  • coding-bunny-image-optimizer-lite/trunk/admin/image-optimizer.php

    r3353714 r3358769  
    2525
    2626        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 );
    3840        }
    3941        elseif ($current_tab === 'resizing') {
  • coding-bunny-image-optimizer-lite/trunk/coding-bunny-image-optimizer-lite.php

    r3353714 r3358769  
    55 * Plugin URI:  https://coding-bunny.com/image-optimizer/
    66 * Description: Speed up your site! Compress and optimize images automatically.
    7  * Version:     2.2.0
     7 * Version:     2.3.1
    88 * Requires at least: 6.0
    99 * Requires PHP: 8.0
     
    1919}
    2020
    21 define( 'CBIO_LITE_VERSION', '2.2.0' );
     21define( 'CBIO_LITE_VERSION', '2.3.1' );
    2222define( 'CBIO_PLUGIN_FILE', __FILE__ );
    2323
  • coding-bunny-image-optimizer-lite/trunk/readme.txt

    r3353714 r3358769  
    44Requires at least: 6.0
    55Tested up to: 6.8
    6 Stable tag: 2.2.0
     6Stable tag: 2.3.1
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6060== Changelog ==
    6161
     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
    6270= 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).
    6674
    6775= 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).
    7078
    7179= 2.0.0: 2025-08-25 =
Note: See TracChangeset for help on using the changeset viewer.