Asset CleanUp: Page Speed Booster - Version 1.3.3.2

Version Description

  • Bug Fix: When pages were updated, jQuery Migrate and Comment Reply were loaded back (when they were marked for unloading)
  • Bug Fix: Sometimes, WP Rocket caching was not fully cleared because of an Asset CleanUp hook that interfered with it
Download this release

Release Info

Developer gabelivan
Plugin Icon 128x128 Asset CleanUp: Page Speed Booster
Version 1.3.3.2
Comparing to
See all releases

Code changes from version 1.3.3.1 to 1.3.3.2

Files changed (2) hide show
  1. readme.txt +8 -4
  2. wpacu.php +2 -2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: pagespeed, page speed, dequeue, minify css, performance
4
  Donate link: https://gabelivan.com/items/wp-asset-cleanup-pro/?utm_source=wp_org_lite&utm_medium=donate
5
  Requires at least: 4.4
6
  Tested up to: 5.2.2
7
- Stable tag: 1.3.3.1
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
@@ -154,15 +154,19 @@ With the recently released "Test Mode" feature, you can safely unload assets on
154
  4. Homepage CSS & JS Management (List sorted by location)
155
 
156
  == Changelog ==
 
 
 
 
157
  = 1.3.3.1 =
158
- * Option to unload on all pages (site-wid) the Dashicons for non logged-in users
159
  * Load it on this page (exception) is preserved if chosen before any bulk unload
160
  * Better accuracy in getting the total unloaded assets
161
  * Used transient to store total unloaded assets from the SQL query (it's slow on some servers)
162
- * Improved "Plugin Review" notice to use less queries to determine if it will be shown or not
163
  * On plugin activation, mark Checkout/Cart pages from WooCommerce & EDD to not apply plugin combine/minify options
164
  * Minify/Combine CSS/JS files option from Asset CleanUp will be unavailable if Fast Velocity Minify is active
165
- * Fixed undefined error related to ignore "children" option
166
  * Implemented WordPress File System for dealing with read/write cached CSS/JS files
167
  * Improved "CSS/JS Load Manager" pages overview layout
168
  * Disable oEmbeds Feature; Option to update "Assets List Layout" while managing the assets
4
  Donate link: https://gabelivan.com/items/wp-asset-cleanup-pro/?utm_source=wp_org_lite&utm_medium=donate
5
  Requires at least: 4.4
6
  Tested up to: 5.2.2
7
+ Stable tag: 1.3.3.2
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl.html
10
 
154
  4. Homepage CSS & JS Management (List sorted by location)
155
 
156
  == Changelog ==
157
+ = 1.3.3.2 =
158
+ * Bug Fix: When pages were updated, jQuery Migrate and Comment Reply were loaded back (when they were marked for unloading)
159
+ * Bug Fix: Sometimes, WP Rocket caching was not fully cleared because of an Asset CleanUp hook that interfered with it
160
+
161
  = 1.3.3.1 =
162
+ * Option to unload on all pages (site-wide) the Dashicons for non-logged-in users
163
  * Load it on this page (exception) is preserved if chosen before any bulk unload
164
  * Better accuracy in getting the total unloaded assets
165
  * Used transient to store total unloaded assets from the SQL query (it's slow on some servers)
166
+ * Improved "Plugin Review" notice to use fewer queries to determine if it will be shown or not
167
  * On plugin activation, mark Checkout/Cart pages from WooCommerce & EDD to not apply plugin combine/minify options
168
  * Minify/Combine CSS/JS files option from Asset CleanUp will be unavailable if Fast Velocity Minify is active
169
+ * Fixed undefined error related to ignoring "children" option
170
  * Implemented WordPress File System for dealing with read/write cached CSS/JS files
171
  * Improved "CSS/JS Load Manager" pages overview layout
172
  * Disable oEmbeds Feature; Option to update "Assets List Layout" while managing the assets
wpacu.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * Plugin Name: Asset CleanUp: Page Speed Booster
4
  * Plugin URI: https://wordpress.org/plugins/wp-asset-clean-up/
5
- * Version: 1.3.3.1
6
  * Description: Unload Chosen Scripts & Styles from Posts/Pages to reduce HTTP Requests, Combine/Minify CSS/JS files
7
  * Author: Gabriel Livan
8
  * Author URI: http://gabelivan.com/
@@ -10,7 +10,7 @@
10
  * Domain Path: /languages
11
  */
12
 
13
- define('WPACU_PLUGIN_VERSION', '1.3.3.1');
14
 
15
  // Exit if accessed directly
16
  if (! defined('ABSPATH')) {
2
  /*
3
  * Plugin Name: Asset CleanUp: Page Speed Booster
4
  * Plugin URI: https://wordpress.org/plugins/wp-asset-clean-up/
5
+ * Version: 1.3.3.2
6
  * Description: Unload Chosen Scripts & Styles from Posts/Pages to reduce HTTP Requests, Combine/Minify CSS/JS files
7
  * Author: Gabriel Livan
8
  * Author URI: http://gabelivan.com/
10
  * Domain Path: /languages
11
  */
12
 
13
+ define('WPACU_PLUGIN_VERSION', '1.3.3.2');
14
 
15
  // Exit if accessed directly
16
  if (! defined('ABSPATH')) {