1.0.1 stuff

-Yosh
This commit is contained in:
Manish Singh 1998-09-27 08:50:08 +00:00
parent e829684ce4
commit cc521907b6
6 changed files with 24 additions and 5 deletions

View File

@ -1,3 +1,7 @@
Sun Sep 27 01:49:26 PDT 1998 Manish Singh <yosh@gimp.org>
* Made 1.0.1 release
Mon Sep 21 02:11:27 PDT 1998 Manish Singh <yosh@gimp.org>
* app/text_tool.c: correct test for restoring old foundry in

15
NEWS
View File

@ -1 +1,16 @@
What's new in GIMP 1.0.1
* Redid the way batch mode works: it now uses script-fu instead of a thin
wrapper around the PDB. This may break some stuff that relies on batch
mode, but batch mode was broken in 1.0 anyway
* NeXTStep support
* Portability fixes (should compile on non-gcc compilers)
* gimptool supports a lot more options
* Added gimpfeatures.h header
* Plug-in bugfixes, updates
* New gimp.m4 for plug-ins to use to check for gimp using autoconf/automake
* Less spurious message dialogs
* PDB interface for setting the g_message handler
* App bugfixes
GIMP 1.0 Released!

2
README
View File

@ -1,7 +1,7 @@
The GIMP: the GNU Image Manipulation Program
--------------------------------------------
The main difference between v1.0 and much earlier versions is the
The main difference between v1.0.1 and much earlier versions is the
use of a tile based memory management for images. This allows the GIMP
to work with images much larger than physical memory in a usable
fashion. Before such memory management, the GIMP was nearly unusable

View File

@ -7,7 +7,7 @@ GIMP_MAJOR_VERSION=1
dnl $Format: "GIMP_MINOR_VERSION=$ReleaseMinorVersion$" $
GIMP_MINOR_VERSION=0
dnl $Format: "GIMP_MICRO_VERSION=$ReleaseMicroVersion$" $
GIMP_MICRO_VERSION=0
GIMP_MICRO_VERSION=1
GIMP_VERSION=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION.$GIMP_MICRO_VERSION

View File

@ -39,8 +39,8 @@ gimpinclude_HEADERS = gimp.h \
gimpmenu.h \
gimpui.h
libgimp_la_LDFLAGS = -version-info 1:0:0
libgimpui_la_LDFLAGS = -version-info 1:0:0
libgimp_la_LDFLAGS = -version-info $(GIMP_MAJOR_VERSION):$(GIMP_MICRO_VERSION):0
libgimpui_la_LDFLAGS = -version-info $(GIMP_MAJOR_VERSION):$(GIMP_MICRO_VERSION):0
CPPFLAGS = \
-DGIMPDIR=\""$(gimpdir)"\"

View File

@ -20,7 +20,7 @@ gckinclude_HEADERS = gck.h \
gckui.h \
gckvector.h
libgck_la_LDFLAGS = -version-info 1:0:0
libgck_la_LDFLAGS = -version-info $(GIMP_MAJOR_VERSION):$(GIMP_MINOR_VERSION):0
INCLUDES = \
-I.. \