39e8010eee9ecd21eff85bd37661393b1b0d5a6d
[platform/upstream/glib.git] / ChangeLog.pre-2-12
1 2006-05-09  Sebastian Wilhelmi  <wilhelmi@google.com>
2
3         * glib/gthreadinit.h: Renamed to glib/gthreadprivate.h and moved
4         system thread identifier comparision and assignment macros from
5         glib/gthread.c to glib/gthreadprivate.h.
6
7         * glib/Makefile.am, glib/gatomic.c, glib/gconvert.c, glib/gmain.c,
8         glib/gmem.c, glib/gmessages.c, glib/grand.c, glib/gslice.c,
9         glib/gthread.c, glib/gutils.c, gthread/gthread-impl.c: Use
10         glib/gthreadprivate.h instead of glib/gthreadinit.h.
11
12         * gthread/gthread-impl.c: Use GSystemThread instead of GThread for
13         owner determination. (#311043, jylefort@FreeBSD.org)
14
15         * tests/Makefile.am, tests/errorcheck-mutex-test: New test program
16         to test for all checked violations.
17
18         * glib/gprintf.c, glib/gspawn-win32.c, glib/gutf8.c,
19         gthread/gthread-impl.c, gthread/gthread-posix.c,
20         gthread/gthread-win32.c: Use canonical include form for internal
21         headers. config.h is always there.
22
23         * Remove obsolete gthread/gthread-solaris.c.
24
25 2006-05-08  Matthias Clasen  <mclasen@redhat.com>
26
27         * tests/convert-test.c (test_one_half): Use encoding names which 
28         may work better on Solaris.  (#340434, Alessandro Vesely)
29
30         * tests/keyfile-test.c (test_number): Add some tests for
31         invalid floating point numbers.
32
33         * glib/gkeyfile.c (g_key_file_parse_value_as_double): Return
34         an error for the empty string.  (#339105, Morten Welinder)
35
36         * glib/gscanner.c (g_scanner_config_template): Make const,
37         noticed by Kjartan Maraas.
38
39 2006-05-06  Matthias Clasen  <mclasen@redhat.com>
40
41         * glib/gkeyfile.c (g_key_file_set_string_list)
42         (g_key_file_set_locale_string_list): Fix invalid memory
43         reads.  (#340816, Nick Treleaven)
44
45 2006-05-04  Alexander Larsson  <alexl@redhat.com>
46
47         * glib/gbase64.c: (g_base64_decode_step):
48         Fix OOB write (#340538)
49
50 2006-05-03  Matthias Clasen  <mclasen@redhat.com>
51
52         * tests/base64-test.c: Add some more tests.
53
54         * glib/gbase64.c (g_base64_decode_step): Avoid writing
55         beyond the guaranteed lenght of the output buffer, if
56         there is padding.
57
58         * tests/base64-test.c (test_incremental): Use malloced memory
59         instead of stack-allocated, so that MALLOC_CHECK_=2 catches
60         the OOB write...
61
62         * glib/gbookmarkfile.c (g_bookmark_file_load_from_data): Remove
63         an overzealous return_if_fail check that causes make check to 
64         fail.
65
66 2006-05-02  Matthias Clasen  <mclasen@redhat.com>
67
68         * configure.in: Bump version
69         
70         * === Released 2.11.0 ===
71
72         * NEWS: Updates
73
74         * tests/casemap.txt: 
75         * tests/casefold.txt: Regenerate from Unicode 5.0 data. 
76
77 Tue May  2 15:00:00 2006  Tim Janik  <timj@gtk.org>
78
79         * glib/guniprop.c: Make interval_compare static.
80
81         * tests/gobject/deftype.c: added test code from Behdad Esfahbod, 
82         see #337128.
83
84 Tue May  2 14:18:25 2006  Tim Janik  <timj@gtk.org>
85
86         * glib/goption.c (g_option_context_parse): fixed leak in short
87         option parsing. rewrote parts of the code to be more concise to
88         enhance readability. fixed exaggerated uses of strlen.
89
90 2006-04-28  Behdad Esfahbod  <behdad@gnome.org>
91
92         * glib/guniprop.c: #include <stdlib.h>
93
94 2006-04-27  Matthias Clasen  <mclasen@redhat.com>
95
96         * glib/glib.symbols: Add g_unichar_iswide_cjk.
97         * glib/guniprop.c: Add a "Since: 2.12".
98
99         * NEWS: Updates
100
101 2006-04-27  Behdad Esfahbod  <behdad@gnome.org>
102
103         * docs/reference/glib/glib-sections.txt,
104         * glib/gunicode.h glib/guniprop.c: Implement g_unichar_iswide_cjk().
105         (#105626)
106
107 2006-04-27  Matthias Clasen  <mclasen@redhat.com>
108
109         * glib/gbookmarkfile.c (g_bookmark_file_set_description) 
110         (g_bookmark_file_set_title, g_bookmark_file_set_icon): 
111         Remove some special-casing of empty string which led to 
112         dangling pointers.  (#339337, Morten Welinder)
113         (expand_exec_line): Don't use printf() needlessly, handle
114         trailing '%' gracefully.  (#339338, Morten Welinder)
115         (is_element_full): Silence the compiler.
116         (g_bookmark_file_dump, bookmark_metadata_dump): 
117         (bookmark_app_info_dump): Escape strings before dumping 
118         them in xml.  (#339340, Morten Welinder)
119
120 2006-04-27  Behdad Esfahbod  <behdad@gnome.org>
121
122         * glib/gunibreak.h, glib/gunichartables.h: Regenerated using
123         Unicode Character Database 5.0 beta.
124
125 2006-04-26  Matthias Clasen  <mclasen@redhat.com>
126
127         * glib/grand.c (g_rand_new): Don't repeat a failed fclose()
128         call, since that invokes undefined behaviour.  (Coverity)
129
130 2006-04-25  Matthias Clasen  <mclasen@redhat.com>
131
132         * glib/gbookmarkfile.c (is_element_full): Avoid a possible
133         NULL dereference (found by Coverity), also avoid some 
134         pointless strdups.
135
136         * tests/keyfile-test.c (test_comments): Add a test for
137         the previous change.
138
139         * glib/gkeyfile.c (g_key_file_lookup_group_node): Remove
140         redundant code.
141         (g_key_file_get_group_comment): Don't dereference before
142         checking for NULL.  (#338572, Coverity, Pascal Terjan)
143
144 2006-04-19  Matthias Clasen  <mclasen@redhat.com>
145
146         * glib/gdataset.c: Add some missing Since: 2.8 tags.
147
148 2006-04-19  Tor Lillqvist  <tml@novell.com>
149
150         * glib/gatomic.c: Adapt to the changed prototype of
151         InterlockedCompareExchange() in newer SDKs. Use
152         InterlockedCompareExchangePointer() when applicable. (#155884,
153         John Ehresman)
154
155 2006-04-18  Matthias Clasen  <mclasen@redhat.com>
156
157         * glib/gkeyfile.h:
158         * glib/glib.symbols:
159         * glib/gkeyfile.c: Add api to get and set doubles and 
160         lists of doubles.  (#164719, Maurizio Monge, Dom Lachowicz)
161
162         * tests/keyfile-test.c: Add tests for new api.
163
164         * glib/gkeyfile.c (g_key_file_add_group): Accept duplicate
165         groups.  (#157877, Sebastien Bacher)
166
167         * tests/keyfile-test.c: Add tests for duplicate key and
168         duplicate group handling.
169
170 2006-04-17  Matthias Clasen  <mclasen@redhat.com>
171
172         * glib/gcompletion.c (g_completion_complete_utf8): Make passing
173         NULL for new_prefix work as documented.  (#338845, Yevgen Muntyan)
174
175         * tests/completion-test.c: Test that passing NULL for 
176         new_prefix in g_completion_complete_utf8 works.
177
178 2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>
179
180         * configure.in: Remove obsolete entry for no_NO.
181         * po/no.po: And the translation.
182
183 2006-04-16  Matthias Clasen  <mclasen@redhat.com>
184
185         * glib/gdate.c (g_date_fill_parse_tokens): Avoid an array
186         overrun.  (Coverity, fix by Pascal Terjan)
187
188 2006-04-12  Bastien Nocera  <hadess@hadess.net>
189
190         reviewed by: Matthias Clasen <mclasen@redhat.com>
191
192         * glib/gconvert.c: add more details about which RFC is concerned
193         when using g_filename_to_uri (#337553)
194
195 2006-04-12  Matthias Clasen  <mclasen@redhat.com>
196
197         * glib/goption.c (parse_arg): Add an assert to make it
198         clear when value can be NULL.
199
200 2006-04-07  Martyn Russell  <martyn@imendio.com>
201
202         * tests/threadpool-test.c: (test_thread_stop_unused): Removed an
203         assertion which can fail and is not a critical test.
204
205 2006-04-07  Hans Breuer  <hans@breuer.org>
206
207         * glib/makefile.msc.in : added gbase64.obj and derive the static libs
208         name from auto* variables
209         * glib/makefile.msc.in : link user32.lib for MessageBox()
210
211 2006-04-07  Martyn Russell  <martyn@imendio.com>
212
213         * glib/gasyncqueue.[ch]: Added private API
214         _g_async_queue_get_mutex so that g_thread_pool_free() can use the
215         async queue mutex. 
216         
217         * glib/gthreadpool.c: Make sure
218         g_thread_pool_stop_unused_threads() actually stops unused threads
219         and global limits (like max idle time and max unused threads) can
220         be set without creating a thread pool first. Fixed #335215 (patch
221         from Chris Wilson).  
222         
223         * tests/threadpool-test.c: Added two new tests, tests setting
224         global limits before creating a thread pool. The second test
225         makes sure unused threads are actually stopped when using the
226         g_thread_pool_stop_unused_threads(). 
227
228 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
229
230         * glib/gnulib/vasnprintf.c (vasnprintf): Make
231         long long printing work if snprintf is not 
232         available.  (#332841, Michael McDonald)
233
234 2006-04-05  Behdad Esfahbod  <behdad@gnome.org>
235
236         * tests/option-test.c: Check the return value of g_get_prgname for
237         NULL before passing to strcmp.
238
239         * tests/slice-test.c: Report the correct name in Usage summary.
240
241 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
242
243         * tests/run-collate-tests.sh: Fix up shell script.
244
245         * tests/option-test.c (arg_test5): Skip the test if
246         setting the locale fails.
247         (empty_test1): Reset prgname before the test.
248
249         * tests/Makefile.am: Arrange for run-bookmark-test.sh
250         to be run by make check.
251
252         * tests/utf8-pointer.c: 
253         * tests/tree-test.c: Silence warnings.
254
255 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
256
257         * glib/glib.symbols:
258         * glib/gbase64.[hc]: Add G_GNUC_MALLOC where
259         appropriate, use glib types.
260
261 2006-04-04  Alexander Larsson  <alexl@redhat.com>
262
263         * glib/Makefile.am:
264         * glib/gbase64.[ch]:
265         * glib/glib.symbols:
266         Add base64 encode/decode functions
267         
268         * glib/glib.h:
269         Include gbase64.h
270         
271         * tests/Makefile.am:
272         * tests/base64-test.c:
273         Tests for base64 functions
274
275 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
276
277         * glib/gdate.c: Move short_month_names and long_month_names
278         to bss.
279
280         * glib/gspawn-win32.c (g_spawn_error_quark):
281         * glib/gspawn.c (g_spawn_error_quark):
282         * glib/gshell.c (g_shell_error_quark):
283         * glib/gmarkup.c (g_markup_error_quark):
284         * glib/goption.c (g_option_error_quark):
285         * glib/gkeyfile.c (g_key_file_error_quark):
286         * glib/giochannel.c (g_io_channel_error_quark):
287         * glib/gfileutils.c (g_file_error_quark):
288         * glib/gconvert.c (g_convert_error_quark):
289         * glib/gbookmarkfile.c (g_bookmark_file_error_quark):
290         * glib/gthread.c (g_thread_error_quark): No point in making
291         the error path fast by caching quarks.
292
293         * glib/gbookmarkfile.c: Make the parser struct const.
294
295 2006-04-04  Behdad Esfahbod  <behdad@gnome.org>
296
297         * glib/gbookmarkfile.c: Fix accidentally broken build.
298
299 2006-04-03  Matthias Clasen  <mclasen@redhat.com>
300
301         * glib/gbookmarkfile.c: Don't include sys/time.h  (#337027,
302          Kazuki IWAMOTO)
303
304 2006-03-31  Tor Lillqvist  <tml@novell.com>
305
306         * glib/gstdio.c (g_remove): Revert change below. It wasn't a good
307         idea after all, says the original bug reporter. See bug for
308         discussion.
309
310 2006-03-30  Tor Lillqvist  <tml@novell.com>
311
312         * glib/gstdio.c (g_remove): [Win32] call rmdir() only if remove()
313         fails with errno set to ENOENT, to leave errno set to EACCESS if
314         that is the problem. (#334799, Yevgen Muntyan)
315
316 2006-03-30  Matthias Clasen  <mclasen@redhat.com>
317
318         * glib/gbookmarkfile.c (g_bookmark_file_get_app_info): Sync
319         the parameter names with the .h files, otherwise gtk-doc
320         misbehaves.
321
322 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
323
324         * tests/.cvsignore: Add bookmarkfile-test to the ignored files.
325
326 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
327
328         * tests/Makefile.am:
329         * tests/bookmarkfile-test.c:
330         * tests/run-bookmark-test.sh:
331         * tests/bookmarks/*.xbel: Add test suite for GBookmarkFile.
332
333 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
334
335         * docs/reference/glib/glib-docs.sgml:
336         * docs/reference/glib/glib-sections.txt:
337         * docs/reference/glib/tmpl/bookmarkfile.sgml: Add documentation for
338         GBookmarkFile to GLib's reference guide.
339
340 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
341
342         * glib/glib.h:
343         * glib/gbookmarkfile.h
344         * glib/gbookmarkfile.c: Add GBookmarkFile, a parser for files
345         containing bookmarks stored using the Desktop Bookmark
346         specification. Fixes bug #327662.
347
348         * glib/glib.symbols:
349         * glib/Makefile.am:
350         * glib/makefile.msc.in:
351         * glib/makefile.mingw.in: Build glue for GBookmarkFile.
352
353 2006-03-27  Dom Lachowicz  <cinamod@hotmail.com>
354
355         * tests/option-test.c: Copy-and-paste error slipped into test5. Enable
356         test5, as per Matthias' comments in bug 329548#c11.
357
358         Change a gboolean to an int. Fixes bug #329789.
359
360         * configure.in: Bump version number to 2.11.0
361         
362 2006-03-27  Matthias Clasen  <mclasen@redhat.com>
363
364         Add support for floating point numbers to goption.
365         (#329548, Behdad Esfahbod, patch by Antoine Dopffer and 
366          Dom Lachowicz)
367
368         * glib/goption.h:
369         * glib/goption.c: Support double arguments.
370
371         * tests/option-test.c: Test double arguments.`
372
373 2006-03-26  Matthias Clasen  <mclasen@redhat.com>
374
375         * glib/goption.c (g_option_context_new): Improve the description
376         of parameter_string in the docs.  (#336085, Claudio Saavedra)
377
378 2006-03-24  Martyn Russell  <martyn@imendio.com>
379
380         * glib/gthreadpool.c: Updated the documentation to explain that
381         when the maximum threads is > 1 the sort functionality is not 100%
382         accurate due to the ramdom nature of the scheduler choosing which
383         threads to execute. Fixes bug #334943.
384
385         * tests/threadpool-test.c: Disabled the debugging by default and
386         fixed the sort test to set the maximum threads to 1 to guarantee
387         the thread entry function is called in order. 
388
389 2006-03-23  Matthias Clasen  <mclasen@redhat.com> 
390
391         === Branch for 2.10 ===