Version Description
- Removed the static wp-content/plugins path for assets
Download this release
Release Info
Developer | exz |
Plugin | Ultimate Tag Cloud Widget |
Version | 1.3.17 |
Comparing to | |
See all releases |
Code changes from version 1.3.16 to 1.3.17
- readme.txt +8 -1
- ultimate-tag-cloud-widget.php +4 -4
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: exz
|
|
3 |
Tags: widget, tags, configurable, tag cloud
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.4
|
6 |
-
Stable tag: 1.3.
|
7 |
Donate link: https://flattr.com/thing/112193/Ultimate-Tag-Cloud-Widget
|
8 |
|
9 |
This plugin aims to be the most configurable tag cloud widget out there, able to suit all your weird tag cloud needs.
|
@@ -58,6 +58,9 @@ This is a new plugin, haven't had any questions yet. If you have any, be sure to
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
61 |
= 1.3.16 =
|
62 |
* Bug fix; fixes problem with saving "Random from preset values" setting
|
63 |
|
@@ -155,6 +158,10 @@ This is a new plugin, haven't had any questions yet. If you have any, be sure to
|
|
155 |
|
156 |
== Upgrade Notice ==
|
157 |
|
|
|
|
|
|
|
|
|
158 |
= 1.3.16 =
|
159 |
|
160 |
* Bug fix; fixes problem with saving "Random from preset values" setting
|
3 |
Tags: widget, tags, configurable, tag cloud
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.4
|
6 |
+
Stable tag: 1.3.17
|
7 |
Donate link: https://flattr.com/thing/112193/Ultimate-Tag-Cloud-Widget
|
8 |
|
9 |
This plugin aims to be the most configurable tag cloud widget out there, able to suit all your weird tag cloud needs.
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
+
= 1.3.17 =
|
62 |
+
* Removed the static wp-content/plugins path for assets
|
63 |
+
|
64 |
= 1.3.16 =
|
65 |
* Bug fix; fixes problem with saving "Random from preset values" setting
|
66 |
|
158 |
|
159 |
== Upgrade Notice ==
|
160 |
|
161 |
+
= 1.3.17 =
|
162 |
+
|
163 |
+
* Removed the static wp-content/plugins path for assets
|
164 |
+
|
165 |
= 1.3.16 =
|
166 |
|
167 |
* Bug fix; fixes problem with saving "Random from preset values" setting
|
ultimate-tag-cloud-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ultimate tag cloud widget
|
4 |
Plugin URI: http://www.0x539.se/wordpress/ultimate-tag-cloud-widget/
|
5 |
Description: This plugin aims to be the most configurable tag cloud widget out there, able to suit all your wierd tag cloud needs.
|
6 |
-
Version: 1.3.
|
7 |
Author: Rickard Andersson
|
8 |
Author URI: http://www.0x539.se
|
9 |
License: GPLv2
|
@@ -66,7 +66,7 @@ define("UTCW_DEFAULT_BG_COLOR", "transparent");
|
|
66 |
define("UTCW_DEFAULT_SHOW_TITLE_TEXT", true);
|
67 |
|
68 |
|
69 |
-
// Allowed values for miscellanious options in the widget
|
70 |
$utcw_allowed_orders = array('random', 'name', 'slug', 'id', 'color', 'count');
|
71 |
$utcw_allowed_taxonomies = array(); // Will be set dynamically at load
|
72 |
$utcw_allowed_colors = array('none', 'random', 'set', 'span');
|
@@ -953,8 +953,8 @@ add_action('widgets_init', create_function('', 'return register_widget("UTCW");'
|
|
953 |
add_action('wp_loaded', 'utcw_wp_loaded');
|
954 |
|
955 |
//Register scripts and css with wordpress
|
956 |
-
wp_register_script('utcw-js', '/
|
957 |
-
wp_register_style('utcw-css', '/
|
958 |
|
959 |
/**
|
960 |
* Action handler for wordpress init used to attach scripts and styles
|
3 |
Plugin Name: Ultimate tag cloud widget
|
4 |
Plugin URI: http://www.0x539.se/wordpress/ultimate-tag-cloud-widget/
|
5 |
Description: This plugin aims to be the most configurable tag cloud widget out there, able to suit all your wierd tag cloud needs.
|
6 |
+
Version: 1.3.17
|
7 |
Author: Rickard Andersson
|
8 |
Author URI: http://www.0x539.se
|
9 |
License: GPLv2
|
66 |
define("UTCW_DEFAULT_SHOW_TITLE_TEXT", true);
|
67 |
|
68 |
|
69 |
+
// Allowed values for miscellanious options in the widget
|
70 |
$utcw_allowed_orders = array('random', 'name', 'slug', 'id', 'color', 'count');
|
71 |
$utcw_allowed_taxonomies = array(); // Will be set dynamically at load
|
72 |
$utcw_allowed_colors = array('none', 'random', 'set', 'span');
|
953 |
add_action('wp_loaded', 'utcw_wp_loaded');
|
954 |
|
955 |
//Register scripts and css with wordpress
|
956 |
+
wp_register_script('utcw-js', WP_PLUGIN_URL . '/ultimate-tag-cloud-widget/utcw.min.js', array('jquery'), "1.3", false);
|
957 |
+
wp_register_style('utcw-css', WP_PLUGIN_URL . '/ultimate-tag-cloud-widget/utcw.min.css', array(), "1.3", 'all');
|
958 |
|
959 |
/**
|
960 |
* Action handler for wordpress init used to attach scripts and styles
|