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