mirror of https://github.com/GNOME/gimp.git
parent
e829684ce4
commit
cc521907b6
|
@ -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>
|
Mon Sep 21 02:11:27 PDT 1998 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* app/text_tool.c: correct test for restoring old foundry in
|
* app/text_tool.c: correct test for restoring old foundry in
|
||||||
|
|
15
NEWS
15
NEWS
|
@ -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!
|
GIMP 1.0 Released!
|
||||||
|
|
2
README
2
README
|
@ -1,7 +1,7 @@
|
||||||
The GIMP: the GNU Image Manipulation Program
|
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
|
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
|
to work with images much larger than physical memory in a usable
|
||||||
fashion. Before such memory management, the GIMP was nearly unusable
|
fashion. Before such memory management, the GIMP was nearly unusable
|
||||||
|
|
|
@ -7,7 +7,7 @@ GIMP_MAJOR_VERSION=1
|
||||||
dnl $Format: "GIMP_MINOR_VERSION=$ReleaseMinorVersion$" $
|
dnl $Format: "GIMP_MINOR_VERSION=$ReleaseMinorVersion$" $
|
||||||
GIMP_MINOR_VERSION=0
|
GIMP_MINOR_VERSION=0
|
||||||
dnl $Format: "GIMP_MICRO_VERSION=$ReleaseMicroVersion$" $
|
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
|
GIMP_VERSION=$GIMP_MAJOR_VERSION.$GIMP_MINOR_VERSION.$GIMP_MICRO_VERSION
|
||||||
|
|
||||||
|
|
|
@ -39,8 +39,8 @@ gimpinclude_HEADERS = gimp.h \
|
||||||
gimpmenu.h \
|
gimpmenu.h \
|
||||||
gimpui.h
|
gimpui.h
|
||||||
|
|
||||||
libgimp_la_LDFLAGS = -version-info 1:0:0
|
libgimp_la_LDFLAGS = -version-info $(GIMP_MAJOR_VERSION):$(GIMP_MICRO_VERSION):0
|
||||||
libgimpui_la_LDFLAGS = -version-info 1:0:0
|
libgimpui_la_LDFLAGS = -version-info $(GIMP_MAJOR_VERSION):$(GIMP_MICRO_VERSION):0
|
||||||
|
|
||||||
CPPFLAGS = \
|
CPPFLAGS = \
|
||||||
-DGIMPDIR=\""$(gimpdir)"\"
|
-DGIMPDIR=\""$(gimpdir)"\"
|
||||||
|
|
|
@ -20,7 +20,7 @@ gckinclude_HEADERS = gck.h \
|
||||||
gckui.h \
|
gckui.h \
|
||||||
gckvector.h
|
gckvector.h
|
||||||
|
|
||||||
libgck_la_LDFLAGS = -version-info 1:0:0
|
libgck_la_LDFLAGS = -version-info $(GIMP_MAJOR_VERSION):$(GIMP_MINOR_VERSION):0
|
||||||
|
|
||||||
INCLUDES = \
|
INCLUDES = \
|
||||||
-I.. \
|
-I.. \
|
||||||
|
|
Loading…
Reference in New Issue