0761d3d73a4f5f9a677c0675fec01d723e3fd4f1
[platform/upstream/glib.git] / ChangeLog
1 2005-10-29  Matthias Clasen  <mclasen@redhat.com>
2
3         * tests/convert-test.c: Add some tests for conversions between
4         UTF-8, UCS-4 and UTF-16.
5
6         * glib/gutf8.c (g_utf8_to_ucs4, g_utf8_to_utf16): Fix handling
7         of len == -1, noticed by Morten Welinder.
8
9 2005-10-27  Erdal Ronahi  <erdal.ronahi@gmail.com>
10
11         * configure.in: Added ku (Kurdish) to ALL_LINGUAS
12
13 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
14
15         * glib/gutf8.c (g_ucs4_to_utf8): Don't set items_read twice
16         in the error case, and add some documentation.  (#319806, Morten
17         Welinder)
18
19 2005-10-19  Manish Singh  <yosh@gimp.org>
20
21         * configure.in: Use AC_CHECK_FUNCS for _NSGetEnviron, to get the
22         config.h symbol automatically. Fixes bug #313731.
23
24 2005-10-19  Tor Lillqvist  <tml@novell.com>
25
26         * glib/gwin32.c (g_win32_get_package_installation_directory):
27         Return a g_strdup()ed copy of the value stored in the hash table,
28         so that it can be g_free()d without leaving a dangling pointer in
29         the hash table. (#319232)
30
31 2005-10-06  Matthias Clasen  <mclasen@redhat.com>
32
33         * glib/gunicollate.c (g_utf8_collate_key_for_filename): Handle
34         all-zero sequences correctly.  (#317930, Sebastien Bacher)
35
36 2005-10-05  Matthias Clasen  <mclasen@redhat.com>
37
38         * glib/gmarkup.c (g_markup_escape_text): Doc addition
39
40         * Makefile.am: Add Collation tests.
41
42         * tests/collate/*: Inputs and expected outputs for collation tests.
43
44         * tests/run-collate-tests.sh: Script to run collation tests.
45
46         * tests/unicode-collate.c (main): Rework slightly to make
47         it usable in unit tests. Also test g_utf8_collate_key_for_filename().
48
49 2005-10-01  Behdad Esfahbod  <behdad@gnome.org>
50
51         * docs/reference/glib/tmpl/unicode.sgml:
52         * glib/gen-unicode-tables.pl:
53         * glib/gunibreak.h:
54         * glib/gunichartables.h:
55         * glib/gunicode.h:
56         * tests/casefold.txt:
57         * tests/casemap.txt: Updated to Unicode 4.1.  There are five new
58         GUnicodeBreakType types.  That may break some applications, like
59         Pango <= 1.10.
60
61 2005-09-26  Matthias Clasen  <mclasen@redhat.com>
62
63         * glib/gstrfuncs.c (g_ascii_strtoull): Add details to the 
64         docs.  (#314393, Matthew F. Barnes)
65
66         * glib/glib.symbols:
67         * glib/gprintf.h: Remove g_snprintf() and g_vsnprintf(), since
68         they are already declared in glib.h. This doesn't break documented
69         use of gprintf.h, but should probably be pointed out in the 
70         release notes for 2.10. (#314232, Behdad Esfahbod)
71
72 Tue Sep 20 13:16:04 2005  Tim Janik  <timj@imendio.com>
73
74         * glib/gpattern.c (g_pattern_ph_match): applied significant recursion
75         complexity optimization, based on a patch from Matthias Clasen.
76
77         * tests/patterntest.c: more tests, mostly from matthias.
78
79 2005-09-20  Matthias Clasen  <mclasen@redhat.com>
80
81         * glib/gqueue.c (g_queue_insert_sorted): Correct the docs.
82         (#316703, Mark Drago)
83
84 Mon Sep 19 17:23:23 2005  Tim Janik  <timj@imendio.com>
85
86         * glib/gpattern.c: applied a patch from matthias which checks on the
87         upper bound of GPatternSpec length to optimize matches.
88         cosmetic fixups.
89
90         * tests/patterntest.c: added more match cases.
91
92 2005-09-16  Tor Lillqvist  <tml@novell.com>
93
94         * glib/gstrfuncs.c (g_ascii_strcasecmp, g_ascii_strncasecmp): Add
95         warning to doc comment that these functions should not be used on
96         encodings like CP932.
97
98 2005-09-14  Matthias Clasen  <mclasen@redhat.com>
99
100         * tests/keyfile-test.c: Add a test for grup names of length 1.
101
102         * glib/gkeyfile.c (g_key_file_line_is_group): Accept group names
103         of length 1.  (#316309)
104         
105 2005-09-12  Matthias Clasen  <mclasen@redhat.com>
106
107         * glib/gmarkup.c (g_markup_escape_text): Clarify docs.
108
109 2005-09-11  Sebastian Wilhelmi  <seppi@seppi.de>
110
111         * tests/refcount/Makefile.am (INCLUDES): Link the the refcount
112         tests to the system thread library $(G_THREAD_LIBS). Fixes #313744
113         and #314217.
114
115 2005-09-11  Kjartan Maraas  <kmaraas@gnome.org>
116
117         * glib/gmain.c: (g_child_watch_prepare), (g_child_watch_check),
118         (child_watch_helper_thread): Remove some dead code. Closes
119         bug #315278.
120
121 2005-09-07  Tor Lillqvist  <tml@novell.com>
122
123         * glib/Makefile.am: Create also a console version of the
124         gspawn-win32-helper program, gspawn-win32-helper-console.exe.
125         It's otherwise identical to gspawn-win32-helper.exe, except marked
126         as a console application (linked without the -mwindows option).
127         
128         * glib/gspawn-win32.c (do_spawn_directly, do_spawn_with_pipes):
129         Drop the dont_wait parameter. Its truth value correlated 100% with
130         the NULLness of the exit_status parameter anyway, so it's enough
131         to check whether exit_status is NULL. Invert the sense of the
132         dont_return_handle parameter and rename it to do_return_handle, to
133         make the code easier to read by avoiding double negations.
134
135         (g_spawn_sync_utf8, g_spawn_async_with_pipes_utf8): Modify calls
136         to do_spawn_with_pipes() accordingly.
137
138         (do_spawn_with_pipes): If we have a console, use the console
139         version of the helper program, otherwise use the GUI one. This
140         avoids extra console windows opening up in some situations. (In
141         case a console application uses the GUI gspawn-win32-helper.exe to
142         spawn another console application we would get a separate console
143         for the spawned console application).
144
145         * glib-zip.in: Distribute also gspawn-win32-helper-console.exe.
146
147 2005-09-05  Matthias Clasen  <mclasen@redhat.com>
148
149         * glib/gmappedfile.c (g_mapped_file_new): Report an error
150         if the file is too large.  (#315275, Kjartan Maraas)
151
152         * glib/gkeyfile.c (g_key_file_load_from_fd): The return value
153         of read() is signed.  (#315273, Kjartan Maraas)
154         
155 2005-08-31  Tor Lillqvist  <tml@novell.com>
156
157         * glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
158         the EXE and each DLL have their own atexit function chains.
159
160         #define g_atexit as atexit instead. This means it has a
161         better chance of doing what the caller wants. For instance,
162         gtkhtml calls g_atexit() registering a function in gtkhtml
163         itself. This caused a crash when g_atexit() was implemented as a
164         function in the GLib DLL. The gtkhtml DLL was already unloaded by
165         the time the GLib DLL got unloaded.
166
167         * glib/gutils.c: #undef the #define mentioned above, to also get a
168         real g_atexit() into the DLL for backward compatibility. Document
169         the Windows behaviour of g_atexit(), and document the varying ways
170         atexit() can behave in the context of dynamically loaded modules
171         on Unix.
172
173 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
174
175         * glib/glib.symbols: 
176         * glib/gquark.h: 
177         * glib/gdataset.c: Add string interning functions.
178
179 2005-08-28  Matthias Clasen  <mclasen@redhat.com>
180
181         * glib/giochannel.c: Unify some near-duplicate strings. (#314654,
182         Clytie Siddall)
183         
184 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
185
186         * configure.in: Bump version to 2.9.0
187
188 2005-08-25  Tor Lillqvist  <tml@novell.com>
189
190         Make also the g_spawn*() functions take parameters in the GLib
191         file name encoding, i.e. UTF-8, on Windows. Has no impact on Unix
192         API or ABI. Like the other GLib API that was earlier changed to
193         use UTF-8 on Windows, the names of the functions that take UTF-8
194         have _utf8 suffixes added by using preprocessor macros in the
195         header file. The old names are kept for functions with the old
196         behaviour, taking parameters in the system codepage, for DLL ABI
197         stability.
198         
199         * glib/gspawn.h: On Win32 add the suffix _utf8 to the names of the
200         g_spawn*() functions.
201         
202         * glib/gspawn-win32.c: Use wide-char API on NT-based
203         Windows. Convert parameters from UTF-8 to wide chars (NT) or
204         system codepage (Win9x) and call the C library _wspawn*() or
205         spawn*() functions respectvely. Add DLL ABI stability versions
206         that take parameters in the system codepage.
207
208         * glib/gspawn-win32-helper.c: On NT-based Windows use the
209         wide-char versions of argv and envp, and use wide-char API to
210         change directory and spawn the program to run. Remove the verbose
211         debugging output, it was too complex to modify for the wide-char
212         features. (Just add temporary debugging printouts if needed, no
213         need to have them permanently in the source.)
214
215         * glib/gspawn.c: Corresponding documentation updates.
216
217         * glib/glib.symbols: Corresponding changes: Mark the ABI stability
218         symbols as PRIVATE, add the new _utf8-suffixed ones.
219
220 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
221
222         * glib/gtypes.h (G_MININT64): Cast the constant to gint64; it is
223         guint64 otherwise and that can produce warnings about comparison
224         between signed and unsigned.
225
226 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
227
228         * glib/gutils.c: Fix the crt_externs.h include.
229
230 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
231
232         * NEWS: Fix spelling of my first name.
233
234 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
235
236         * Bump version
237
238         * === Released 2.8.1 ===
239
240         * NEWS: Updates
241
242 2005-08-20  Hans Breuer  <hans@breuer.org>
243
244         * glib/makefile.msc.in : link with ws2_32.lib
245
246 2005-08-18  Tor Lillqvist  <tml@novell.com>
247
248         * configure.in: Check for <sys/wait.h>
249
250         * glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
251
252 2005-08-18  Ross Burton  <ross@burtonini.com>
253
254         * glib/gstring.c:
255         Optimise single-character insertions.
256         
257         * glib/gutf8.c:
258         Note copied code.
259         
260         * tests/string-test.c:
261         Add tests for new optimisation, and fix a leak.
262
263 2005-08-17  Matthias Clasen  <mclasen@redhat.com>
264
265         * configure.in: Check for crt_externs.h and _NSGetEnviron.
266
267         * glib/gutils.c: On Darwin, include crt-externs.h and
268         define environ using _NSGetEnviron().  (#313731)
269
270 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
271
272         * glib/gutils.c (g_get_any_init): Move the body of the big if...
273         (g_get_any_init_do): ... to this new function.
274         (g_get_any_init): Declare as inline.
275         (g_get_any_init_locked): New inline function, does the locking.
276         Make use of these two throughout the code.
277
278 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
279
280         * glib/gbacktrace.c (g_on_error_stack_trace): Wait for
281         the child process and then simply return. This makes 
282         The "S" option work as documented in g_on_error_query().
283         (#313125, Matthew F. Barnes)
284
285         * glib/gunicode.h: Update the link to Unicode category
286         values.  (#313369, Behnam Esfahbod)
287
288         * glib/gqueue.c (g_queue_find_custom): Clarify docs
289         a little.  (#311727, Tristan van Berkom)
290
291         * glib/abicheck.sh, gobject/abicheck.sh: Make the 
292         check work on ia64 too, where some symbols ended up 
293         in yet another section.
294