You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.txt
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,10 @@
1
1
== Changelog ==
2
2
3
-
= 1.3.20 =
4
-
* Added control to disable resizing images.
3
+
= 1.4.0 =
4
+
* Advanced setting: Auto Resize (auto_resize). When disabled, img src is set directly to the Gumlet URL instead of the placeholder pixel (no viewport-based resize via gumlet.js for those tags).
5
+
* Fix DOM parsing for img/source tags: do not entity-encode the whole tag before loadHTML (was preventing any img from being found).
5
6
* Support SVG URLs in replace_image_url.
7
+
* Normalize JSON-style escapes in fragments (wp_unslash, \/) before parsing.
6
8
7
9
= 1.3.19 =
8
10
* Fix fatal errors related to PHP 8.4 compatibility.
* Description: A WordPress plugin to automatically load all your existing (and future) WordPress images via the <a href="http://www.gumlet.com" target="_blank">Gumlet</a> service for smaller, faster, and better looking images.
14
-
* Version: 1.3.20
14
+
* Version: 1.4.0
15
15
* Author: Gumlet
16
16
* Text Domain: gumlet
17
17
* Author URI: https://www.gumlet.com
@@ -30,6 +30,7 @@
30
30
31
31
include('includes/compability.php');
32
32
include('includes/logger.php');
33
+
include('includes/gumlet-html-fragment.php');
33
34
include('includes/class-gumlet.php');
34
35
include('includes/options-page.php');
35
36
@@ -51,7 +52,7 @@ function gumlet_plugin_activate()
<p style="color: #666"><?phpesc_html_e('When enabled, images use a placeholder and Gumlet.js resizes per viewport (including lazy loading, if enabled). When disabled, Gumlet.js is not loaded: the image src is set directly to the Gumlet URL (no placeholder and no lazy loading).', 'gumlet'); ?></p>
0 commit comments