Add docs
[platform/upstream/glib.git] / ChangeLog
1 2009-01-02  Matthias Clasen  <mclasen@redhat.com>
2
3         * glib/gregex.c: Add an example to the g_regex_replace_eval() docs.
4
5 2009-01-02  Matthias Clasen  <mclasen@redhat.com>
6
7         * glib/gstrfuncs.c: Move docs inline, adding references to g_free()
8         where appropriate.
9
10 2009-01-02  Matthias Clasen  <mclasen@redhat.com>
11
12         Bug 564210 – SUN Studio 12 has supported visibility attribute
13
14         * configure.in: Use visibility attribute for new enough sun cc.
15         Patch by Chris Wang
16
17 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
18
19         Bug 565905 – There is no named g_context_group_set_translation_domain()
20         in GOption command line parser
21
22         * glib/goption.c: Fix a wrong reference in the docs, reported by
23         Takeshi Aihana.
24
25 2008-12-30  Matthias Clasen  <mclasen@redhat.com>
26
27         * glib/gspawn.c:
28         * glib/gthread.c:
29         * glib/goption.c:
30         * glib/gmain.c:
31         * glib/gkeyfile.c:
32         * glib/gfileutils.c:
33         * glib/gdate.c:
34         * glib/garray.c:
35         * glib/gbookmarkfile.c:
36         * glib/gbacktrace.c: Fix some compiler warnings.
37
38 2008-12-19  Tor Lillqvist  <tml@novell.com>
39
40         * glib/glib.symbols: Add g_thread_get_initialized here,
41         too. Surround g_test_config_vars with ifdef INCLUDE_VARIABLES.
42
43 2008-12-18  Mike Kestner <mkestner@novell.com>
44
45         Bug 560676 - function access for g_threads_supported
46
47         * glib/gthreads.c (g_thread_get_initialized): new accessor for
48         g_threads_supported macro.
49         * glib/gthreads.h: add g_thread_get_initialized
50
51 2008-12-15  Matthias Clasen <mclasen@redhat.com>
52
53         * configure.in: Bump version
54
55         * === Released 2.19.3 ===
56
57 2008-12-13  Matthias Clasen <mclasen@redhat.com>
58
59         * NEWS: Updates
60
61 2008-12-12  Dan Winship  <danw@gnome.org>
62
63         * glib/pltcheck.sh: make this work on x86_64
64
65 2008-12-12  Behdad Esfahbod  <behdad@gnome.org>
66
67         * glib/guniprop.c: Improve g_unichar_iswide_cjk() docs.
68
69 2008-12-07  Matthias Clasen  <mclasen@redhat.com>
70
71         Bug 508021 – Add support for the CRIS and CRISv32 architectures
72
73         * configure.in: 
74         * glib/gatomic.c: Add an implementation for the CRIS and CRISv32 
75         architectures, by Peter Kjellerstedt
76
77 2008-12-02  Matthias Clasen  <mclasen@redhat.com>
78
79         * glib/gkeyfile.c: Some more documentation additions.
80
81 2008-12-01  Matthias Clasen  <mclasen@redhat.com>
82
83         * configure.in: Bump version
84
85 2008-12-01  Matthias Clasen  <mclasen@redhat.com>
86
87         * === Released 2.19.2 ===
88
89 2008-12-01  Matthias Clasen  <mclasen@redhat.com>
90
91         * configure.in: Bump version
92
93 2008-12-01  Matthias Clasen  <mclasen@redhat.com>
94
95         * === Released 2.19.1 ===
96
97         * NEWS: Updates
98
99 2008-11-28  Behdad Esfahbod  <behdad@gnome.org>
100
101         Bug 562639 – g_parse_debug_flags() parsing "help"
102
103         * glib/gutils.c (g_parse_debug_string): Print available keys if
104         string is "help".
105
106 2008-11-28  Behdad Esfahbod  <behdad@gnome.org>
107
108         Bug 562638 – GDebugKey key member should be const
109
110         * glib/gutils.h: Change GDebugKey key member from gchar * to
111         const gchar *.
112
113 2008-11-28  Matthias Clasen  <mclasen@redhat.com>
114
115         Bug 547264 – Missing "no flags" flag
116
117         * glib/gregex.c: Mention 0 as value for 'no flags' in some places..
118         Pointed out by Bastien Nocera
119
120 2008-11-28  Matthias Clasen  <mclasen@redhat.com>
121
122         Bug 562544 – g_key_file_get_string and g_key_file_get_value
123         documentation does not explain the difference
124
125         * glib/gkeyfile.c (g_key_file_get_string): Explain the difference
126         to g_key_file_get_value(). Pointed out by Mart Raudsepp.
127
128 2008-11-28  Matthias Clasen  <mclasen@redhat.com>
129
130         * glib/gkeyfile.c: Refer to @locale parameters as locale identifier
131         in docs.
132
133 2008-11-28  Matthias Clasen  <mclasen@redhat.com>
134
135         Bug 557603 – carbon check output misplaced
136
137         * configure.in: Call AC_PROG_CPP early to avoid it messing up
138         carbon check output. Fix proposed by Christian Persch
139
140 2008-11-28  Matthias Clasen  <mclasen@redhat.com>
141
142         Bug 559110 – Do not include libintl.h after glibintl.h
143
144         * glib/glibintl.h: Define bind_textdomain_codeset in the DISABLE_NLS
145         branch. Patch by Peter Kjellerstedt.
146
147         * glib/gutil.c: Don't include libintl.h directly.
148
149 2008-11-28  Matthias Clasen  <mclasen@redhat.com>
150
151         Bug 562378 – callback return value not respected for callback option
152         with no arg
153
154         * glib/goption.c (parse_long_option): Return the parse_arg return
155         value even for no-arg callbacks. Patch by Christian Persch
156
157         * glib/tests/option-context.c: Add a test for a callback which
158         returns FALSE.
159
160 2008-11-23  Christian Persch  <chpe@gnome.org>
161
162         Bug 559413 – g_option_group_set_error_hook docs buglet
163
164         * glib/goption.c: Doc fix.
165
166 2008-11-23  Christian Persch  <chpe@gnome.org>
167
168         Bug 560568 – gkeyfile docs buglet
169
170         * glib/gkeyfile.c: Clarify the docs.
171
172 2008-11-23  Christian Persch  <chpe@gnome.org>
173
174         Bug 560569 – gkeyfile doesn't use the set list_separator in some cases
175
176         * glib/gkeyfile.c: (g_key_file_get_locale_string_list),
177         (g_key_file_set_locale_string_list), (g_key_file_set_integer_list),
178         (g_key_file_set_double_list): Use the key file's list separator character,
179         not the default one.
180
181         * glib/tests/keyfile.c: (test_lists), (test_reload_idempotency): Test
182         this.
183
184 2008-11-21  Christophe Fergeau <teuf@gnome.org>
185
186         Bug 561212 – GFileReadMoreCallback API doc refers to non-existant function
187
188         * gio/giotypes.h: fix name of function referred to in
189         GFileReadMoreCallback API documentation
190
191 2008-11-21  Matthias Clasen <mclasen@redhat.com>
192
193         * configure.in: Bump gtk-doc dependency to 1.11 for
194         nicer index-generation.
195
196 2008-11-14  Matthias Clasen <mclasen@redhat.com>
197
198         * NEWS: Updates
199
200 2008-11-04  Christian Dywan  <christian@imendio.com>
201
202         Bug 558672 – NULL key lookup using g_hash_table_lookup_extended()
203
204         * glib/ghash.c:
205         Clarify g_hash_table_lookup_extended
206
207 2008-11-02  Tor Lillqvist  <tml@novell.com>
208
209         * configure.in: Expand also build/win32/vs9/Makefile.
210
211 2008-10-31  Christian Dywan  <christian@imendio.com>
212
213         Bug 558513 – g_warn_if_fail FIXME in gtestutils
214
215         * glib/gtestutils.c (g_test_log_send):
216         Turn g_assert into g_warn_if_fail as advised
217
218 2008-10-31  Grahame Bowland  <grahame@angrygoats.net>
219
220         Bug 558185 – 'parent' variable in g_local_file_get_child_for_display_name() 
221         hits g_object_unref(NULL) assertion
222
223         * gio/glocalfile.c: 
224         - remove unused variable. Patch by Matt Johnston <matt@ucc.asn.au>
225
226 2008-10-29 16:11:14  Tim Janik  <timj@gtk.org>
227
228         * glib/gmacros.h: added G_PASTE() and G_STATIC_ASSERT(), based on
229         patches by Christian Persch and Christian Dywan. Fixes:
230         Bug 558381 - Add support for compile time assertions
231
232 2008-10-27  Joseph Pingenot  <gnomesvn@digitasaru.net>
233
234         * glib/ghash.c: changed "#GHashTableIterator" to "#GHashTableIter"
235         in the documentation-comments above g_hash_table_foreach_remove()
236         and g_hash_table_foreach_steal() to correctly name and link to
237         GHashTableIter.  This affects the GNOME documentation website
238         as well, so further steps are likely necessary beyond this subproject..
239
240 2008-10-23 Matthias Clasen <mclasen@redhat.com>
241
242         Bug 557210 – g_compute_checksum_for_* asserts with less than 2 bytes
243
244         * glib/gchecksum.c (g_compute_checksum_for_data): Accept 
245         lengths < 2. Patch by Tommi Komulainen
246
247         * tests/checksum-test.c: Add a test for this
248
249 2008-10-23 Matthias Clasen <mclasen@redhat.com>
250
251         Bug 556921 – gpoll.h breaks hal compilation
252
253         * glib/gpoll.h: Include gtypes.h. Pointed out by Anis Elleuch
254
255 2008-10-20 Christian Persch <chpe@gnome.org>
256
257         Bug 557087 – mem leak in g_content_types_get_registered
258                 
259         * gio/gcontenttype.c: Plug a mem leak.
260
261 2008-10-19  Michael Natterer  <mitch@imendio.com>
262
263         Bug 556186 – gpoll.h breaks gmain.h inclusion
264
265         * glib/gpoll.h: different fix: disallow direct inclusion
266         unconditionally again but make an exception if included from
267         gmain.h to maintain compatibility.
268
269 2008-10-16  Matthias Clasen <mclasen@redhat.com>
270
271         * configure.in: Bump version to 2.19.1
272
273         * === Released 2.19.0 ===
274
275         * NEWS: Updates
276
277 2008-10-14  Christian Persch <chpe@gnome.org>
278
279         Bug 556186 – gpoll.h breaks gmain.h inclusion
280
281         * glib/gpoll.h: Only disallow direct inclusion when
282         G_DISABLE_SINGLE_INCLUDES is defined.
283
284 2008-10-13  Sven Herzberg  <sven@imendio.com>
285
286         Bug 556101 – static mutex yields warnings with g++
287         Reviewed by Tim Janik
288
289         * configure.in: added an intermediate cast to gpointer
290
291 2008-10-13  Christian Persch <chpe@gnome.org>
292
293         Bug 555311 – format not a string literal and no format arguments
294
295         * glib/gmarkup.c:
296         * glib/gshell.c: Use literal errors where appropriate.
297
298 2008-10-10  Behdad Esfahbod  <behdad@gnome.org>
299
300         Bug 551355 – [PATCH] Make glib build with libtool 2.2
301
302         * autogen.sh: Accept libtool 2.2.   We are moving towards having
303         it working.
304
305 2008-10-10  Behdad Esfahbod  <behdad@gnome.org>
306
307         * configure.in: With libtool 2.x, regenerate libtool early.
308         Based on bug 552107, patch by Patryk Zawadzki
309
310 2008-10-10  Matthias Clasen  <mclasen@redhat.com>
311
312         Bug 554557 – Patch to fix gcc warnings about missing format 
313         specifiers
314
315         * glib/gmarkup.c:
316         * glib/gshell.c:
317         * glib/grel.c: Fix gcc warnings. Patch by Kjartan Maraas
318
319 2008-10-10  Matthias Clasen  <mclasen@redhat.com>
320
321         Bug 552861 – glib-2.0.m4 calls system(3) without storing its result
322
323         * m4macros/glib-2.0.m4: Cosmetic change to make -Werror happy.
324         Patch by Andreas Köhler
325
326 2008-10-08  Christian Persch  <chpe@gnome.org>
327
328         Bug 555313 – GFileAttribute boxed type get_type function should
329         use usual get_type pattern
330
331         * gio/gfileattribute.c (g_file_attribute_info_list_get_type): Use
332         g_once_init_enter/leave.
333
334 2008-10-08  Christian Persch  <chpe@gnome.org>
335
336         Bug 555314 – mem leak in gmarkup
337
338         * glib/gmarkup.c: (g_markup_parse_context_parse): Plug a mem leak.
339
340 2008-10-08  Tor Lillqvist  <tml@novell.com>
341
342         Bug 554790 - g_convert() misbehaves with winiconv versions
343
344         * glib/win_iconv.c (kernel_mbtowc): If converting from ASCII,
345         explicitly check for and reject 8bit chars. MultiByteToWideChar()
346         doesn't, at least not on XP.
347
348 2008-10-06  Matthias Clasen  <mclasen@redhat.com>
349
350         * glib/gtypes.h: Properly include gmacros.h
351
352 2008-10-06  Behdad Esfahbod  <behdad@gnome.org>
353
354         Bug 555309 – giochannel breaks on error
355         Patch from Christian Persch
356
357         * glib/giounix.c (g_io_unix_read), (g_io_unix_write),
358         (g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags):
359         Don't shadow err.  Oops!
360
361 2008-10-06  Christophe Fergeau  <teuf@gnome.org>
362
363         Bug 555224 – Improve g_format_size_for_display doc
364         
365         * glib/gfileutils.c: change g_format_size_for_display API doc to
366         explicitly say that the returned string has to be freed. Change
367         spelling of "newly allocated" to "newly-allocated" in g_file_read_link
368         API doc to be more consistent with what is done in that file.
369
370 2008-10-01  David Zeuthen  <davidz@redhat.com>
371
372         * README.in: Add "Notes about glib 2.20" section detailing the
373         ramifications of the patch from bug #528670.
374
375 2008-09-30  Behdad Esfahbod  <behdad@gnome.org>
376
377         Bug 554092 – glib doesn't return G_FILE_ERROR_NOENT et al on OS X
378
379         * glib/giounix.c (g_io_unix_read), (g_io_unix_write),
380         (g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags),
381         (g_io_unix_get_flags), (g_io_channel_new_file):
382         Like mclasen says: "well, thats the way errno works...,
383         save it or loose it".  Save errno.
384
385 2008-09-30  Tor Lillqvist  <tml@novell.com>
386
387         * Makefile.decl
388         * glib/tests/Makefile.am: Bypass gtester related stuff on Windows.
389
390 2008-09-30  Tor Lillqvist  <tml@novell.com>
391
392         * glib/gprintf.c
393         * glib/gnulib/vasnprintf.c: Don't define _GNU_SOURCE on Windows,
394         as _GNU_SOURCE has unintended side effects when compiling against
395         newest mingw headers.
396
397 2008-09-26  Dan Winship  <danw@gnome.org>
398
399         Bug 553447 – g_assert_no_error()
400
401         * glib/gtestutils.h (g_assert_no_error, g_assert_error): Macros to
402         assert that a GError is not set, or else is set to a particular
403         error.
404
405         * glib/gtestutils.c (g_assertion_message_error): utility for
406         those macros
407
408         * glib/tests/keyfile.c:
409         * tests/asyncqueue-test.c:
410         * tests/bookmarkfile-test.c:
411         * tests/convert-test.c:
412         * tests/file-test.c: Use g_assert_error/g_assert_no_error
413
414 2008-09-26  Dan Winship  <danw@gnome.org>
415
416         * glib/gthreadpool.c (wakeup_thread_marker): make this a "const
417         gpointer" rather than a gconstpointer to avoid warnings later
418
419         * glib/pcre/pcre_ucp_searchfuncs.c:
420         * glib/pcre/pcre_valid_utf8.c: #include "config.h"
421
422         * glib/tests/printf.c (test_d): fool gcc into not warning about
423         some printf format strings that we know are dubious
424
425 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
426
427         Bug 553857 – gbacktrace.h requires signal.h
428
429         * glib/gbacktrace.h: Include signal.h for raise(). 
430         Pointed out by Sebastien Bacher
431
432 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
433
434         Bug 553724 – python interpretter path not patched in correctly
435
436         * glib/Makefile.am: Fix the sed magic to replace python.
437
438 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
439
440         * glib/gmain.c: Add some more docs.
441
442         * glib/giochannel.c: Move more docs inline, and improve them
443         on the way.
444
445 2008-09-25  Tor Lillqvist  <tml@novell.com>
446
447         Bug 553820 - gpoll.c: undeclared identifier
448
449         * glib/gmain.c
450         * glib/gpoll.c: Make the g_poll() function non-static also on
451         Windows. Prefix an underscore to the g_main_poll_debug variable
452         and make it non-static in gmain.c so that it can be used in
453         gpoll.c. Add back missing variable declaration.
454
455 2008-09-25  Tor Lillqvist  <tml@novell.com>
456
457         * glib/gspawn-win32.c (do_spawn_with_pipes) (do_spawn_directly):
458         Just ignore the child_setup function, never call it. The is no
459         situation in which it could be useful on Windows. Do print a
460         warning, like before.
461
462         * glib/gspawn.c (g_spawn_async_with_pipes): Corresponding change
463         in documentation.
464
465 2008-09-24  Sven Herzberg  <sven@imendio.com>
466
467         Be a little more explcit in the docs. Includes Owen's requested
468         changes.
469
470         * glib/gmain.c: improved documentation for g_source_attach() and
471         g_source_destroy()
472
473 2008-09-23  Michael Natterer  <mitch@imendio.com>
474
475         * glib/glib.h: #include <glib/gpoll.h>
476
477         * glib/gpoll.h: #error out if gpoll.h is included directly.
478
479         * glib/gpoll.c: remove trailing whitespace.
480
481 2008-09-23  Dan Winship  <danw@gnome.org>
482
483         * glib/gpoll.[ch] (g_poll): Move this out of gmain.c and make it part
484         of the public API. (Part of Bug 505361 - gunixinputstream.c assumes
485         poll() available.)
486
487 2008-09-23  Tor Lillqvist  <tml@novell.com>
488
489         * glib/gmain.c (poll_rest) [Win32]: Fix embarrassing bug: I was
490         passing an incorrect third parameter to memmove(), had forgotten
491         to multiply by the size of the table entry. Just use a for loop
492         instead, clearer. Odd I didn't notice when testing this code.
493
494 2008-09-19  Hans Petter Jansson  <hpj@novell.com>
495
496         Rewrite most of GHashTable to use open addressing with quadratic
497         probing instead of chaining. This has the potential to reduce memory
498         fragmentation significantly, while being slightly faster due to
499         better locality and no need to call alloc/free functions for nodes.
500         Benchmarks suggest it also uses less memory overall.
501
502         * glib/ghash.c (prime_mod): Table of suitable primes for
503         initial-probe distribution.
504         (g_hash_table_set_shift): New function.
505         (g_hash_table_find_closest_shift): New function.
506         (g_hash_table_set_shift_from_size): New function.
507         (g_hash_table_lookup_node_for_insertion): New function.
508         (g_hash_table_lookup_node): Rewritten to return node index instead of
509         pointer, use quadratic probe on flat table, and not return insertion
510         data. The latter saves some computation for read-only lookups.
511         (g_hash_table_remove_node): Rewrite to take a pointer directly to the
512         node structure to remove, and clear that. Remove unlinking code.
513         (g_hash_table_remove_all_nodes): Rewrite to not clear nodes
514         individually, but en masse using memset () after potentially calling
515         notify functions.
516         (iter_remove_or_steal): Use new data structure and algorithm. Vastly
517         simplified - now just a call to g_hash_table_remove_node ().
518         (g_hash_table_resize): New resize code, re-indexing with new prime
519         and cleaning up tombstones.
520         (g_hash_table_maybe_resize): Table may hold 8 buckets minimum, no less
521         than 1/4 load excluding tombstones, and no more than 15/16 load
522         including tombstones. These numbers are the results of a lot of
523         benchmarking with multiple complex applications, and should not be
524         changed lightly.
525         (g_hash_table_iter_next)
526         (g_hash_table_lookup)
527         (g_hash_table_lookup_extended)
528         (g_hash_table_insert_internal)
529         (g_hash_table_remove_internal)
530         (g_hash_table_foreach_remove_or_steal)
531         (g_hash_table_foreach)
532         (g_hash_table_find)
533         (g_hash_table_get_keys)
534         (g_hash_table_get_values): Use new data structure and algorithm,
535         fairly trivial changes.
536
537 2008-09-19  Tor Lillqvist  <tml@novell.com>
538
539         * glib-zip.in: Look for man pages in share/man.
540
541         * glib/gutils.c (_glib_get_dll_directory)
542         * glib/gspawn-win32.c (do_spawn_with_pipes): Be a bit less
543         restrictive, look for the helper programs in the same folder where
544         the GLib DLL is, not necessarily in a "bin" subfolder of the top
545         GLib installation folder.
546
547 2008-09-18  Matthias Clasen <mclasen@redhat.com>
548
549         * configure.in: Bump version to 2.19.0
550
551         * ChangeLog.pre-2-18: rotate ChangeLog
552         
553         * === branch for 2.18 ===