Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Update docs and release 0.13.0
Browse files Browse the repository at this point in the history
svn path=/trunk/; revision=235
  • Loading branch information
Gian Mario Tagliaretti committed Nov 30, 2008
1 parent fbecb8a commit eea057a
Show file tree
Hide file tree
Showing 6 changed files with 7,924 additions and 6 deletions.
12 changes: 11 additions & 1 deletion ChangeLog
@@ -1,5 +1,15 @@
2008-11-23 Gian Mario Tagliaretti <gianmt@gnome.org>
=== 0.13.0 ===
2008-11-30 Gian Mario Tagliaretti <gianmt@gnome.org>

* NEWS: Update.

* configure.ac: bump version number to 0.13.0

* docs/reference/pygoocanvas-canvas.xml:
* docs/reference/pygoocanvas-grid.xml: Update docs.

2008-11-23 Gian Mario Tagliaretti <gianmt@gnome.org>

* docs/reference/pygoocanvas-text.xml: fix method name.

2008-11-17 Gian Mario Tagliaretti <gianmt@gnome.org>
Expand Down
8 changes: 8 additions & 0 deletions NEWS
@@ -1,3 +1,11 @@
PyGooCanvas 0.13.0 (Nov 30 2008)
==================

o Update docs with new API. (Gian Mario)
o Update build system in order to compile on Windows (Armin Burgmeier)
o wrap new goocanvas.Canvas methods (Gian Mario)
o add goocanvas.Grid and goocanvas.GridModel (Gian Mario)

PyGooCanvas 0.12.0 (Sep 21 2008)
==================

Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Expand Up @@ -2,17 +2,17 @@ AC_PREREQ(2.52)

dnl the pygoocanvas version number
m4_define(pygoocanvas_major_version, 0)
m4_define(pygoocanvas_minor_version, 12)
m4_define(pygoocanvas_minor_version, 13)
m4_define(pygoocanvas_micro_version, 0)
m4_define(pygoocanvas_version, pygoocanvas_major_version.pygoocanvas_minor_version.pygoocanvas_micro_version)

dnl versions of packages we require ...
m4_define(pygobject_required_version, 2.10.1)
m4_define(pygtk_required_version, 2.10.0)
m4_define(goocanvas_required_version, 0.10)
m4_define(goocanvas_required_version, 0.13)
m4_define(pycairo_required_version, 1.4.0)

AC_INIT(pygoocanvas, pygoocanvas_version, [http://developer.berlios.de/projects/pygoocanvas/])
AC_INIT(pygoocanvas, pygoocanvas_version, [http://bugzilla.gnome.org/browse.cgi?product=pygoocanvas])

AC_DEFINE(PYGOOCANVAS_MAJOR_VERSION, pygoocanvas_major_version, [PyGoocanvas major version])
AC_DEFINE(PYGOOCANVAS_MINOR_VERSION, pygoocanvas_minor_version, [PyGoocanvas minor version])
Expand Down
12 changes: 10 additions & 2 deletions docs/reference/pygoocanvas-canvas.xml
Expand Up @@ -272,14 +272,22 @@
</row>

<row valign="top">
<entry>"resolution_x"</entry>
<entry>"redraw-when-scrolled"</entry>
<entry>Read/Write</entry>
<entry>If the canvas is completely redrawn when scrolled, to
reduce the flicker of static items.
Default value: <literal>False</literal>.</entry>
</row>

<row valign="top">
<entry>"resolution-x"</entry>
<entry>Read/Write</entry>
<entry>The horizontal resolution of the display, in dots per inch. Allowed values: >= 0
Default value: 96</entry>
</row>

<row valign="top">
<entry>"resolution_y"</entry>
<entry>"resolution-y"</entry>
<entry>Read/Write</entry>
<entry>The vertical resolution of the display, in dots per inch. Allowed values: >= 0
Default value: 96</entry>
Expand Down
12 changes: 12 additions & 0 deletions docs/reference/pygoocanvas-grid.xml
Expand Up @@ -104,6 +104,18 @@
<entry>The pixbuf to use to draw the horizontal grid lines.</entry>
</row>

<row valign="top">
<entry>"show-horz-grid-lines"</entry>
<entry>Read/Write</entry>
<entry>If the horizontal grid lines are shown. Default value: <literal>True</literal>.</entry>
</row>

<row valign="top">
<entry>"show-vert-grid-lines"</entry>
<entry>Read/Write</entry>
<entry>If the vertical grid lines are shown. Default value: <literal>True</literal>.</entry>
</row>

<row valign="top">
<entry>"horz-grid-line-width"</entry>
<entry>Read/Write</entry>
Expand Down

0 comments on commit eea057a

Please sign in to comment.