*** empty log message ***

This commit is contained in:
jtl 2000-04-20 15:31:56 +00:00
parent c6cb9a2e6b
commit 91d956d412
2 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2000-04-20 Jens Lautenbacher <jtl@schlund.de>
* plug-ins/common/bumpmap.c (bumpmap_dialog): restrict scale for
waterlevel/ambient to 255. Bumped version number to 3.0-pre1-ac2
2000-04-20 Nick Lamb <njl195@zepler.org.uk>
* plug-ins/common/tiff.c: libtiff has swerved to avoid the LZW

View File

@ -29,6 +29,11 @@
* bump-map to another image, producing a nice embossing effect.
*/
/* Version 3.0-pre1-ac2:
*
* - waterlevel/ambient restricted to 0-255
*/
/* Version 3.0-pre1-ac1:
*
* - Now able not to tile the bumpmap - this is the default.
@ -113,7 +118,7 @@
/***** Magic numbers *****/
#define PLUG_IN_VERSION "April 2000, 3.0-pre1-ac1"
#define PLUG_IN_VERSION "April 2000, 3.0-pre1-ac2"
#define PREVIEW_SIZE 128
#define SCALE_WIDTH 0
@ -1090,7 +1095,7 @@ bumpmap_dialog (void)
adj = gimp_scale_entry_new (GTK_TABLE (table), 0, row++,
_("Waterlevel:"), SCALE_WIDTH, 0,
bmvals.waterlevel, 0.0, 256.0, 1.0, 8.0, 0,
bmvals.waterlevel, 0.0, 255.0, 1.0, 8.0, 0,
TRUE, 0, 0,
NULL, NULL);
gtk_signal_connect (GTK_OBJECT (adj), "value_changed",
@ -1099,7 +1104,7 @@ bumpmap_dialog (void)
adj = gimp_scale_entry_new (GTK_TABLE (table), 0, row++,
_("Ambient:"), SCALE_WIDTH, 0,
bmvals.ambient, 0.0, 256.0, 1.0, 8.0, 0,
bmvals.ambient, 0.0, 255.0, 1.0, 8.0, 0,
TRUE, 0, 0,
NULL, NULL);
gtk_signal_connect (GTK_OBJECT (adj), "value_changed",