plug-ins/gdyntext/ChangeLog ported changes from stable branch, updating

2001-06-21  Sven Neumann  <sven@gimp.org>

	* plug-ins/gdyntext/ChangeLog
	* plug-ins/gdyntext/gdyntext.[ch]: ported changes from stable branch,
	updating GDynText to version 1.5.4.
This commit is contained in:
Sven Neumann
2001-06-21 14:42:12 +00:00
committed by Sven Neumann
parent 5f53fa04fb
commit a016f21956
4 changed files with 17 additions and 12 deletions

View File

@ -1,3 +1,9 @@
2001-06-21 Sven Neumann <sven@gimp.org>
* plug-ins/gdyntext/ChangeLog
* plug-ins/gdyntext/gdyntext.[ch]: ported changes from stable branch,
updating GDynText to version 1.5.4.
2001-06-21 Sven Neumann <sven@gimp.org>
* plug-ins/Lighting/lighting_apply.c

View File

@ -1,3 +1,9 @@
Jun 21 2001
* updated to 1.5.4 release by Sven Neumann <sven@gimp.org>:
* Better placement for text lines by using -1 for the border value when
using gimp_text_fontname.
* It doesn't smash anymore the layer's name back to "GDynText Layer"
when you re-edit a layer's text.
Aug 14 2000
* MADE 1.5.2 RELEASE
* Merged with 1.5.0 from gimp CVS.

View File

@ -320,17 +320,10 @@ gdt_save (GdtVals *data)
gimp_drawable_parasite_attach (data->drawable_id, parasite);
gimp_parasite_free (parasite);
if (!data->change_layer_name)
{
gimp_layer_set_name (data->layer_id, _("GDynText Layer"));
gimp_displays_flush ();
g_free (lname);
return;
}
/* change the layer name as in GIMP 1.x */
gimp_layer_set_name (data->layer_id, lname);
if (data->change_layer_name)
gimp_layer_set_name (data->layer_id, _("GDynText Layer"));
gimp_displays_flush ();
g_free (lname);
}
@ -496,7 +489,7 @@ gdt_render_text_p (GdtVals *data,
strspn (text_lines[i], " ") * space_width + xoffs, /* x */
(gdouble)layer_oy + i * (text_height + data->line_spacing), /* y */
text_lines[i],
0, /* border */
-1, /* border */
data->antialias,
font_size,
font_size_type,

View File

@ -23,7 +23,7 @@
#ifndef _GDYNTEXT_H_
#define _GDYNTEXT_H_
#define GDYNTEXT_VERSION "1.5.2"
#define GDYNTEXT_VERSION "1.5.4"
#define GDYNTEXT_MAGIC "GDT10"
#define GDYNTEXT_WEB_PAGE "http://www.geocities.com/Tokyo/1474/gimp/"
#define MAX_TEXT_SIZE (1024 << 6)