mirror of https://github.com/GNOME/gimp.git
make Script-Fu work again and removed help for rotators
--Sven
This commit is contained in:
parent
1dcda459db
commit
6169fc6c18
|
@ -1,3 +1,9 @@
|
||||||
|
2000-08-27 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* plug-ins/script-fu/script-fu.c: These names were accidentally
|
||||||
|
changed by my conversion-script. Reverted the change to make
|
||||||
|
scripts work again. Thanks to Andy Thomas for spotting this.
|
||||||
|
|
||||||
2000-08-25 Tor Lillqvist <tml@iki.fi>
|
2000-08-25 Tor Lillqvist <tml@iki.fi>
|
||||||
|
|
||||||
* app/cursorutil.c (gimp_change_win_cursor): Plug memory leak. The
|
* app/cursorutil.c (gimp_change_win_cursor): Plug memory leak. The
|
||||||
|
|
|
@ -123,7 +123,6 @@ helpdata_DATA = \
|
||||||
reshow_last.html \
|
reshow_last.html \
|
||||||
ripple.html \
|
ripple.html \
|
||||||
rotate.html \
|
rotate.html \
|
||||||
rotators.html \
|
|
||||||
sample_colorize.html \
|
sample_colorize.html \
|
||||||
scatter_hsv.html \
|
scatter_hsv.html \
|
||||||
screenshot.html \
|
screenshot.html \
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
|
|
||||||
<title>Help Page for rotators</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body text="#000000" bgcolor="#FFFFFF" link="#0000FF"
|
|
||||||
vlink="#FF0000" alink="#000088">
|
|
||||||
|
|
||||||
<table width="100%" cellspacing="1" cellpadding="1">
|
|
||||||
<tr bgcolor="black">
|
|
||||||
<td width="100%" align="center">
|
|
||||||
<font size="+2" color="white">rotators help page</font>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr bgcolor="white" >
|
|
||||||
<td width="100%" align="left">
|
|
||||||
<p>
|
|
||||||
<a href="index.html">Index</a><p>
|
|
||||||
(/filters/rotators.html)<p>
|
|
||||||
Sorry but the help file for rotators is not yet done.
|
|
||||||
<p>
|
|
||||||
/Karin & Olof
|
|
||||||
<p>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
2000-08-27 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* C/filters/Makefile.am
|
||||||
|
* C/filters/rotators.html: removed help for rotators plug-in which
|
||||||
|
does not exist any longer.
|
||||||
|
|
||||||
2000-08-07 Daniel Egger <egger@suse.de>
|
2000-08-07 Daniel Egger <egger@suse.de>
|
||||||
|
|
||||||
* C/dialogs/display_filters/*.html: Proofreading by
|
* C/dialogs/display_filters/*.html: Proofreading by
|
||||||
|
|
|
@ -413,12 +413,12 @@ init_constants (void)
|
||||||
setvar (cintern ("BLUR"), flocons (0), NIL);
|
setvar (cintern ("BLUR"), flocons (0), NIL);
|
||||||
setvar (cintern ("SHARPEN"), flocons (1), NIL);
|
setvar (cintern ("SHARPEN"), flocons (1), NIL);
|
||||||
|
|
||||||
setvar (cintern ("GIMP_RGB_IMAGE"), flocons (0), NIL);
|
setvar (cintern ("RGB_IMAGE"), flocons (0), NIL);
|
||||||
setvar (cintern ("GIMP_RGBA_IMAGE"), flocons (1), NIL);
|
setvar (cintern ("RGBA_IMAGE"), flocons (1), NIL);
|
||||||
setvar (cintern ("GIMP_GRAY_IMAGE"), flocons (2), NIL);
|
setvar (cintern ("GRAY_IMAGE"), flocons (2), NIL);
|
||||||
setvar (cintern ("GIMP_GRAYA_IMAGE"), flocons (3), NIL);
|
setvar (cintern ("GRAYA_IMAGE"), flocons (3), NIL);
|
||||||
setvar (cintern ("GIMP_INDEXED_IMAGE"), flocons (4), NIL);
|
setvar (cintern ("INDEXED_IMAGE"), flocons (4), NIL);
|
||||||
setvar (cintern ("GIMP_INDEXEDA_IMAGE"), flocons (5), NIL);
|
setvar (cintern ("INDEXEDA_IMAGE"), flocons (5), NIL);
|
||||||
|
|
||||||
/* Useful misc stuff */
|
/* Useful misc stuff */
|
||||||
setvar (cintern ("TRUE"), flocons (1), NIL);
|
setvar (cintern ("TRUE"), flocons (1), NIL);
|
||||||
|
|
Loading…
Reference in New Issue