Skip to content

Commit

Permalink
update to 1.3.3, fixed wrong config.php file used
Browse files Browse the repository at this point in the history
  • Loading branch information
OddOneOut committed Sep 23, 2014
1 parent d587ae8 commit a1e3a16
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion bwp-minify.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="http://code.google.com/p/minify/">Minify</a> 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
Expand Down
2 changes: 1 addition & 1 deletion includes/class-bwp-minify.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
6 changes: 3 additions & 3 deletions min/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
16 changes: 9 additions & 7 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down

0 comments on commit a1e3a16

Please sign in to comment.