mirror of https://github.com/GNOME/gimp.git
added myself as maintainer of whirlpinch and autostretch HSV
* PLUGIN_MAINTAINERS (AUTHOR): added myself as maintainer of whirlpinch and autostretch HSV * user_install: added a warning in case a $HOME/.gtkrc is detected (see bug #2158).
This commit is contained in:
parent
3eec354669
commit
58561810b4
|
@ -1,3 +1,11 @@
|
|||
2000-01-06 Kelly Lynn Martin <kelly@poverty.bloomington.in.us>
|
||||
|
||||
* PLUGIN_MAINTAINERS (AUTHOR): added myself as maintainer of
|
||||
whirlpinch and autostretch HSV
|
||||
|
||||
* user_install: added a warning in case a $HOME/.gtkrc is detected
|
||||
(see bug #2158).
|
||||
|
||||
2000-01-06 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* app/app_procs.c (make_initialization_status_window): Finetune
|
||||
|
|
|
@ -106,7 +106,7 @@ COMMENT :
|
|||
-----------
|
||||
NAME : autostretch_hsv
|
||||
AUTHOR : Scott Goehring and Federico Mena Quintero
|
||||
MAINTAINER :
|
||||
MAINTAINER : Kelly Martin <kelly@gimp.org>
|
||||
SIZE : 7.8 kB in 1 file (only C files counted)
|
||||
COMMENT :
|
||||
-----------
|
||||
|
@ -946,7 +946,7 @@ COMMENT :
|
|||
-----------
|
||||
NAME : whirlpinch
|
||||
AUTHOR : Federico Mena Quintero and Scott Goehring
|
||||
MAINTAINER :
|
||||
MAINTAINER : Kelly Martin <kelly@gimp.org>
|
||||
SIZE : 27.4 kB in 1 file (only C files counted)
|
||||
COMMENT :
|
||||
-----------
|
||||
|
|
|
@ -60,3 +60,9 @@ echo "mkdir $2/gimpressionist/Presets"
|
|||
mkdir $2/gimpressionist/Presets
|
||||
echo "cp $1/palettes/* $2/palettes"
|
||||
cp $1/palettes/* $2/palettes
|
||||
|
||||
if [ -r $HOME/.gtkrc ]
|
||||
then
|
||||
echo "NOTICE: GIMP uses its own gtkrc file. Your default .gtkrc will NOT"
|
||||
echo "be used. You may wish to edit GIMP's gtkrc (in $2/gtkrc)."
|
||||
fi
|
||||
|
|
|
@ -60,3 +60,9 @@ echo "mkdir $2/gimpressionist/Presets"
|
|||
mkdir $2/gimpressionist/Presets
|
||||
echo "cp $1/palettes/* $2/palettes"
|
||||
cp $1/palettes/* $2/palettes
|
||||
|
||||
if [ -r $HOME/.gtkrc ]
|
||||
then
|
||||
echo "NOTICE: GIMP uses its own gtkrc file. Your default .gtkrc will NOT"
|
||||
echo "be used. You may wish to edit GIMP's gtkrc (in $2/gtkrc)."
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue