2000-11-03 Sven Neumann <sven@gimp.org>
* app/app_procs.c (app_init): parse the users gtkrc as found in
~/.gimp-1.1 after the systemwide gtkrc has been parsed.
* user_install.bat: reverted Tor's change since we use the file
again now.
2000-10-29 Sven Neumann <sven@gimp.org>
* configure.in
* plug-ins/print/Makefile.am
* plug-ins/print/escputil.1.in: added framework for a manpage
describing our new tool, escputil. Someone needs to fill in
some descriptive words here...
* gimp.spec.in:
* debian/gimp1.1.files: added entries for escputil and escputil.1
2000-10-29 Michael Natterer <mitch@gimp.org>
* plug-ins/print/escputil.c
* plug-ins/print/.cvsignore
* plug-ins/print/Makefile.am: new tool which installs under
<prefix>/bin and does stuff like cleaning and adjusting your
printer's head.
* plug-ins/print/README
* plug-ins/print/RELNOTES: these files already say 4.0.1 now but I
didn't tag the sourceforge tree of bumped the version number in
Makefile.am (it's just about getting in the new executable as early
as possible).
2000-10-29 Michael Natterer <mitch@gimp.org>
* app/main.c: the argv[] element containing "-g" or "--gimprc"
was not set to NULL, fixed broken (tabsize != 8) indentation.
2000-10-29 Michael Natterer <mitch@gimp.org>
* app/menus.c: after getting confused again by the boolean
"initialize" variable, I finally decided to reverse it's
logic and changed it to "menus_initialized".
2000-10-28 Tor Lillqvist <tml@iki.fi>
* app/gimprc.c (parse_gimprc_file)
* libgimp/gimpenv.c (gimp_directory): Make sure the directory
doesn't get double path separators in case HOME ends with one. On
Windows, if the user has set his HOME to \, we get into trouble
when we try to access a path like \\_gimp1.1\gimprc. Windows
thinks it's an UNC path to a network server called "_gimp1.1", and
the program hangs for a moment.
2000-10-28 Michael Natterer <mitch@gimp.org>
* app/gimpdrawable.[ch]
* libgimp/gimpsizeentry.c: did some code review: s/0/NULL/,
s/sprintf/g_snprintf/, spacing.
2000-10-26 Sven Neumann <sven@gimp.org>
* app/channel_ops.c (offset_ok_callback): avoid modulo operation on
negative values.
* app/channel_ops.c
* app/crop.c
* app/file_new_dialog.c
* app/layers_dialog.c
* app/preferences_dialog.c
* app/rotate_tool.c
* app/scale_tool.c: use RINT() when assigning the result of
gimp_size_entry_get_refval() to an integer.
* app/image_render.c:
* app/tile.h: Removed the JIT calculation of the tile_shift
value and replaced it by a constant called TILE_SHIFT in tile.h.
This gives the compiler a better chance to optimize the code.
Also added a few consts all over the place to give the compiler
some hints.