Changeset 114

Show
Ignore:
Timestamp:
10/28/08 16:51:49 (3 years ago)
Author:
lgs
Message:

Prepare for release

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/CHANGES.txt

    r93 r114  
    22======= 
    33 
    4 0.3.1 (unreleased) 
     40.4.0 (2008-10-28) 
    55------------------ 
     6- Improved test suite (Lorenzo, Nicolas) 
     7- Many bugs fixed (Lorenzo, Stephane Wirtel) 
     8- Support for negative values in the datasets (Nicolas, Lorenzo) 
     9- Chavier, a simple pygtk application for playing with Pycha charts (Lorenzo) 
     10- Allow the legend to be place relative to the right and bottom of the canvas 
     11  (Nicolas Evrard) 
     12- Easier debugging by adding __str__ methods to aux classes (rectangle, point, 
     13  area, ...) (Lorenzo) 
    614- Do not overlap Y axis label when ticks label are not rotated (John Eikenberry) 
    715 
  • trunk/README.txt

    r87 r114  
    120120Right now you can choose among 4 different kind of charts: 
    121121 
    122     * Pie Charts (picha.pie.PieChart) 
    123     * Vertical Bar Charts (picha.bar.VerticalBarChart) 
    124     * Horizontal Bar Charts (picha.bar.HorizontalBarChart) 
    125     * Line Charts (picha.bar.LineChart)  
     122    * Pie Charts (pycha.pie.PieChart) 
     123    * Vertical Bar Charts (pycha.bar.VerticalBarChart) 
     124    * Horizontal Bar Charts (pycha.bar.HorizontalBarChart) 
     125    * Line Charts (pycha.bar.LineChart) 
     126    * Scatterplot Charts (pycha.scatter.ScatterplotChart) 
    126127 
    127128Finally you can write the surface to a graphic file or anything you want using 
  • trunk/setup.py

    r113 r114  
    2424setup( 
    2525    name="pycha", 
    26     version="0.3.1dev", 
     26    version="0.4.0dev", 
    2727    author="Lorenzo Gil Sanchez", 
    2828    author_email="lorenzo.gil.sanchez@gmail.com",