Plugin Directory

Changeset 3197618


Ignore:
Timestamp:
11/26/2024 05:40:23 PM (14 months ago)
Author:
nosilver4u
Message:

tagging and releasing 2.8.6

Location:
imsanity
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • imsanity/tags/2.8.6/changelog.txt

    r3186675 r3197618  
     1= 2.8.6 =
     2*Release Date - November 26, 2024*
     3
     4* fixed: fatal error if other plugins run big_image_size_threshold filter with too few arguments
     5
    16= 2.8.5 =
    27* bumped WP tested version
  • imsanity/tags/2.8.6/imsanity.php

    r3186675 r3197618  
    1515Author: Exactly WWW
    1616Domain Path: /languages
    17 Version: 2.8.5
     17Version: 2.8.6
    1818Requires at least: 6.4
    1919Requires PHP: 7.4
     
    2626}
    2727
    28 define( 'IMSANITY_VERSION', '2.8.5' );
     28define( 'IMSANITY_VERSION', '2.8.6' );
    2929define( 'IMSANITY_SCHEMA_VERSION', '1.1' );
    3030
  • imsanity/tags/2.8.6/readme.txt

    r3186675 r3197618  
    66Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 2.8.5
     8Stable tag: 2.8.6
    99License: GPLv3
    1010
     
    109109== Changelog ==
    110110
     111= 2.8.6 =
     112*Release Date - November 26, 2024*
     113
     114* fixed: fatal error if other plugins run big_image_size_threshold filter with too few arguments
     115
    111116= 2.8.5 =
     117*Release Date - November 12, 2024*
     118
    112119* bumped WP tested version
    113120* changed: improve JSON handling/efficiency
    114121
    115122= 2.8.4 =
     123*Release Date - April 29, 2024*
     124
    116125* bumped WP tested version and PHP minimum
    117126
    118127= 2.8.3 =
     128*Release Date - April 23, 2024*
     129
    119130* changed: use updated WP coding standards
    120131* fixed: PHP 8 error trying to do math with string values
    121132
    122133= 2.8.2 =
     134*Release Date - October 5, 2022*
     135
    123136* fixed: mime type error when filename in attachment metadata is incorrect
    124137
    125138= 2.8.1 =
     139*Release Date - June 16, 2022*
     140
    126141* changed: escape and sanitize more things
    127142* changed: tighten PHPCS rules used for pre-release testing
    128143
    129144= 2.8.0 =
     145*Release Date - May 18, 2022*
     146
    130147* added: support for resizing WebP images via ImageMagick
    131148* changed: update attachment file size to keep WP 6.0 metadata in sync
     
    134151
    135152= 2.7.2 =
     153*Release Date - June 3, 2021*
     154
    136155* fixed: delete originals might remove full-size version in rare cases
    137156* fixed: error thrown for image that is 1 pixel larger than max dimensions
    138157
    139158= 2.7.1 =
     159*Release Date - November 24, 2020*
     160
    140161* changed: clarify text for queue reset button
    141162* changed: Delete Originals function in bulk/selective resizer will clean metadata if original image is already gone
    142163
    143164= 2.7.0 =
     165*Release Date - November 18, 2020*
     166
    144167* changed: bulk resizer will resize all images with no limits, use list mode for selective resizing
    145168* added: see current dimensions and resize individual images in Media Library list mode
  • imsanity/tags/2.8.6/settings.php

    r2969420 r3197618  
    561561 * @return int The proper size to use for scaling originals.
    562562 */
    563 function imsanity_adjust_default_threshold( $size, $imagesize, $file ) {
     563function imsanity_adjust_default_threshold( $size, $imagesize = array(), $file = '' ) {
    564564    if ( false !== strpos( $file, 'noresize' ) ) {
    565565        return false;
  • imsanity/trunk/changelog.txt

    r3186675 r3197618  
     1= 2.8.6 =
     2*Release Date - November 26, 2024*
     3
     4* fixed: fatal error if other plugins run big_image_size_threshold filter with too few arguments
     5
    16= 2.8.5 =
    27* bumped WP tested version
  • imsanity/trunk/imsanity.php

    r3186675 r3197618  
    1515Author: Exactly WWW
    1616Domain Path: /languages
    17 Version: 2.8.5
     17Version: 2.8.6
    1818Requires at least: 6.4
    1919Requires PHP: 7.4
     
    2626}
    2727
    28 define( 'IMSANITY_VERSION', '2.8.5' );
     28define( 'IMSANITY_VERSION', '2.8.6' );
    2929define( 'IMSANITY_SCHEMA_VERSION', '1.1' );
    3030
  • imsanity/trunk/readme.txt

    r3186675 r3197618  
    66Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 2.8.5
     8Stable tag: 2.8.6
    99License: GPLv3
    1010
     
    109109== Changelog ==
    110110
     111= 2.8.6 =
     112*Release Date - November 26, 2024*
     113
     114* fixed: fatal error if other plugins run big_image_size_threshold filter with too few arguments
     115
    111116= 2.8.5 =
     117*Release Date - November 12, 2024*
     118
    112119* bumped WP tested version
    113120* changed: improve JSON handling/efficiency
    114121
    115122= 2.8.4 =
     123*Release Date - April 29, 2024*
     124
    116125* bumped WP tested version and PHP minimum
    117126
    118127= 2.8.3 =
     128*Release Date - April 23, 2024*
     129
    119130* changed: use updated WP coding standards
    120131* fixed: PHP 8 error trying to do math with string values
    121132
    122133= 2.8.2 =
     134*Release Date - October 5, 2022*
     135
    123136* fixed: mime type error when filename in attachment metadata is incorrect
    124137
    125138= 2.8.1 =
     139*Release Date - June 16, 2022*
     140
    126141* changed: escape and sanitize more things
    127142* changed: tighten PHPCS rules used for pre-release testing
    128143
    129144= 2.8.0 =
     145*Release Date - May 18, 2022*
     146
    130147* added: support for resizing WebP images via ImageMagick
    131148* changed: update attachment file size to keep WP 6.0 metadata in sync
     
    134151
    135152= 2.7.2 =
     153*Release Date - June 3, 2021*
     154
    136155* fixed: delete originals might remove full-size version in rare cases
    137156* fixed: error thrown for image that is 1 pixel larger than max dimensions
    138157
    139158= 2.7.1 =
     159*Release Date - November 24, 2020*
     160
    140161* changed: clarify text for queue reset button
    141162* changed: Delete Originals function in bulk/selective resizer will clean metadata if original image is already gone
    142163
    143164= 2.7.0 =
     165*Release Date - November 18, 2020*
     166
    144167* changed: bulk resizer will resize all images with no limits, use list mode for selective resizing
    145168* added: see current dimensions and resize individual images in Media Library list mode
  • imsanity/trunk/settings.php

    r2969420 r3197618  
    561561 * @return int The proper size to use for scaling originals.
    562562 */
    563 function imsanity_adjust_default_threshold( $size, $imagesize, $file ) {
     563function imsanity_adjust_default_threshold( $size, $imagesize = array(), $file = '' ) {
    564564    if ( false !== strpos( $file, 'noresize' ) ) {
    565565        return false;
Note: See TracChangeset for help on using the changeset viewer.