From 324778d2d00779a2c7dd9bbe5dbca90f76555490 Mon Sep 17 00:00:00 2001 From: tijmen Date: Tue, 25 Aug 2026 09:05:26 +0200 Subject: [PATCH 1/2] 3.8.0 --- readme.txt | 8 +++++++- src/class-tiny-plugin.php | 2 +- tiny-compress-images.php | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 6654259d..caa1e5db 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://tinypng.com/ Tags: compress images, compression, image size, page speed, performance Requires at least: 4.0 Tested up to: 7.1 -Stable tag: 3.7.0 +Stable tag: 3.8.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -174,6 +174,12 @@ A: You can upgrade to a paid account by adding your *Payment details* on your [a A: When the conversion feature is enabled (to convert images to AVIF or WebP), each image will use double the number of credits: one for compression and one for format conversion. == Changelog == += 3.8.0 = +* feat: option to create a backup of the original uploaded image +* fix: will not used setAccessible on newer PHP versions +* fix: correctly resets index when bulk optimizing +* fix: clears memoized metadata when it is updated + = 3.7.0 = * chore: migrated meta key from `tiny_compress_images` to `_tiny_compress_images` * feat: when original is set to be compressed, it will also compress images filtered by big_image_size_threshold. diff --git a/src/class-tiny-plugin.php b/src/class-tiny-plugin.php index a96b9f4f..ff0708e0 100644 --- a/src/class-tiny-plugin.php +++ b/src/class-tiny-plugin.php @@ -18,7 +18,7 @@ * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ class Tiny_Plugin extends Tiny_WP_Base { - const VERSION = '3.7.0'; + const VERSION = '3.8.0'; const MEDIA_COLUMN = self::NAME; const DATETIME_FORMAT = 'Y-m-d G:i:s'; diff --git a/tiny-compress-images.php b/tiny-compress-images.php index e8483e25..37ccc7e0 100644 --- a/tiny-compress-images.php +++ b/tiny-compress-images.php @@ -2,7 +2,7 @@ /** * Plugin Name: TinyPNG - JPEG, PNG & WebP image compression * Description: Speed up your website. Optimize your JPEG, PNG, and WebP images automatically with TinyPNG. - * Version: 3.7.0 + * Version: 3.8.0 * Author: TinyPNG * Author URI: https://tinypng.com * Text Domain: tiny-compress-images From 385d9d18e714ed180ba2ebf4e0ad5415e5076573 Mon Sep 17 00:00:00 2001 From: tijmen Date: Tue, 25 Aug 2026 09:17:20 +0200 Subject: [PATCH 2/2] fix typo --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index caa1e5db..994cdb81 100644 --- a/readme.txt +++ b/readme.txt @@ -176,7 +176,7 @@ A: When the conversion feature is enabled (to convert images to AVIF or WebP), e == Changelog == = 3.8.0 = * feat: option to create a backup of the original uploaded image -* fix: will not used setAccessible on newer PHP versions +* fix: will not use setAccessible on newer PHP versions * fix: correctly resets index when bulk optimizing * fix: clears memoized metadata when it is updated