File: ChangeLog

package info (click to toggle)
gimp-texturize 2.1-11
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,508 kB
  • sloc: cpp: 2,416; sh: 962; ansic: 725; makefile: 54; xml: 4
file content (347 lines) | stat: -rw-r--r-- 8,624 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
2004-12-29  Sven Neumann  <sven@gimp.org>

	* Made 2.2.0 release.

2004-12-05  Sven Neumann  <sven@gimp.org>

	* src/main.c: use gimp_plugin_menu_register() to register the
	procedure in the menus.

	* src/interface.c: removed GimpPixmap examples. Use combo-boxes
	instead of option-menus. Changed spacings for HIG compliance.

	* Makefile.am
	* pixmaps/zoom_in.xpm
	* pixmaps/zoom_out.xpm: removed now unused pixmaps.

2004-12-05  Sven Neumann  <sven@gimp.org>

	* configure.in: bumped version to 2.2.0. Depend on GIMP >= 2.2.0.
	Disabled APIs deprecated for GTK+ 2.6 and GIMP 2.2.

	* src/interface.c: undef GIMP_DISABLE_DEPRECATED for now.

2004-11-25  Sven Neumann  <sven@gimp.org>

	* autogen.sh: handle automake-1.9, synced with gimp's autogen.sh.

2004-04-04  Sven Neumann  <sven@gimp.org>

	* configure.in: bumped version to 2.0.0.

	* README: minor update.

	* help/en/Makefile.am
	* help/en/gimp-plugin-template.html: removed this file

	* help/en/index.html: and moved the content here. One help page
	should be enough to explain the concept.

2004-03-18  Michael Natterer  <mitch@gimp.org>

	* configure.in: fixed definition of DATADIR.

	Moved help files from "C" to "en":

	* help/gimp-help.xml
	* help/C/.cvsignore
	* help/C/Makefile.am
	* help/C/gimp-plugin-template.html
	* help/C/index.html: removed.

	* help/en/.cvsignore
	* help/en/Makefile.am
	* help/en/gimp-help.xml
	* help/en/gimp-plugin-template.html
	* help/en/index.html: added.

	* help/Makefile.am: changed accordingly.

2004-02-02  Sven Neumann  <sven@gimp.org>

	* Made 1.3.3 release.

2004-02-02  Sven Neumann  <sven@gimp.org>

	* autogen.sh: also check for automake-1.8.

2004-02-01  Michael Natterer  <mitch@gimp.org>

	* src/interface.[ch]
	* src/render.[ch]: #include and trailing whitespace cleanup.

	* src/main.c: added example which shows how to pass both "seed"
	and "randomize" and how to store and retreive them from the
	plug-in's arguments and from the last_vals struct correctly.

2004-01-28  Sven Neumann  <sven@gimp.org>

	* configure.in: use AC_CONFIG_FILES.

2004-01-27  Manish Singh  <yosh@gimp.org>

	* src/Makefile.am
	* configure.in: redid the versioning magic, some cleanup.

2004-01-27  Sven Neumann  <sven@gimp.org>

	* autogen.sh
	* configure.in: simplified by using PKG_CHECK_MODULES instead of
	AM_PATH_GIMP_2_0.

2004-01-27  Sven Neumann  <sven@gimp.org>

	* configure.in: removed use of $DATADIRNAME in favor of $datadir.
	Use pkg-config instead of gimptool-1.3.

	* src/Makefile.am: use GIMP_LIBDIR.

2004-01-20  Sven Neumann  <sven@gimp.org>

	* configure.in: check for gimp >= 1.3.24; bumped version to 1.3.3.

	* src/interface.c
	* src/main.{ch]: adapt to changed API of gimp_random_seed_new().

2003-12-04  Sven Neumann  <sven@gimp.org>

	* configure.in: only use FOO_DISABLE_DEPRECATED in CPPFLAGS when
	compiling against gtk+ <= 2.3.0. Fixes bug #128550.

2003-11-29  Sven Neumann  <sven@gimp.org>

	* Made 1.3.2 release.

2003-11-29  Sven Neumann  <sven@gimp.org>

	* src/render.c (render): added a g_message() so something happens
	when clicking the OK button.

	* HACKING: updated.

2003-11-29  Sven Neumann  <sven@gimp.org>

	* debian/Makefile.am
	* help/C/Makefile.am
	* help/images/Makefile.am: minor cleanups.

	* help/Makefile.am
	* help/gimp-help.xml: added a mapping file for the GIMP help system.

	* src/interface.c: register help for the dialog.

2003-11-29  Sven Neumann  <sven@gimp.org>

	* autogen.sh: updates based on the autogen.sh script in GIMP.

2003-11-11  Sven Neumann  <sven@gimp.org>

	* src/interface.c (dialog): use gimp_dialog_run().

2003-11-06  Sven Neumann  <sven@gimp.org>

	* configure.in: depend on GIMP >= 1.3.23. Bumped version to 1.3.2.
	
	* src/interface.c: updated for new GimpDialog API.

	* src/main.c: updated for new GimpHelp API.

2003-07-25  Sven Neumann  <sven@gimp.org>

	* Made 1.3.1 release.

2003-07-25  Sven Neumann  <sven@gimp.org>

	* Makefile.am (DISTCLEANFILES): added intltool-extract and friends.

2003-07-22  Sven Neumann  <sven@gimp.org>

	* configure.in: use AM_PATH_GIMP_2_0(), changed the gettext domain
	to gimp20-plugin-template.

