Skip to content

Commit

Permalink
Merge tag '141229' into 000000-dev
Browse files Browse the repository at this point in the history
Tagging v141229
  • Loading branch information
raamdev committed Dec 31, 2014
2 parents 66cdaed + 2c564e5 commit 1eeb6a7
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 20 deletions.
2 changes: 1 addition & 1 deletion quick-cache-pro/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 = '141205';
public $version = '141231';

/**
* Plugin slug; based on `__NAMESPACE__`.
Expand Down
32 changes: 16 additions & 16 deletions quick-cache-pro/includes/translations/quick-cache-pro.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 Pro package.
msgid ""
msgstr ""
"Project-Id-Version: Quick Cache Pro 141205\n"
"Project-Id-Version: Quick Cache Pro 141231\n"
"Report-Msgid-Bugs-To: http://wordpress.org/tag/quick-cache-pro\n"
"POT-Creation-Date: 2014-12-05 05:37:43+00:00\n"
"POT-Creation-Date: 2014-12-31 22:35:16+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 @@ -1194,65 +1194,65 @@ msgstr ""
msgid "Unable to determine cache directory location."
msgstr ""

#: includes/share.php:1507 includes/share.php:1616
#: includes/share.php:1507 includes/share.php:1618
msgid "The `options` property w/ a `cache_max_age` key is not defined in this class."
msgstr ""

#: includes/share.php:1531
#: includes/share.php:1533
msgid "Unable to delete files. Rename failure on directory: `%1$s`."
msgstr ""

#: includes/share.php:1548 includes/share.php:1676 includes/share.php:1749
#: includes/share.php:1550 includes/share.php:1680 includes/share.php:1755
msgid "Unable to delete file: `%1$s`."
msgstr ""

#: includes/share.php:1554 includes/share.php:1682 includes/share.php:1755
#: includes/share.php:1556 includes/share.php:1686 includes/share.php:1761
msgid "Unable to delete dir: `%1$s`."
msgstr ""

#: includes/share.php:1561 includes/share.php:1659 includes/share.php:1689
#: includes/share.php:1563 includes/share.php:1663 includes/share.php:1693
msgid "Unable to delete files. Rename failure on tmp directory: `%1$s`."
msgstr ""

#: includes/share.php:1741 includes/share.php:1762
#: includes/share.php:1747 includes/share.php:1768
msgid "Unable to delete all files/dirs. Rename failure on tmp directory: `%1$s`."
msgstr ""

#: includes/share.php:1767
#: includes/share.php:1773
msgid "Unable to delete directory: `%1$s`."
msgstr ""

#: includes/share.php:1799
#: includes/share.php:1808
msgid "Unable to find the wp-config.php file."
msgstr ""

#: includes/share.php:1809
#: includes/share.php:1824
msgid "No writable tmp directory."
msgstr ""

#: includes/share.php:1814
#: includes/share.php:1829
msgid "Unable to obtain an exclusive lock."
msgstr ""

#: includes/share.php:1864
#: includes/share.php:1882
msgid "%1$s file"
msgid_plural "%1$s files"
msgstr[0] ""
msgstr[1] ""

#: includes/share.php:1880
#: includes/share.php:1898
msgid "%1$s directory"
msgid_plural "%1$s directories"
msgstr[0] ""
msgstr[1] ""

#: includes/share.php:1896
#: includes/share.php:1914
msgid "%1$s file/directory"
msgid_plural "%1$s files/directories"
msgstr[0] ""
msgstr[1] ""

#: includes/share.php:1929
#: includes/share.php:1947
msgid "Invalid hook."
msgstr ""

Expand Down
2 changes: 1 addition & 1 deletion quick-cache-pro/quick-cache-pro.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/*
Version: 141205
Version: 141231
Text Domain: quick-cache
Plugin Name: Quick Cache Pro
Network: true
Expand Down
11 changes: 9 additions & 2 deletions quick-cache-pro/readme.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
=== Quick Cache (Speed Without Compromise) ===

Stable tag: 141205
Stable tag: 141231
Requires at least: 3.7
Tested up to: 4.0.1
Tested up to: 4.1
Text Domain: quick-cache

License: GPLv2 or later
Expand Down Expand Up @@ -324,6 +324,13 @@ Requires PHP v5.3+. The latest version of Quick Cache is a complete rewrite (OOP

== Changelog ==

= v141231 =

- **Bug Fix**: Addressed another issue related to "Fatal Error: 'Unable to clear dir'" and tmp directories that don't get cleared by Quick Cache. This fix discards iteration references before renaming the tmp directories. Props @jaswsinc. See [#288](https://github.com/websharks/quick-cache/issues/288).
- **Bug Fix**: We have had a few reports of getMTime Stat failing when clearing the cache. This fix clears the Stat Cache before iteration when deleting files from the cache directory. Props @jaswsinc. See [#385](https://github.com/websharks/quick-cache/issues/385).
- **Enhancement**: Added a new filter (`quick_cache\\share_disable_cache_locking`) to allow disabling cache locking. Simply return boolean `TRUE` to this filter to disable cache locking. This may be useful for site owners who are experiencing issues with cache locking on web hosting platforms with filesystems that don't properly support locking. Note that this filter must be applied using an Advanced Cache Plugin (see **Dashboard → Quick Cache → Plugin Options → Theme/Plugin Developers**). See also [#387](https://github.com/websharks/quick-cache/issues/387).
- **Enhancement**: Added a new filter that allows forcing Semaphore cache locking on hosting platforms where `sem_get()` is available and would result in improved performance. Return `sem` to the `quick_cache\\share::cache_lock_lock_type` filter to force Semaphore cache locking, or `flock` to use the default method that uses `flock()`. Note that this filter must be applied using an Advanced Cache Plugin (see **Dashboard → Quick Cache → Plugin Options → Theme/Plugin Developers**). See also [#387](https://github.com/websharks/quick-cache/issues/387).

= 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).
Expand Down

0 comments on commit 1eeb6a7

Please sign in to comment.