summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>1999-08-08 14:51:50 +0000
committerJames Henstridge <jamesh@src.gnome.org>1999-08-08 14:51:50 +0000
commite36ac1a21a255fc4655834e1d0272fdad4a89f51 (patch)
tree1929d375ab325a162385804f0dd3fde839c5c27d /NEWS
parent14d3f7b03cb3df32ba92e9b8f24475a421888c47 (diff)
downloadpygtk-e36ac1a21a255fc4655834e1d0272fdad4a89f51.tar.gz
updated news file.
1999-08-08 James Henstridge <james@daa.com.au> * NEWS: updated news file. * configure.in: increased version number to 0.6.2. * gdkimlibmodule.c (_wrap_gdk_imlib_image_get_array): make sure that the image data is not freed while the returned array is in use, so that we don't get into an inconsistent state. * gtk.py: added gdkrgb functions to this file. * gtkmodule.c: added the gdkrgb functions for drawing rgb and greyscale images. (gdk_draw_array): a new function that will draw a numpy array to a drawable with gdkrgb. It is written so that it can handle slicing on the first two axes -- it does not handle non contiguous data on the third axis.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS18
1 files changed, 18 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 76895a68..ebbe3522 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,21 @@
+pygtk-0.6.2:
+ - Alright, threading should work correctly with multiple threads
+ accessing GTK (assuming they use threads_enter/leave). Thanks go
+ to Matt Wilson and Paul Fisher for this code.
+ - A pygtk.h header file is now installed that should make it easier
+ to write extensions to pygtk.
+ - There is now optional support for the gtkglarea widget and the
+ libglade library now.
+ - There is support for gdkrgb functions for rendering rgb and greyscale
+ image data to a drawable.
+ - Optional support for numpy arrays. You can create a GdkImlibImage
+ from a numpy array, and manipulate an image's data as an array.
+ Also there is a gdk_draw_array wrapper that uses gdkrgb to render
+ an array to a drawable. The code for the imlib stuff is based on
+ stuff submitted by Travis Oliphant.
+ - The GdkWindow type now has some methods for manipulating properties,
+ and has an xid attribute for getting the X window ID of the window.
+
pygtk-0.6.1: 22-May-1999
- Fixed a few bugs to do with the threading patches I applied in the
last release. Threading should now work correctly.