Changeset 195604
- Timestamp:
- 01/20/2010 12:45:52 AM (16 years ago)
- Location:
- easy-chart-builder/trunk
- Files:
-
- 3 edited
-
easy-chart-builder.php (modified) (2 diffs)
-
js/easy-chart-builder.js (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-chart-builder/trunk/easy-chart-builder.php
r195588 r195604 2 2 /* 3 3 Plugin Name: Easy Chart Builder 4 Version: 0.6 4 Version: 0.6.1 5 5 Plugin URI: http://www.dyerware.com/main/easy-chart-builder 6 6 Description: Creates a chart directly in your post or page via shortcut. Manages sizing of chart to support wptouch and other mobile themes. … … 33 33 { 34 34 $jsDir = get_option('siteurl') . '/wp-content/plugins/easy-chart-builder/js/'; 35 wp_register_script('wpEasyCharts', "{$jsDir}easy-chart-builder.js", false, '0. 7');35 wp_register_script('wpEasyCharts', "{$jsDir}easy-chart-builder.js", false, '0.8'); 36 36 } 37 37 -
easy-chart-builder/trunk/js/easy-chart-builder.js
r195588 r195604 1 1 /** 2 2 * Handle: easyChartBuilder 3 * Version: 0. 73 * Version: 0.8 4 4 * Enqueue: true 5 5 * … … 262 262 var wm = new Array(); 263 263 264 if (wmString.length == 0) 265 {return "";} 266 264 267 wm = this.extractValues(wmString, ",", 2); 265 268 if (wm.length == 0) 266 269 {return "";} 267 270 268 271 if (wm.length == 1) 269 272 wm[1] = maxMin[1]; -
easy-chart-builder/trunk/readme.txt
r195588 r195604 6 6 Requires at least: 2.8 7 7 Tested up to: 2.9.1 8 Stable tag: 0.6 8 Stable tag: 0.6.1 9 9 10 10 This plugin allows you to easily create charts within your blog by use of shortcodes. … … 61 61 6. The line chart sans data table (colors are configurable) 62 62 63 63 64 == Upgrade Notice == 65 66 = 0.6.1 = 67 Watermark glitch introduced in 0.6 68 69 = 0.6 = 70 New chart type, new currency display options 64 71 65 72 = 0.5.1 = … … 68 75 69 76 == Changelog == 77 78 = 0.6.1 - 79 * Oops! Small watermark parameter parsing glitch. ALL that testing this slips through.. *sigh* 70 80 71 81 = 0.6 =
Note: See TracChangeset
for help on using the changeset viewer.