From a1e3a163dd7d6b1f89f839cef19d5c58a9c362ef Mon Sep 17 00:00:00 2001 From: Khang Minh Date: Wed, 24 Sep 2014 00:35:53 +0700 Subject: [PATCH] update to 1.3.3, fixed wrong config.php file used --- bwp-minify.php | 2 +- includes/class-bwp-minify.php | 2 +- min/config.php | 6 +++--- readme.txt | 16 +++++++++------- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/bwp-minify.php b/bwp-minify.php index f39723e..8588d8a 100644 --- a/bwp-minify.php +++ b/bwp-minify.php @@ -3,7 +3,7 @@ Plugin Name: Better WordPress Minify Plugin URI: http://betterwp.net/wordpress-plugins/bwp-minify/ Description: Allows you to minify your CSS and JS files for faster page loading for visitors. This plugin uses the PHP library Minify and relies on WordPress's enqueueing system rather than the output buffer (will not break your website in most cases). This plugin is very customizable and easy to use. -Version: 1.3.2 +Version: 1.3.3 Text Domain: bwp-minify Domain Path: /languages/ Author: Khang Minh diff --git a/includes/class-bwp-minify.php b/includes/class-bwp-minify.php index 811a78c..e6433ad 100644 --- a/includes/class-bwp-minify.php +++ b/includes/class-bwp-minify.php @@ -143,7 +143,7 @@ class BWP_MINIFY extends BWP_FRAMEWORK_IMPROVED /** * Constructor */ - function __construct($version = '1.3.2') + function __construct($version = '1.3.3') { // Plugin's title $this->plugin_title = 'Better WordPress Minify'; diff --git a/min/config.php b/min/config.php index 33b4850..28b3ea8 100644 --- a/min/config.php +++ b/min/config.php @@ -3,14 +3,14 @@ $min_builderPassword = 'admin'; $min_errorLogger = false; $min_allowDebugFlag = false; -$min_cachePath = '/home/kminh/www/wpms.net/cache'; +$min_cachePath = dirname(dirname(__FILE__)) . '/cache'; $min_documentRoot = ''; $min_cacheFileLocking = true; $min_serveOptions['bubbleCssImports'] = true; -$min_serveOptions['maxAge'] = 7200; +$min_serveOptions['maxAge'] = 86400; $min_serveOptions['minApp']['groupsOnly'] = false; $min_symlinks = array(); $min_uploaderHoursBehind = 0; $min_libPath = dirname(__FILE__) . '/lib'; ini_set('zlib.output_compression', '0'); -// auto-generated on 2014-09-22 09:28:10 +// auto-generated on 2014-09-24 00:33:26 diff --git a/readme.txt b/readme.txt index f0a289a..a60e202 100644 --- a/readme.txt +++ b/readme.txt @@ -83,14 +83,16 @@ Please [help translate](http://betterwp.net/wordpress-tips/create-pot-file-using == Changelog == -= 1.3.2 = += 1.3.3 = + * Fixed an issue with wrong `min/config.php` file. -* Marked as WordPress 4.0 compatible -* When updating BWP Minify, friendly minify url should be turned off automatically if required rewrite rules are not found. An appropriate error message will be shown once to notify owners of the site so that they can take appropriate actions. -* When friendly minify url is enabled, rewrite rules for both Apache and Nginx will be shown. This is to add support for Nginx as a reverse proxy. -* Fixed a bug that makes the detector fail to commit logs, which results in empty enqueued file lists. -* Other minor fixes and enhancements. -* BWP Minify now requires WordPress 3.1.0 or later. += 1.3.2 = + * Marked as WordPress 4.0 compatible + * When updating BWP Minify, friendly minify url should be turned off automatically if required rewrite rules are not found. An appropriate error message will be shown once to notify owners of the site so that they can take appropriate actions. + * When friendly minify url is enabled, rewrite rules for both Apache and Nginx will be shown. This is to add support for Nginx as a reverse proxy. + * Fixed a bug that makes the detector fail to commit logs, which results in empty enqueued file lists. + * Other minor fixes and enhancements. + * BWP Minify now requires WordPress 3.1.0 or later. = 1.3.1 = * **Enhancements**