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