Plugin Directory

Changeset 210780


Ignore:
Timestamp:
02/27/2010 03:55:12 AM (16 years ago)
Author:
dugbug
Message:

0.8.2

Location:
easy-chart-builder/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • easy-chart-builder/trunk/easy-chart-builder.php

    r208089 r210780  
    22/*
    33Plugin Name: Easy Chart Builder
    4 Version: 0.8.1
     4Version: 0.8.2
    55Plugin URI: http://www.dyerware.com/main/easy-chart-builder
    66Description: Creates a chart directly in your post or page via shortcut.  Manages sizing of chart to support wptouch and other mobile themes.
     
    3333    {   
    3434        $jsDir = get_option('siteurl') . '/wp-content/plugins/easy-chart-builder/js/';
    35         wp_register_script('wpEasyCharts', "{$jsDir}easy-chart-builder.js", false, '0.10.1');       
     35        wp_register_script('wpEasyCharts', "{$jsDir}easy-chart-builder.js", false, '0.10.2');       
    3636    }
    3737
  • easy-chart-builder/trunk/js/easy-chart-builder.js

    r208089 r210780  
    11/**
    22 * Handle: easyChartBuilder
    3  * Version: 0.10.1
     3 * Version: 0.10.2
    44 * Enqueue: true
    55 *
     
    9999   
    100100    tempString = chartHandle["valuenames"];
    101     var chartValueNames = "|" + this.constructList(tempString, ",", "|",0, true);
     101    var order = false;
     102    if (chartType == "horizbar" || chartType == "horizbarstack") {order = true;}
     103    var chartValueNames = "|" + this.constructList(tempString, ",", "|",0, order);
    102104
    103105    var groupName;
  • easy-chart-builder/trunk/readme.txt

    r208089 r210780  
    66Requires at least: 2.8
    77Tested up to: 2.9.2
    8 Stable tag: 0.8.1
     8Stable tag: 0.8.2
    99
    1010This plugin allows you to easily create charts within your blog by use of shortcodes.
     
    6868== Upgrade Notice ==
    6969
     70= 0.8.2 =
     71Fixed wrong label order for horizontal chart types
     72
    7073= 0.8.1 =
    7174Fixed stacked charts problem with value axis
     
    8891
    8992== Changelog ==
     93
     94= 0.8.2 =
     95 * Fixed wrong label order for horizontal chart types
    9096
    9197= 0.8.1 =
Note: See TracChangeset for help on using the changeset viewer.