Skip to content

Commit

Permalink
Merge branch 'release/141205'
Browse files Browse the repository at this point in the history
  • Loading branch information
raamdev committed Dec 5, 2014
2 parents 7c0f0e4 + a62b98d commit 283c524
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion quick-cache/includes/advanced-cache.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
*/
if(defined('WP_DEBUG') && WP_DEBUG)
require_once dirname(QUICK_CACHE_PLUGIN_FILE).'/includes/share.php';
else if(@require_once(dirname(QUICK_CACHE_PLUGIN_FILE).'/includes/share.php') === FALSE)
else if((@require_once(dirname(QUICK_CACHE_PLUGIN_FILE).'/includes/share.php')) === FALSE)
return; // Unable to find class dependency. Fail softly.

/**
Expand Down
2 changes: 1 addition & 1 deletion quick-cache/includes/share.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ abstract class share // Shared between {@link advanced_cache} and {@link plugin}
*
* @var string Current version of the software.
*/
public $version = '141204';
public $version = '141205';

/**
* Plugin slug; based on `__NAMESPACE__`.
Expand Down
6 changes: 3 additions & 3 deletions quick-cache/includes/translations/quick-cache.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# This file is distributed under the same license as the Quick Cache package.
msgid ""
msgstr ""
"Project-Id-Version: Quick Cache 141204\n"
"Project-Id-Version: Quick Cache 141205\n"
"Report-Msgid-Bugs-To: http://wordpress.org/tag/quick-cache\n"
"POT-Creation-Date: 2014-12-05 02:46:25+00:00\n"
"POT-Creation-Date: 2014-12-05 05:37:06+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Expand Down Expand Up @@ -1142,7 +1142,7 @@ msgstr ""
msgid "<strong>Quick Cache:</strong> detected a new version of itself. Recompiling w/ latest version... wiping the cache... all done :-)"
msgstr ""

#. #-#-#-#-# quick-cache.pot (Quick Cache 141204) #-#-#-#-#
#. #-#-#-#-# quick-cache.pot (Quick Cache 141205) #-#-#-#-#
#. Plugin Name of the plugin/theme
#: quick-cache.inc.php:551 quick-cache.inc.php:567
msgid "Quick Cache"
Expand Down
2 changes: 1 addition & 1 deletion quick-cache/quick-cache.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
Version: 141204
Version: 141205
Text Domain: quick-cache
Plugin Name: Quick Cache
Network: true
Expand Down
6 changes: 3 additions & 3 deletions quick-cache/readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=== Quick Cache (Speed Without Compromise) ===

Stable tag: 141204
Stable tag: 141205
Requires at least: 3.7
Tested up to: 4.0.1
Text Domain: quick-cache
Expand Down Expand Up @@ -318,13 +318,13 @@ Released under the terms of the [GNU General Public License](http://www.gnu.org/

Requires PHP v5.3+. The latest version of Quick Cache is a complete rewrite (OOP design). Faster! and even more dependable. NOTE: the free version of Quick Cache (this new LITE version); while it remains fully functional and is more-than-adequate for most sites; is now limited in some ways. The following advanced features from the previous release are no longer available in the lite version: a custom MD5 Version Salt, custom Exclusion Patterns, a Clear Cache button in admin bar. These, and other features; are now available only in the pro version of the plugin. For further details, please see: <http://www.websharks-inc.com/product/quick-cache/>.

= v141204 =
= v141205 =

- **Quick Cache is changing its name to ZenCache!** See [the blog post](http://www.websharks-inc.com/post/quick-cache-is-changing-its-name/) for full details.

== Changelog ==

= v141204 =
= v141205 =

- **Bug Fix**: Addressed another issue with "Fatal Error: 'Unable to clear dir'" messages by adding new blocking methods for cache lock and unlock, making it so that cache writes (including clearing, purging, wiping) all gain an exclusive lock on the cache directory while work is underway. Props @jaswsinc. See [#288](https://github.com/websharks/quick-cache/issues/288).
- **Bug Fix**: Fixed a Home Page clearing bug that arose in the previous release as the result of an extra leading `\/` in one of our regex patterns. Props @jaswsinc. See [#365](https://github.com/websharks/quick-cache/issues/365).
Expand Down

0 comments on commit 283c524

Please sign in to comment.