~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to plug-ins/pygimp/NEWS

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
pygimp-0.5:  8-July-1999
2
 
        - Fixed some bugs that I missed in gimpui.  It should actually work
3
 
          on other people's systems now (I don't know why it worked on mine).
4
 
        - Included the foggify.py and shadow_bevel.py plugins in the package.
5
 
        - Added a timeout function to flush the displays in the gimpconsole
6
 
          plugin.  This way you can see the results of what you type easily.
7
 
 
8
 
pygimp-0.4:  5-July-1999
9
 
        - Removed the drawable type -- now layer or channel objects are used
10
 
          in its place.  All drawable methods have been transfered to both
11
 
          the channel and layer objects.  The layer and channel objects have
12
 
          the following attributes in common:
13
 
            ID, bpp, has_alpha, height, image, is_color, is_colour, is_gray,
14
 
            is_grey, is_indexed, mask_bounds, name, offsets, opacity
15
 
          This means that the gimp.drawable(layer|channel) command is gone,
16
 
          and so is the gimp.layer(drawable) and gimp.channel(drawable)
17
 
          syntaxes (the gimp.layer and gimp.channel commands still exist).
18
 
          I made this change because the previous setup was confusing, and
19
 
          more complicated than it needed to be.
20
 
        - Removed all tkinter code, and replaced it with pygtk code.  There
21
 
          is now also a convenience module gimpfu, which is a simpler
22
 
          interface to 
23
 
 
24
 
pygimp-0.3:  8-February-1999
25
 
        - Some small build cleanups.  Now you should be able to do the normal
26
 
          ./configure ; make ; make install.  It should compile fine with
27
 
          GIMP 1.0 (I haven't tested 1.1 series though).
28
 
        - gimpmodule.c now prints exception messages, so now exceptions caused
29
 
          by a plugin will print a stack trace to stdout, and cause gimp to
30
 
          realise the plugin failed.
31
 
        - The disable_undo and enable_undo methods of image now use the
32
 
          stack based enable/disable functions.
33
 
        - Added function names to PyArg_ParseTuple calls, so exceptions
34
 
          are a little easier to understand.
35
 
        - added a spec file for building RPMS for this package.
36
 
        - added gimp.extension_ack, gimp.extension_process,
37
 
          gimp.install_temp_proc and gimp.uninstall_temp_proc which will be
38
 
          useful to implement an interface similar to script-fu's (ie. one
39
 
          copy of python running in the background, responding to requests
40
 
          from the gimp process every now and again).
41
 
        - changed over to using glib's safe memory allocation routines g_new,
42
 
          g_strdup and g_free.
43
 
        - Converted documentation to docbook -- linuxdoc is just about dead.
44
 
 
45
 
pygimp-0.2.0: 19-Nov-1997
46
 
        - implemented pixel regions.  You can access them as a mapping.  (ie.
47
 
          pr[x,y] is get_pixel, pr[x1:x2,y] is get_row, pr[x, y1:y2] is get_col
48
 
          and pr[x1:x2, y1:y2] is get_rect)
49
 
        - to demonstrate the use of this low level object, I have included a
50
 
          translation of the c plugin Whirl and Pinch.
51
 
        - fixed a problem where I didn't check for a NULL when parsing
52
 
          arguments for a plugin.  This caused a crash when you ran a plugin
53
 
          that took a string as an argument was run in interactive mode.
54
 
 
55
 
pygimp-0.1.0: 18-Nov-1997
56
 
        - first public release.
57
 
        - implements images, layers, channels, drawables, tiles, and just about
58
 
          everything except pixel regions.
59
 
        - I have included a number of example plugins:
60
 
                - gimpcons is an interactive python console
61
 
                - pdbbrowse is a browser for the PDB
62
 
                - clothify is a translation of the Script-Fu script
63
 
                - sphere is a translation of the Script-Fu script
64
 
 
65