Changeset 3197618
- Timestamp:
- 11/26/2024 05:40:23 PM (14 months ago)
- Location:
- imsanity
- Files:
-
- 8 edited
- 1 copied
-
tags/2.8.6 (copied) (copied from imsanity/trunk)
-
tags/2.8.6/changelog.txt (modified) (1 diff)
-
tags/2.8.6/imsanity.php (modified) (2 diffs)
-
tags/2.8.6/readme.txt (modified) (3 diffs)
-
tags/2.8.6/settings.php (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/imsanity.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/settings.php (modified) (1 diff)
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 1 6 = 2.8.5 = 2 7 * bumped WP tested version -
imsanity/tags/2.8.6/imsanity.php
r3186675 r3197618 15 15 Author: Exactly WWW 16 16 Domain Path: /languages 17 Version: 2.8. 517 Version: 2.8.6 18 18 Requires at least: 6.4 19 19 Requires PHP: 7.4 … … 26 26 } 27 27 28 define( 'IMSANITY_VERSION', '2.8. 5' );28 define( 'IMSANITY_VERSION', '2.8.6' ); 29 29 define( 'IMSANITY_SCHEMA_VERSION', '1.1' ); 30 30 -
imsanity/tags/2.8.6/readme.txt
r3186675 r3197618 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.4 8 Stable tag: 2.8. 58 Stable tag: 2.8.6 9 9 License: GPLv3 10 10 … … 109 109 == Changelog == 110 110 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 111 116 = 2.8.5 = 117 *Release Date - November 12, 2024* 118 112 119 * bumped WP tested version 113 120 * changed: improve JSON handling/efficiency 114 121 115 122 = 2.8.4 = 123 *Release Date - April 29, 2024* 124 116 125 * bumped WP tested version and PHP minimum 117 126 118 127 = 2.8.3 = 128 *Release Date - April 23, 2024* 129 119 130 * changed: use updated WP coding standards 120 131 * fixed: PHP 8 error trying to do math with string values 121 132 122 133 = 2.8.2 = 134 *Release Date - October 5, 2022* 135 123 136 * fixed: mime type error when filename in attachment metadata is incorrect 124 137 125 138 = 2.8.1 = 139 *Release Date - June 16, 2022* 140 126 141 * changed: escape and sanitize more things 127 142 * changed: tighten PHPCS rules used for pre-release testing 128 143 129 144 = 2.8.0 = 145 *Release Date - May 18, 2022* 146 130 147 * added: support for resizing WebP images via ImageMagick 131 148 * changed: update attachment file size to keep WP 6.0 metadata in sync … … 134 151 135 152 = 2.7.2 = 153 *Release Date - June 3, 2021* 154 136 155 * fixed: delete originals might remove full-size version in rare cases 137 156 * fixed: error thrown for image that is 1 pixel larger than max dimensions 138 157 139 158 = 2.7.1 = 159 *Release Date - November 24, 2020* 160 140 161 * changed: clarify text for queue reset button 141 162 * changed: Delete Originals function in bulk/selective resizer will clean metadata if original image is already gone 142 163 143 164 = 2.7.0 = 165 *Release Date - November 18, 2020* 166 144 167 * changed: bulk resizer will resize all images with no limits, use list mode for selective resizing 145 168 * added: see current dimensions and resize individual images in Media Library list mode -
imsanity/tags/2.8.6/settings.php
r2969420 r3197618 561 561 * @return int The proper size to use for scaling originals. 562 562 */ 563 function imsanity_adjust_default_threshold( $size, $imagesize , $file) {563 function imsanity_adjust_default_threshold( $size, $imagesize = array(), $file = '' ) { 564 564 if ( false !== strpos( $file, 'noresize' ) ) { 565 565 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 1 6 = 2.8.5 = 2 7 * bumped WP tested version -
imsanity/trunk/imsanity.php
r3186675 r3197618 15 15 Author: Exactly WWW 16 16 Domain Path: /languages 17 Version: 2.8. 517 Version: 2.8.6 18 18 Requires at least: 6.4 19 19 Requires PHP: 7.4 … … 26 26 } 27 27 28 define( 'IMSANITY_VERSION', '2.8. 5' );28 define( 'IMSANITY_VERSION', '2.8.6' ); 29 29 define( 'IMSANITY_SCHEMA_VERSION', '1.1' ); 30 30 -
imsanity/trunk/readme.txt
r3186675 r3197618 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.4 8 Stable tag: 2.8. 58 Stable tag: 2.8.6 9 9 License: GPLv3 10 10 … … 109 109 == Changelog == 110 110 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 111 116 = 2.8.5 = 117 *Release Date - November 12, 2024* 118 112 119 * bumped WP tested version 113 120 * changed: improve JSON handling/efficiency 114 121 115 122 = 2.8.4 = 123 *Release Date - April 29, 2024* 124 116 125 * bumped WP tested version and PHP minimum 117 126 118 127 = 2.8.3 = 128 *Release Date - April 23, 2024* 129 119 130 * changed: use updated WP coding standards 120 131 * fixed: PHP 8 error trying to do math with string values 121 132 122 133 = 2.8.2 = 134 *Release Date - October 5, 2022* 135 123 136 * fixed: mime type error when filename in attachment metadata is incorrect 124 137 125 138 = 2.8.1 = 139 *Release Date - June 16, 2022* 140 126 141 * changed: escape and sanitize more things 127 142 * changed: tighten PHPCS rules used for pre-release testing 128 143 129 144 = 2.8.0 = 145 *Release Date - May 18, 2022* 146 130 147 * added: support for resizing WebP images via ImageMagick 131 148 * changed: update attachment file size to keep WP 6.0 metadata in sync … … 134 151 135 152 = 2.7.2 = 153 *Release Date - June 3, 2021* 154 136 155 * fixed: delete originals might remove full-size version in rare cases 137 156 * fixed: error thrown for image that is 1 pixel larger than max dimensions 138 157 139 158 = 2.7.1 = 159 *Release Date - November 24, 2020* 160 140 161 * changed: clarify text for queue reset button 141 162 * changed: Delete Originals function in bulk/selective resizer will clean metadata if original image is already gone 142 163 143 164 = 2.7.0 = 165 *Release Date - November 18, 2020* 166 144 167 * changed: bulk resizer will resize all images with no limits, use list mode for selective resizing 145 168 * added: see current dimensions and resize individual images in Media Library list mode -
imsanity/trunk/settings.php
r2969420 r3197618 561 561 * @return int The proper size to use for scaling originals. 562 562 */ 563 function imsanity_adjust_default_threshold( $size, $imagesize , $file) {563 function imsanity_adjust_default_threshold( $size, $imagesize = array(), $file = '' ) { 564 564 if ( false !== strpos( $file, 'noresize' ) ) { 565 565 return false;
Note: See TracChangeset
for help on using the changeset viewer.