added gbase64.obj and derive the static libs name from auto* variables
[platform/upstream/glib.git] / ChangeLog.pre-2-12
1 2006-04-07  Hans Breuer  <hans@breuer.org>
2
3         * glib/makefile.msc.in : added gbase64.obj and derive the static libs
4         name from auto* variables
5         * glib/makefile.msc.in : link user32.lib for MessageBox()
6
7 2006-04-07  Martyn Russell  <martyn@imendio.com>
8
9         * glib/gasyncqueue.[ch]: Added private API
10         _g_async_queue_get_mutex so that g_thread_pool_free() can use the
11         async queue mutex. 
12         
13         * glib/gthreadpool.c: Make sure
14         g_thread_pool_stop_unused_threads() actually stops unused threads
15         and global limits (like max idle time and max unused threads) can
16         be set without creating a thread pool first. Fixed #335215 (patch
17         from Chris Wilson).  
18         
19         * tests/threadpool-test.c: Added two new tests, tests setting
20         global limits before creating a thread pool. The second test
21         makes sure unused threads are actually stopped when using the
22         g_thread_pool_stop_unused_threads(). 
23
24 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
25
26         * glib/gnulib/vasnprintf.c (vasnprintf): Make
27         long long printing work if snprintf is not 
28         available.  (#332841, Michael McDonald)
29
30 2006-04-05  Behdad Esfahbod  <behdad@gnome.org>
31
32         * tests/option-test.c: Check the return value of g_get_prgname for
33         NULL before passing to strcmp.
34
35         * tests/slice-test.c: Report the correct name in Usage summary.
36
37 2006-04-05  Matthias Clasen  <mclasen@redhat.com>
38
39         * tests/run-collate-tests.sh: Fix up shell script.
40
41         * tests/option-test.c (arg_test5): Skip the test if
42         setting the locale fails.
43         (empty_test1): Reset prgname before the test.
44
45         * tests/Makefile.am: Arrange for run-bookmark-test.sh
46         to be run by make check.
47
48         * tests/utf8-pointer.c: 
49         * tests/tree-test.c: Silence warnings.
50
51 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
52
53         * glib/glib.symbols:
54         * glib/gbase64.[hc]: Add G_GNUC_MALLOC where
55         appropriate, use glib types.
56
57 2006-04-04  Alexander Larsson  <alexl@redhat.com>
58
59         * glib/Makefile.am:
60         * glib/gbase64.[ch]:
61         * glib/glib.symbols:
62         Add base64 encode/decode functions
63         
64         * glib/glib.h:
65         Include gbase64.h
66         
67         * tests/Makefile.am:
68         * tests/base64-test.c:
69         Tests for base64 functions
70
71 2006-04-04  Matthias Clasen  <mclasen@redhat.com>
72
73         * glib/gdate.c: Move short_month_names and long_month_names
74         to bss.
75
76         * glib/gspawn-win32.c (g_spawn_error_quark):
77         * glib/gspawn.c (g_spawn_error_quark):
78         * glib/gshell.c (g_shell_error_quark):
79         * glib/gmarkup.c (g_markup_error_quark):
80         * glib/goption.c (g_option_error_quark):
81         * glib/gkeyfile.c (g_key_file_error_quark):
82         * glib/giochannel.c (g_io_channel_error_quark):
83         * glib/gfileutils.c (g_file_error_quark):
84         * glib/gconvert.c (g_convert_error_quark):
85         * glib/gbookmarkfile.c (g_bookmark_file_error_quark):
86         * glib/gthread.c (g_thread_error_quark): No point in making
87         the error path fast by caching quarks.
88
89         * glib/gbookmarkfile.c: Make the parser struct const.
90
91 2006-04-04  Behdad Esfahbod  <behdad@gnome.org>
92
93         * glib/gbookmarkfile.c: Fix accidentally broken build.
94
95 2006-04-03  Matthias Clasen  <mclasen@redhat.com>
96
97         * glib/gbookmarkfile.c: Don't include sys/time.h  (#337027,
98          Kazuki IWAMOTO)
99
100 2006-03-31  Tor Lillqvist  <tml@novell.com>
101
102         * glib/gstdio.c (g_remove): Revert change below. It wasn't a good
103         idea after all, says the original bug reporter. See bug for
104         discussion.
105
106 2006-03-30  Tor Lillqvist  <tml@novell.com>
107
108         * glib/gstdio.c (g_remove): [Win32] call rmdir() only if remove()
109         fails with errno set to ENOENT, to leave errno set to EACCESS if
110         that is the problem. (#334799, Yevgen Muntyan)
111
112 2006-03-30  Matthias Clasen  <mclasen@redhat.com>
113
114         * glib/gbookmarkfile.c (g_bookmark_file_get_app_info): Sync
115         the parameter names with the .h files, otherwise gtk-doc
116         misbehaves.
117
118 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
119
120         * tests/.cvsignore: Add bookmarkfile-test to the ignored files.
121
122 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
123
124         * tests/Makefile.am:
125         * tests/bookmarkfile-test.c:
126         * tests/run-bookmark-test.sh:
127         * tests/bookmarks/*.xbel: Add test suite for GBookmarkFile.
128
129 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
130
131         * docs/reference/glib/glib-docs.sgml:
132         * docs/reference/glib/glib-sections.txt:
133         * docs/reference/glib/tmpl/bookmarkfile.sgml: Add documentation for
134         GBookmarkFile to GLib's reference guide.
135
136 2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>
137
138         * glib/glib.h:
139         * glib/gbookmarkfile.h
140         * glib/gbookmarkfile.c: Add GBookmarkFile, a parser for files
141         containing bookmarks stored using the Desktop Bookmark
142         specification. Fixes bug #327662.
143
144         * glib/glib.symbols:
145         * glib/Makefile.am:
146         * glib/makefile.msc.in:
147         * glib/makefile.mingw.in: Build glue for GBookmarkFile.
148
149 2006-03-27  Dom Lachowicz  <cinamod@hotmail.com>
150
151         * tests/option-test.c: Copy-and-paste error slipped into test5. Enable
152         test5, as per Matthias' comments in bug 329548#c11.
153
154         Change a gboolean to an int. Fixes bug #329789.
155
156         * configure.in: Bump version number to 2.11.0
157         
158 2006-03-27  Matthias Clasen  <mclasen@redhat.com>
159
160         Add support for floating point numbers to goption.
161         (#329548, Behdad Esfahbod, patch by Antoine Dopffer and 
162          Dom Lachowicz)
163
164         * glib/goption.h:
165         * glib/goption.c: Support double arguments.
166
167         * tests/option-test.c: Test double arguments.`
168
169 2006-03-26  Matthias Clasen  <mclasen@redhat.com>
170
171         * glib/goption.c (g_option_context_new): Improve the description
172         of parameter_string in the docs.  (#336085, Claudio Saavedra)
173
174 2006-03-24  Martyn Russell  <martyn@imendio.com>
175
176         * glib/gthreadpool.c: Updated the documentation to explain that
177         when the maximum threads is > 1 the sort functionality is not 100%
178         accurate due to the ramdom nature of the scheduler choosing which
179         threads to execute. Fixes bug #334943.
180
181         * tests/threadpool-test.c: Disabled the debugging by default and
182         fixed the sort test to set the maximum threads to 1 to guarantee
183         the thread entry function is called in order. 
184
185 2006-03-23  Matthias Clasen  <mclasen@redhat.com> 
186
187         === Branch for 2.10 ===