2003-07-06  Sven Neumann  <sven@gimp.org>

	* configure.in: depend on GIMP >= 1.3.17.

	* src/main.c: added const qualifiers as expected by
	libgimp >= 1.3.17.

2003-03-25  Sven Neumann  <sven@gimp.org>

	* configure.in: depend on GIMP >= 1.3.14.
	
	* src/plugin-intl.h: only define the gettext macros here.
	
	* src/main.c: bind to the plug-in textdomain, GIMP takes care of
	the rest.

2003-03-10  Manish Singh  <yosh@gimp.org>

	* src/main.c: #include <string.h> for strcmp

	* Makefile.am (EXTRA_DIST): include HACKING

2003-03-09  Sven Neumann  <sven@gimp.org>

	* COPYING
	* src/*.[ch]: relicensed to a less restrictive X11-style license.
	Thanks to Adam D. Moss <adam@gimp.org> for providing the patch for
	this change.

	* configure.in: bumped version to 1.3.1.

2003-03-05  Sven Neumann  <sven@gimp.org>

	* Made 1.3.0 release.

2003-03-05  Sven Neumann  <sven@gimp.org>

	* Makefile.am (EXTRA_DIST): include autogen.sh and the
	intltool*.in files.

	* src/Makefile.am: please automake-1.7.

2003-03-05  Sven Neumann  <sven@gimp.org>

	* acconfig.h: removed this file.

	* README
	* configure.in
	* src/interface.c
	* src/main.c
	* src/main.h: various changes to make it compile with GIMP >= 1.3.11.

2002-06-03  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>

	* README: Added notice about po/README.translators.

2002-05-14  Sven Neumann  <sven@gimp.org>

	* configure.in: check for bind_textdomain_codeset.

2002-04-16  Sven Neumann  <sven@gimp.org>

	* autogen.sh: call glib-gettextize and intltoolize.

	* configure.in: require at least gimp-1.3.5. Use AC_PROG_INTLTOOL
	and AM_GLIB_GNU_GETTEXT for i18n.
	
	* src/interface.c (dialog_ok_callback): made it compile again.

2002-01-15  Sven Neumann  <sven@gimp.org>

	* HACKING
	* Makefile.am
	* acconfig.h
	* autogen.sh
	* configure.in
	* src/Makefile.am
	* src/interface.c
	* src/main.c
	* src/plugin-intl.h: use gimp-1.3.

2001-12-26  Pablo Saratxaga  <pablo@mandrakesoft.com>

	* configure.in: Added "az" to ALL_LINGUAS.

2001-12-21  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>

	* configure.in: Added "sk" to ALL_LINGUAS.

2001-11-09  Christian Rose  <menthos@menthos.com>

	* configure.in: Added "sv" to ALL_LINGUAS.

2001-10-20  Christophe Merlet  <redfox@eikonex.org>

	* configure.in: Added "fr" to $ALL_LINGUAS.

2001-08-31  Abel Cheung  <maddog@linux.org.hk>

	* configure.in (ALL_LINGUAS): zh_TW.Big5 -> zh_TW

2001-07-12  Abel Cheung  <maddog@linux.org.hk>

	* configure.in: added zh_TW.Big5 (traditional Chinese) to ALL_LINGUAS

2001-07-12  Michael Natterer  <mitch@gimp.org>

	* made 1.2.0 release.

2001-07-12  Michael Natterer  <mitch@gimp.org>

	* README: updated.

	* src/main.h
	* src/interface.c: added image & drawable menu examples.

2001-07-12  Michael Natterer  <mitch@gimp.org>

	* autogen.sh: allow newer auto* version strings.

	* configure.in: bumped version number to 1.2.0, require gimp 1.2.1.

	* src/Makefile.am
	* src/interface.h
	* src/main.h
	* src/render.h: minor cleanups.

2000-08-28  Michael Natterer  <mitch@gimp.org>

	* configure.in
	* src/interface.c
	* src/main.c: removed COMPAT_CRUFT

2000-08-25  Kevin Turner  <acapnotic@users.sourceforge.net>

	* src/Makefile.am (LDADD): Remove GTK_LIBS, as these are included in 
	GIMP_LIBS.

2000-06-24  Sven Neumann  <sven@gimp.org>

	* autogen.sh: applied patch from Sesse <sgunderson@bigfoot.com>
	that fixes the check for recent versions of auto[conf|make].
	
	* configure.in: we require gimp-1.1.24 and gtk+-1.2.8

2000-06-14  Michael Natterer  <mitch@gimp.org>

	* configure.in
	* debian/*: new directory.

	A patch from Kevin Turner <acapnotic@users.sourceforge.net> which
	adds a debian packet description.

2000-06-14  Michael Natterer  <mitch@gimp.org>

	* src/Makefile.am: disable all Gimp compatibility defines.

	* src/interface.[ch]
	* src/main.[ch]
	* src/plugin-intl.h
	* src/render.[ch]: some (not yet finished) code to show how to
	store stuff per drawable and per image through parasites.
	Minor fixes.

2000-05-24  Michael Natterer  <mitch@gimp.org>

	* src/main.c: register for all image types.

2000-05-24  Michael Natterer  <mitch@gimp.org>

	* HACKING: s/gfm/gimp-plugin-template/

2000-05-24  Michael Natterer  <mitch@gimp.org>

	* src/interface.c: one more comment.

	* src/main.[ch]: renamed variables, #define'd some string constants.

2000-05-24  Michael Natterer  <mitch@gimp.org>

	* src/interface.[ch]
	* src/render.[ch]: added some comments.

2000-05-24  Michael Natterer  <mitch@gimp.org>

	* initial revision.