Plugin Directory

Changeset 825762


Ignore:
Timestamp:
12/19/2013 09:05:26 PM (12 years ago)
Author:
petervanderdoes
Message:

Release v3.9.1

Location:
extended-categories-widget/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • extended-categories-widget/trunk/2.8/class/avh-ec.core.php

    r821616 r825762  
    2828        $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
    2929
    30         $this->version = '3.9.0';
     30        $this->version = '3.9.1';
    3131        $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
    3232        $this->db_options_core = 'avhec';
  • extended-categories-widget/trunk/3.3/class/avh-ec.core.php

    r821616 r825762  
    2828        $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
    2929
    30         $this->version = '3.9.0';
     30        $this->version = '3.9.1';
    3131        $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
    3232        $this->db_options_core = 'avhec';
  • extended-categories-widget/trunk/3.6/class/avh-ec.category-group.php

    r790052 r825762  
    114114        if (false === $this->getTermIDBy('slug', 'none')) {
    115115            $none_group_id = wp_insert_term('none', $this->taxonomy_name, array('description' => __('This group will not show the widget.', 'avh-ec')));
     116
     117            $home_group_id = wp_insert_term('Home', $this->taxonomy_name, array('description' => __('This group will be shown on the front page.', 'avh-ec')));
     118            $this->setCategoriesForGroup($home_group_id['term_id'], $all_categories);
     119            $this->setWidgetTitleForGroup($home_group_id['term_id'], '');
     120        }
     121        if (false === $this->getTermIDBy('slug', 'all')) {
    116122            $all_group_id = wp_insert_term('All', $this->taxonomy_name, array('description' => __('Holds all the categories.', 'avh-ec')));
    117             $home_group_id = wp_insert_term('Home', $this->taxonomy_name, array('description' => __('This group will be shown on the front page.', 'avh-ec')));
    118 
    119             // Fill the standard groups with all categories
    120             $this->setCategoriesForGroup($home_group_id['term_id'], $all_categories);
    121123            $this->setWidgetTitleForGroup($all_group_id['term_id'], '');
    122             $this->setWidgetTitleForGroup($home_group_id['term_id'], '');
    123124        }
    124125
  • extended-categories-widget/trunk/3.6/class/avh-ec.core.php

    r821616 r825762  
    3535        $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
    3636
    37         $this->version = '3.9.0';
     37        $this->version = '3.9.1';
    3838        $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
    3939        $this->db_options_core = 'avhec';
  • extended-categories-widget/trunk/readme.txt

    r821616 r825762  
    55Requires at least: 2.3
    66Tested up to: 3.8
    7 Stable tag: 3.9.0
     7Stable tag: 3.9.1
    88
    99The AVH Extended Categories Widgets gives you three widgets for displaying categories.
     
    140140
    141141== Changelog ==
     142= Version 3.9.1 =
     143* When the category group home is deleted there are MySQL errors.
     144
    142145= Version 3.9.0 =
    143146* Add CSS classes to output when on a single post.
  • extended-categories-widget/trunk/widget_extended_categories.php

    r821616 r825762  
    44 * Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
    55 * Description: Replacement of the category widget to allow for greater customization of the category widget.
    6  * Version: 3.9.0
     6 * Version: 3.9.1
    77 * Author: Peter van der Does
    88 * Author URI: http://blog.avirtualhome.com/
Note: See TracChangeset for help on using the changeset viewer.