mirror of https://github.com/GNOME/gimp.git
bumped version to 2.1.1. Allow to disable the build of the linux_input
2004-06-17 Sven Neumann <sven@gimp.org> * configure.in: bumped version to 2.1.1. Allow to disable the build of the linux_input controller module.
This commit is contained in:
parent
52160f6ad7
commit
5823d07e23
12
ChangeLog
12
ChangeLog
|
@ -1,8 +1,14 @@
|
|||
2004-06-17 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* configure.in: bumped version to 2.1.1. Allow to disable the
|
||||
build of the linux_input controller module.
|
||||
|
||||
2004-06-17 Philip Lafleur <plafleur@cvs.gnome.org>
|
||||
|
||||
* app/core/gimpdrawable-transform.c (gimp_drawable_transform_tiles_affine):
|
||||
Make transforms (most notably perspective transforms) conform exactly
|
||||
to specified edges. Includes a patch by David Gowers. Fixes bug #144352.
|
||||
* app/core/gimpdrawable-transform.c
|
||||
(gimp_drawable_transform_tiles_affine): Make transforms (most
|
||||
notably perspective transforms) conform exactly to specified
|
||||
edges. Includes a patch by David Gowers. Fixes bug #144352.
|
||||
|
||||
2004-06-16 Manish Singh <yosh@gimp.org>
|
||||
|
||||
|
|
51
NEWS
51
NEWS
|
@ -6,10 +6,55 @@ are being added. In a not too distant future the next stable GIMP
|
|||
release, GIMP 2.2, will emerge out of this.
|
||||
|
||||
|
||||
Overview of Changes since 2.0
|
||||
=============================
|
||||
|
||||
GIMP 2.1 includes the following enhancements:
|
||||
Overview of Changes in GIMP 2.1.1
|
||||
=================================
|
||||
|
||||
- Added support for loading patterns in formats supported by GdkPixbuf
|
||||
(most notably PNG and JPEG).
|
||||
|
||||
- Use ARGB cursors when supported by the windowing system. Added nice
|
||||
new tool cursors.
|
||||
|
||||
- Added previews to Solid Noise and Unsharp Mask plug-ins.
|
||||
|
||||
- Improvements for painting with pressure-sensitive devices.
|
||||
|
||||
- Added preview for transform tools.
|
||||
|
||||
- Merged the Gaussian Blur plug-ins.
|
||||
|
||||
- Simplified the Blur plug-in.
|
||||
|
||||
- Reorganized the Preferences dialog.
|
||||
|
||||
- Dispatch Enter, Return, Backspace and Delete key events to the tools
|
||||
and use them where it makes sense.
|
||||
|
||||
- Some optimizations to the tile system, the gradient rendering and to
|
||||
the cubic interpolation routine.
|
||||
|
||||
- Show the brush outline while painting.
|
||||
|
||||
- Added an interface that allows to add controller modules. Such a module
|
||||
can dispatch events to The GIMP which are mapped to actions by a
|
||||
user-configurable mapping table. Added a mouse wheel controller and a
|
||||
generic linux input event controller module.
|
||||
|
||||
|
||||
Contributors:
|
||||
|
||||
Michael Natterer, Sven Neumann, Manish Singh, Philip Lafleur, Yeti,
|
||||
Dave Neary, Jakub Steiner, David Gowers, Geert Jordaens, William Skaggs,
|
||||
Henrik Brix Andersen, Simon Budig, lots of translators and the
|
||||
contributors that I accidentally missed...
|
||||
|
||||
|
||||
|
||||
Overview of Changes in GIMP 2.1.0
|
||||
=================================
|
||||
|
||||
GIMP 2.1.0 includes the following enhancements over GIMP 2.0:
|
||||
|
||||
- Major user interface improvements.
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ AC_PREREQ(2.54)
|
|||
|
||||
m4_define([gimp_major_version], [2])
|
||||
m4_define([gimp_minor_version], [1])
|
||||
m4_define([gimp_micro_version], [0])
|
||||
m4_define([gimp_micro_version], [1])
|
||||
m4_define([gimp_real_version],
|
||||
[gimp_major_version.gimp_minor_version.gimp_micro_version])
|
||||
m4_define([gimp_version], [gimp_real_version])
|
||||
|
@ -1212,8 +1212,13 @@ AM_CONDITIONAL(HAVE_LCMS, test $have_lcms = yes)
|
|||
# Check for linux input
|
||||
#######################
|
||||
|
||||
AC_ARG_WITH(linux-input,
|
||||
[ --without-linux-input don't build linux input event controller module])
|
||||
|
||||
have_linux_input=no
|
||||
AC_CHECK_HEADER(linux/input.h, have_linux_input=yes)
|
||||
if test "x$with_linux_input" != "xno"; then
|
||||
AC_CHECK_HEADER(linux/input.h, have_linux_input=yes)
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(HAVE_LINUX_INPUT, test $have_linux_input = yes)
|
||||
|
||||
|
|
Loading…
Reference in New Issue