Plugin Directory

Changeset 175474


Ignore:
Timestamp:
11/20/2009 07:16:47 AM (16 years ago)
Author:
randomaniac
Message:

Submit v0.3.3 of Page Tagger plugin.

Location:
page-tagger/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • page-tagger/trunk/README.txt

    r175105 r175474  
    66Requires at least: 2.8.4
    77Tested up to: 2.8.6
    8 Stable tag: 0.3.2
     8Stable tag: 0.3.3
    99
    1010Page Tagger is a Wordpress plugin which lets you tag your pages just like you do with your posts. It adds a tagging widget in the page-editing view in the admin interface.
     
    2424== Changelog ==
    2525
    26 = 0.3.2 =
     26= 0.3.3 (Nov 20, 2009) =
     27* Fixed callback bug which was preventing the plugin from initialising on certain installations.
     28
     29= 0.3.2 (Nov 18, 2009) =
    2730* Fixed plugin conflict issue which was sometimes causing the tag editing interface to stop working.
    2831
    29 = 0.3.1 =
     32= 0.3.1 (Sep 8, 2009) =
    3033* Plugin renamed to 'Page Tagger'.
    3134
    32 = 0.3 =
     35= 0.3 (Sep 8, 2009) =
    3336* Plugin now works in Wordpress 2.8+.
    3437* *If your page tags were no longer showing in tag clouds then you need to upgrade to this version (0.3) and then [follow instructions to restore the correct post counts for each tag](http://www.hiddentao.com/archives/2009/09/08/page-tags-0-3/).*
    3538   
    36 = 0.2 =
     39= 0.2 (Apr 3, 2009) =
    3740* Fixed a bug which was preventing tags added whilst editing pages from appearing in the tag cloud widget.
    3841   
    39 = 0.1 =
     42= 0.1 (Jan 18, 2009) =
    4043* The initial release.
    4144
  • page-tagger/trunk/page-tagger.js

    r175100 r175474  
    33Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/
    44Description: Enables tagging for pages.
    5 Version: 0.3.2
     5Version: 0.3.3
    66Author: Ramesh Nair
    77Author URI: http://www.hiddentao.com/
  • page-tagger/trunk/page-tagger.php

    r175100 r175474  
    2222Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/
    2323Description: Enables tagging for pages.
    24 Version: 0.3.2
     24Version: 0.3.3
    2525Author: Ramesh Nair
    2626Author URI: http://www.hiddentao.com/
     
    184184 * Initialise PageTags object.
    185185 */ 
    186 add_action('plugins_loaded','PageTagger::init');
     186add_action('plugins_loaded',array('PageTagger','init'));
    187187
Note: See TracChangeset for help on using the changeset viewer.