Skip to content

Commit b17b1d5

Browse files
Merge branch 'master' of github.com:wcreateweb/wordpress-plugin into integration-tests-playwright
2 parents 383c17f + 9c6da96 commit b17b1d5

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

readme.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://tinypng.com/
44
Tags: compress images, compression, image size, page speed, performance
55
Requires at least: 3.4
66
Tested up to: 6.7
7-
Stable tag: 3.4.4
7+
Stable tag: 3.4.6
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -131,6 +131,12 @@ A: Yes! After installing the plugin, go to *Media > Bulk Optimization*, and clic
131131
A: You can upgrade to a paid account by adding your *Payment details* on your [account dashboard](https://tinypng.com/dashboard/api). Additional compressions above 500 will then be charged at the end of each month as a one-time fee.
132132

133133
== Changelog ==
134+
= 3.4.6 =
135+
* Error resolved where Tiny_Helpers was not available
136+
137+
= 3.4.5 =
138+
* Error when mb_strimwidth is not available resolved
139+
134140
= 3.4.4 =
135141
* CSRF fix, added nonce check
136142

src/class-tiny-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
1919
*/
2020
class Tiny_Plugin extends Tiny_WP_Base {
21-
const VERSION = '3.4.3';
21+
const VERSION = '3.4.6';
2222
const MEDIA_COLUMN = self::NAME;
2323
const DATETIME_FORMAT = 'Y-m-d G:i:s';
2424

tiny-compress-images.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
/**
33
* Plugin Name: TinyPNG - JPEG, PNG & WebP image compression
44
* Description: Speed up your website. Optimize your JPEG, PNG, and WebP images automatically with TinyPNG.
5-
* Version: 3.4.4
5+
* Version: 3.4.6
66
* Author: TinyPNG
77
* Author URI: https://tinypng.com
88
* Text Domain: tiny-compress-images
99
* License: GPLv2 or later
1010
*/
1111

1212
require dirname( __FILE__ ) . '/src/config/class-tiny-config.php';
13+
require dirname( __FILE__ ) . '/src/class-tiny-helpers.php';
1314
require dirname( __FILE__ ) . '/src/class-tiny-php.php';
1415
require dirname( __FILE__ ) . '/src/class-tiny-wp-base.php';
1516
require dirname( __FILE__ ) . '/src/class-tiny-exception.php';

0 commit comments

Comments
 (0)