From 6a78f6294644e8e1dd148c2fef151dfaba62c303 Mon Sep 17 00:00:00 2001 From: Erick Hitter <ehitter@gmail.com> Date: Sat, 11 May 2013 20:40:01 -0500 Subject: [PATCH] Update readme to reflect changes in v0.3. --- readme.txt | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/readme.txt b/readme.txt index 2888943..0400224 100644 --- a/readme.txt +++ b/readme.txt @@ -3,8 +3,8 @@ Contributors: ethitter Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=10275434 Tags: archive, taxonomy, taxonomies, date Requires at least: 3.4 -Tested up to: 3.5 -Stable tag: 0.2 +Tested up to: 3.6 +Stable tag: 0.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -30,7 +30,7 @@ Includes a function for rendering an unordered list of years with months, linked Add the function `date_based_taxonomy_archives()` to any template element that appears on a taxonomy archive. The function accepts an array containing the following arguments: * `taxonomies` - array of taxonomy slugs. -* `show_post_counts` - boolean value specifying whether or not to display show counts in parenthesis after archive links. +* `show_post_count` - boolean value specifying whether or not to display show counts in parenthesis after archive links. * `limit` - integer specifying the number of archive links to show. Omit to show all archive links for the specified taxonomy. * `before` - output to display before archive link. * `after` - output to display after archive link. @@ -42,10 +42,20 @@ Add the function `date_based_taxonomy_archives()` to any template element that a == Changelog == += 0.3 = +* Remove unnecessary uses of `$wpdb->prepare()` that were incorrectly implemented, resulting in PHP warnings when `WP_DEBUG` was enabled. +* Convert plugin to a singelton pattern instead of relying on a global variable. +* Protect class variables and expose them only through a magic getter. Allows for more flexibility in adding class variables in the future. +* Localize large post counts for display, when requested. +* Correct phpdoc implementation. + = 0.2 = -Initial public release +* Initial public release == Upgrade Notice == += 0.3 = +Maintenance release encouraged for all users. Of note, resolves a PHP warning due to an improper use of `$wpdb->prepare()`. + = 0.2 = -Initial public release \ No newline at end of file +Initial public release -- GitLab