forked from GNOME/glib
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog.pre-2-14
1963 lines (1262 loc) · 58.5 KB
/
ChangeLog.pre-2-14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2007-11-07 Matthias Clasen <[email protected]>
=== Branch for 2.14 ===
2007-11-07 Matthias Clasen <[email protected]>
* glib/gspawn.c (g_spawn_async_with_pipes): Slightly improve
the wording of the docs. (#492677, Areg Beketovski)
2007-11-07 Matthias Clasen <[email protected]>
* glib/pcre/Makefile.am: Add an include to fix builddir != srcdir
builds. (#494602, Yevgen Muntyan)
2007-11-07 Tor Lillqvist <[email protected]>
* glib/update-pcre/notdll.patch: Not needed, just use -DPCRE_STATIC.
* glib/update-pcre/Makefile.am: Drop notdll.patch.
* glib/update-pcre/Makefile.am-1
* glib/update-pcre/update.sh
* glib/pcre/Makefile.am
* glib/Makefile.am: Use -DPCRE_STATIC.
* tests/gio-test.c
* tests/mainloop-test.c
* tests/spawn-test.c: #define pipe(fds) _pipe(fds, 4096,
_O_BINARY) on Windows
* tests/regex-test.c (test_expand): Don't print NULL with %s.
2007-11-07 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.14.3 ===
* NEWS: Updates
2007-11-06 Matthias Clasen <[email protected]>
* glib/pcre/*: Update the internal copy of PCRE to 7.4
2007-10-22 Tor Lillqvist <[email protected]>
* glib/gutils.c (_glib_gettext): Plug small one-time leak on
Windows. (#488068, Daniel Atallah)
2007-10-21 Behdad Esfahbod <[email protected]>
* glib/gdate.c (g_date_strftime):
* glib/gmain.c (g_main_context_check):
* glib/gregex.c (g_match_info_fetch_all), (g_regex_split_full):
* glib/gthread.c (g_once_init_enter_impl), (g_once_init_leave):
* glib/gthread.h:
* glib/gutf8.c (g_utf16_to_utf8), (g_utf16_to_ucs4):
* tests/errorcheck-mutex-test.c (lock_locked_mutex),
(trylock_locked_mutex), (unlock_unlocked_mutex),
(free_locked_mutex), (wait_on_unlocked_mutex),
(wait_on_otherwise_locked_mutex), (timed_wait_on_unlocked_mutex),
(timed_wait_on_otherwise_locked_mutex):
Fix warnings from sparse. (#487491, Kjartan Maraas)
2007-10-17 Matthias Clasen <[email protected]>
* configure.in: Bump version
2007-10-16 Matthias Clasen <[email protected]>
* === Released 2.14.2 ===
* NEWS: Updates
* configure.in: Check for sys/resource.h
* glib/gspawn.c: Improve the fdwalk implementation on Linux
to only walk over actually open file descriptors. (#469231,
Lennart Poettering)
2007-10-13 Sven Herzberg <[email protected]>
Reviewed by Tim Janik.
Created marshallers that don't throw gcc warnings when compiling with
-WUnused (fixes #359165).
* gobject/glib-genmarshal.c: decorate return_value and invocation_hint
with G_GNUC_UNUSED
2007-10-04 Tor Lillqvist <[email protected]>
* glibconfig.h.win32.in: Always define G_CAN_INLINE. Even MSVC6 is
capable of inlining. (#483337, Steve Lhomme)
2007-09-19 Behdad Esfahbod <[email protected]>
* glib/ghook.c (g_hook_free): Check for NULL finalizer. (#476849, Areg
Beketovski)
2007-09-19 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.14.1 ===
2007-09-16 Matthias Clasen <[email protected]>
* glib/gutils.h (GUserDirectory): Fix doc formatting.
* glib/gmain.c (g_main_depth): Fix doc formatting.
2007-09-16 Matthias Clasen <[email protected]>
* configure.in: Replace -pthread by -lpthread for
Freebsd, too. (#475619, Roy Marples)
2007-09-16 Matthias Clasen <[email protected]>
* configure.in: When compiling against system pcre,
add a private dependency to the pc file. This should
fix static builds with system pcre. (#475923)
* glib-2.0.pc.in: Add a Requires.private line
2007-09-16 Matthias Clasen <[email protected]>
* NEWS: Updates
2007-09-14 15:07:28 Tim Janik <[email protected]>
* glib/gutf8.c (g_utf8_strreverse): applied fix for bug #476840.
* tests/utf8-pointer.c (test_misc): added test for g_utf8_strreverse().
2007-09-11 Marco Barisione <[email protected]>
* glib/Makefile.am:
* configure.in: propagate the pcre flags to libglib and not to all
parts of glib. (#475854, [email protected])
* configure.in: fix a typo in the previous commit. (#475854, comment
#4)
2007-09-11 Matthias Clasen <[email protected]>
* configure.in: Define G_ATOMIC_ARM.
* glib/gatomic.c: Add Arm implementation of atomic
operations. (#457601, Jussi Laako)
2007-09-10 Marco Barisione <[email protected]>
* glib/gregex.c: define PCRE_ERROR_NULLWSLIMIT if it's not defined by
PCRE, has PCRE 7.3 removed this definition. (#475474)
* configure.in: bump PCRE requirement to version 7.2.
* glib/gregex.c: use pcre_get_stringnumber() in
get_matched_substring_number() if G_REGEX_DUPNAMES was not set.
(#444765, Yevgen Muntyan)
* glib/gregex.c: change the type of ref_count from guint to gint, so
we can remove some ugly casts.
2007-09-05 Behdad Esfahbod <[email protected]>
* glib/gregex.c: Fix header inclusion. (#473879, Peter Kjellerstedt)
Wed Aug 29 12:08:40 2007 Tim Janik <[email protected]>
* glib/gthread.h (g_once_init_enter): fixed compiler warning about
loosing volatile qualifier, bug #457641.
2007-08-24 Michael Natterer <[email protected]>
* glib/gslice.[ch]: make g_slice_copy() take a gconstpointer
instead of a gpointer.
2007-08-22 Cody Russell <[email protected]>
* glib/gprintf.c: Document all printf functions to use
"bytes" terminology rather than "characters". (#469051)
2007-08-20 Behdad Esfahbod <[email protected]>
* glib/guniprop.c: Document that g_unichar_get_script() is
equivalent to pango_script_for_unichar().
2007-08-20 Behdad Esfahbod <[email protected]>
* glib/gmappedfile.c:
* glib/gregex.c:
* glib/gstdio.c:
Fix typos (#468694).
2007-08-14 Cody Russell <[email protected]>
* gobject/gsignal.c: g_type_default_interface_ref() was not
ensuring working g_signal_list_ids. Added checks for
!G_TYPE_IS_INTERFACE (itype).
(#465625, by some guy who calls himself Yeti)
Tue Aug 14 02:06:10 2007 Tim Janik <[email protected]>
* glib/gthread.c (g_once_init_enter_impl): prevent race covered
by g_once_init_enter(), by checking for previous initializations
before entering initialisation branch.
* tests/onceinit.c: added multi-thread/multi-initializer stress test
using unoptimized g_once_init_enter_impl().
Mon Aug 13 14:30:15 2007 Tim Janik <[email protected]>
* tests/onceinit.c (main): fixed array size typo.
Mon Aug 13 14:21:44 2007 Tim Janik <[email protected]>
* tests/onceinit.c: test g_once_init_*() before and after
g_thread_init() and test concurrency resolution.
Mon Aug 13 14:18:22 2007 Tim Janik <[email protected]>
* glib/gthread.c (g_thread_create_full): prevent linking a freed
GThread structure into global thread list in error cases.
2007-08-08 Matthias Clasen <[email protected]>
* glib/gmarkup.c (append_escaped_text): Handle restricted
characters by converting them to numeric character
entities. (#464145, Andreas Monitzer)
* tests/markup-escape-test.c: Add tests for restricted
characters and numeric character entities.
2007-08-08 Matthias Clasen <[email protected]>
* glib/glib.symbols:
* glib/Makefile.am:
* glib/abicheck.sh: Make it work regardless of --enable-debug
2007-08-08 Tristan Van Berkom <[email protected]>
* docs/reference/gobject/tmpl/gparamspec.sgml: Fixed minor typo in docs.
2007-08-07 Matthias Clasen <[email protected]>
* MAINTAINERS: Update for new format regulations
2007-08-03 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.14.0 ===
* NEWS: Updates
* configure.in: Bump version to 2.14.0
2007-08-03 Matthias Clasen <[email protected]>
* glib/gregex.c: Revert the J handling change,
since it doesn't work.
2007-08-03 Matthias Clasen <[email protected]>
* glib/gregex.c: Fix a C99ism. (#462549, Kazuki IWAMOTO)
2007-08-03 Matthias Clasen <[email protected]>
* glib/gregex.c: Handle J changes in the pattern
correctly. (#444765, Yevgen Muntyan)
2007-08-03 Pramod Raghavendra <[email protected]>
* configure.in: Added kn to ALL_LINGUAS
2007-08-01 Tor Lillqvist <[email protected]>
* glib/update-pcre/notdll.patch: Update so it applies again.
* glib/pcre/pcre.h: Corresponding change.
* glib/gutils.c (get_special_folder): Drop leftover use of a
union.
* glibconfig.h.win32.in: Update to match what configure produces.
2007-07-31 Matthias Clasen <[email protected]>
* glib/pcre/*: Update the internal PCRE to 7.2
2007-07-31 Matthias Clasen <[email protected]>
* glib/pltcheck.sh: Fix some glitches
* glib/gregex.c: Remove debug spew
2007-07-21 Matthias Clasen <[email protected]>
* glib/gunidecomp.c:
* glib/gregex.c:
* glib/gstring.c: Various doc cleanups.
2007-07-20 Alexander Larsson <[email protected]>
* configure.in:
Add goffset type (64bit file size)
Add G_MAXSSIZE and G_MINSSIZE
2007-07-20 Matthias Clasen <[email protected]>
* glib/glib.symbols: Fix the build.
2007-07-19 Behdad Esfahbod <[email protected]>
* glib/glib.symbols:
* glib/gunicode.h:
* glib/gunicodeprivate.h:
* glib/gunidecomp.c (g_unichar_combining_class):
* glib/guniprop.c (has_more_above):
Make g_unichar_combining_class() public. (#453998)
Fri Jul 13 01:01:46 2007 Tim Janik <[email protected]>
* glib/gthread.[hc]: more atomic ops pointer cast fixes. this time it'll
work with atomic op macros *and* atomic op functions.
Fri Jul 13 00:50:40 2007 Tim Janik <[email protected]>
* glib/gthread.[hc]: fixed missing pointer casts when using atomic ops.
2007-07-12 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.13.7 ===
* NEWS: Updates
Thu Jul 12 17:31:08 2007 Tim Janik <[email protected]>
* tests/slice-concurrent.c: beautified output somewhat. fixed long
sleeps by reducing sleep accumulating and using randomized re-scheduling
(which works on UP and SMP). increased possible blocksizes.
Thu Jul 12 17:26:05 2007 Tim Janik <[email protected]>
* tests/slice-concurrent.c: added GSLice test from Stefan Westerfeld,
bug #433314.
Thu Jul 12 15:46:40 2007 Tim Janik <[email protected]>
* glib/gslice.c: migrate per-thread magazine caches from single-thread
scenario to first thread using GSlice after g_thread_init(); based on
a patch by Tor Lillqvist, fixes #331853.
removed warning about g_thread_init() being called after other glib
functions (in particular g_slice* calls), because GSlice can cope
with this now and the rest of glib is believed to cope as well.
* tests/slice-threadinit.c: new test program which tests GSlice working
across g_thread_init() calls.
2007-07-10 Matthias Clasen <[email protected]>
* glib/pltcheck.sh: Add g_once_init_enter to the whitelist of
symbols allowed to have a local PLT entry, to fix 'make check'.
Tue Jul 10 12:24:35 2007 Tim Janik <[email protected]>
* glib/gthread.[hc]: implemented g_once_init_enter(),
g_once_init_enter_impl() and g_once_init_leave(), based on a patch by
Antoine Tremblay, fixes #65041.
adapted exported inline function mechanism from gutils.[hc] for inlining
g_once_init_enter_impl() in gthread.[hc].
2007-07-09 Matthias Clasen <[email protected]>
* NEWS: Updates
2007-07-09 Loïc Minier <[email protected]>
* tests/refcount/closures.c: (main): Output newlines after thousand
iterations of the inner-loop of the closures test; this helps having
smaller lines and continuously outputting new lines. (#447048).
2007-07-09 Ryan Lortie <[email protected]>
* glib/gfileutils.c (write_to_temp_file): save errno to prevent it
being clobbered by call to g_filename_display_name(). Bug #453796.
2007-07-09 Matthias Clasen <[email protected]>
* m4macros/glib-gettext.m4: Fix a small problem with
msgfmt -c detection. (#341988, Laszlo Peter)
2007-07-07 Matthias Clasen <[email protected]>
* glib/gmarkup.c (g_markup_parse_context_end_parse): Handle
all states. (#454473)
2007-07-06 Tor Lillqvist <[email protected]>
* glib/giowin32.c (g_io_win32_check): When WSAEnumNetworkEvents()
signals FD_CONNECT that means that the connection attempt
finished, either successfully or failed. Test explicitly whether
the connnection succeeded and set either G_IO_OUT if it did,
G_IO_ERR|G_IO_HUP if it failed.
Make sure we never set both G_IO_OUT and G_IO_HUP simultaneously
because in Unix poll(2) POLLOUT and POLLHUP are mutually
exclusive.
Ignore whether the caller wants to watch G_IO_HUP or not. Always
select for FD_CLOSE because Unix poll(2) also ignores whether
POLLHUP in set the requested events bitmask or not.
Fri Jun 29 2007 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.13.6 ===
* NEWS: Updates
Mon Jun 25 16:43:13 2007 Tim Janik <[email protected]>
* glib/ghash.c: g_hash_table_find(), g_hash_table_foreach():
document performance caveats for linear order searches.
2007-06-22 Mathias Hasselmann <[email protected]>
* glib/gstring.c: Use memcpy in g_string_append_vprintf (#57693).
2007-06-18 Mathias Hasselmann <[email protected]>
* glib/gstring.c: Restore old behaviour of
g_string_append_vprintf: g_vasprintf seems to be faster
than g_printf_string_upper_bound (#57693).
2007-06-18 Matthias Clasen <[email protected]>
* glib/gutils.c (g_get_home_dir): Add some motivation.
2007-06-18 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.13.5 ===
* NEWS: Updates
2007-06-18 Emmanuele Bassi <[email protected]>
* glib/gmain.h:
* glib/gmain.c:
* glib/glib.symbols: Add g_timeout_add_seconds_full() variant
to g_timeout_add_seconds(), accepting a destroy notification
function and a priority. (#448819)
2007-06-17 Matthias Clasen <[email protected]>
* glib/gutils (g_get_current_dir): Prevent segfaults on
long paths. (#447935, Robby Griffin)
2007-06-17 Behdad Esfahbod <[email protected]>
* glib/gdataset.c (g_quark_from_string),
(g_quark_from_static_string): Accept NULL and return GQuark
value of zero. (#446859)
2007-06-16 Mathias Hasselmann <[email protected]>
* glib/gstring.c: Correctly use g_printf_string_upper_bound
in g_string_append_vprintf. Fixes #447933.
2007-06-15 Sebastian Wilhelmi <[email protected]>
* docs/reference/glib/tmpl/threads.sgml: Extended the comments on
those functions, that are NOOPs, before g_thread_init() has been
called. (#447583)
* glib/gthread.c (g_static_mutex_free): Clarified comment to
remind myself, that calling g_static_mutex_free() before
g_thread_init() is safe.
2007-06-15 Cody Russell <[email protected]>
* docs/reference/gobject/tmpl/gboxed.sgml:
* docs/reference/gobject/gobject-sections.txt:
* glib/gregex.c:
* gobject/gboxed.[ch]:
* gobject/gobject.symbols: Added GRegex boxed type.
(#445065, Carlos Garnacho)
2007-06-15 Sebastian Wilhelmi <[email protected]>
* glib/gregex.c: Replaced & by & in <programlisting> to make
gtk-doc happy.
2007-06-14 Ryan Lortie <[email protected]>
* docs/reference/glib/glib-sections.txt:
* glib/glib/symbols:
* glib/gstring.[ch] (g_string_printf_internal): Improve
performance by removing the use of an intermediate g_malloc'd
buffer. Rename to g_string_append_vprintf, document, and expose
along with g_string_vprintf as new public API (#57693).
2007-06-15 Mathias Hasselmann <[email protected]>
* build, tests/string-test.c, glib/glib.symbols,
glib/gstring.c, glib/gstring.h: Introduce g_string_overwrite(_len)?
for overwriting parts of strings (#368686, Samuel Cormier-Iijima)
2007-06-14 Cody Russell <[email protected]>
* gobject/gtype.c (g_type_class_add_private): Check for 0-sized
private data. (#443869)
2007-06-14 Matthias Clasen <[email protected]>
* glib/gmain.c (g_timeout_add_seconds): Fix doc typos. (#447534,
Vincent Untz)
2007-06-13 Behdad Esfahbod <[email protected]>
* glib/pltcheck.sh: Whitelist g_atomic_{int,pointer}_[gs]et() as
we don't alias them intentionally. (#354522)
2007-06-13 Sven Neumann <[email protected]>
* glib/gslice.[ch] added g_slice_copy() and g_slice_dup() (#442029).
* glib/glib.symbols: updated.
2007-06-12 Behdad Esfahbod <[email protected]>
* glib/gunicode.h: Add more G_GNUC_CONST and G_GNUC_PURE.
2007-06-11 Emmanuele Bassi <[email protected]>
* glib/gutils.c (maybe_expire_user_special_dirs),
(g_get_user_special_dir): Remove the cache expiration logic: it
makes g_get_user_special_dir() not thread-safe. Document the fact
that on some platform the value might be changed by the user and
that GLib won't be able to reflect the change.
2007-06-11 Tor Lillqvist <[email protected]>
* glib/gwin32.c (g_win32_get_package_installation_directory)
(g_win32_get_package_installation_subdirectory): Update doc
comments. Mention that it is not recommeded to use the Registry
features.
2007-06-06 Tor Lillqvist <[email protected]>
* glib/gutils.c: Add definitions for more CSIDL_* constants in
case missing from headers. Use CSIDL_PERSONAL instead of
CSIDL_MYDOCUMENTS as CSIDL_MYDOCUMENTS seems to be a new thing
that doesn't work in XP SP2 even.
2007-06-06 Matthias Clasen <[email protected]>
* glib/gutils.c (g_get_user_special_dir): Fall back to
$HOME/Desktop for the DESKTOP directory, like
xdg_user_dir_lookup() does.
2007-06-05 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.13.4 ===
* NEWS: Updates
2007-06-05 Matthias Clasen <[email protected]>
* glib/gkeyfile.c (g_key_file_is_key_name):
(g_key_file_is_group_name): Don't assume the string is
valid UTF-8, since it may be user data. (#444161, Ben Combee)
2007-06-05 Behdad Esfahbod <[email protected]>
* glib/gutf8.c: Add not to g_utf8_get_char_validated() about
nul-terminated strings.
2007-06-05 Matthias Clasen <[email protected]>
* glib/gutils.c (g_get_user_special_dir): Don't deadlock
when running with threads. (#444121, Christian Persch)
2007-06-05 Vincent Untz <[email protected]>
* glib/goption.c: (g_option_context_get_help): don't replace the usage
line with the description for optional parameters, but append the
description. (#444130)
2007-06-04 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.13.3 ===
* NEWS: Updates
2007-06-04 Matthias Clasen <[email protected]>
Add support for a number of special directories, as
defined by the xdg-user-dirs specification. (#432651,
Bastien Nocera, Emmanuele Bassi, Michael Natterer)
* glib/glib.symbols:
* glib/gutils.[hc]: Add the GUserDirectory enum and
g_get_user_special_dir(), with implementations based
on the xdg-user-dirs spec and on native interfaces
for Win32 and Carbon.
* configure.in: Add Carbon checks.
* tests/tetsglib.c: Test g_get_user_special_dir().
2007-06-03 Yevgen Muntyan <[email protected]>
* glib/gregex.c: fixed g_regex_fetch_named* for cases when (?J)
is used inside a pattern (#442265, comment #12).
* tests/regex-test.c: Test it.
2007-06-03 Matthias Clasen <[email protected]>
* NEWS: Updates
2007-06-03 Yevgen Muntyan <[email protected]>
Some API additions and changes (#442265).
* glib/gregex.c:
* glib/gregex.h: new functions: g_regex_ref(), g_regex_unref() which
replaces g_regex_free(); g_match_info_get_regex(), g_match_info_get_string();
g_regex_check_replacement().
Made g_match_info_expand_references() accept NULL; changed GRegexEvalCallback
to take only arguments which are likely to be actualy used.
* docs/reference/glib/glib-sections.txt:
* glib/glib.symbols: Added new functions.
* tests/regex-test.c: Test them.
* docs/reference/glib/tmpl/gregex.sgml: Updated GRegexEvalCallback docs.
2007-05-31 Matthias Clasen <[email protected]>
* README.win32: Fix a typo. (#423708, Olivier Delhomme)
2007-05-30 Dan Winship <[email protected]>
* glib/gkeyfile.h: add defines for desktop file handling. #339225,
original patch from Vincent Untz.
2007-05-29 Cody Russell <[email protected]>
* configure.in: Fix a sed script that doesn't correctly detect
i586-mingw32-gcc-3.4 compiler, and was causing -Wno-pointer-sign
errors when building with that compiler. (#440896, Yevgen Muntyan)
2007-05-29 Marco Barisione <[email protected]>
* glib/gregex.c: Fix g_regex_fetch_named() and
g_regex_fetch_named_pos() when G_REGEX_DUPNAMES is used (#434358,
Yevgen Muntyan and #419376, Marco Barisione, patch by Yevgen Muntyan)
2007-05-25 Behdad Esfahbod <[email protected]>
* glib/guniprop.c (g_unichar_iswide), (g_unichar_iswide_cjk):
Update to Markus Kuhn's updated wcwidth for Unicode 5.0.
2007-05-22 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.13.2 ===
* README.in:
* NEWS: Updates
2007-05-18 Matthias Clasen <[email protected]>
* configure.in: Try again to move the compiler-dependency
of G_GNUC_INTERNAL to runtime.
2007-05-18 Matthias Clasen <[email protected]>
* configure.in: Don't let PERL_PATH be ''. (#356769, Joseph Sacco)
2007-05-17 Michael Natterer <[email protected]>
* configure.in: hotfix: revert last change to fix the build on OS X.
2007-05-17 Matthias Clasen <[email protected]>
* glib/goption.c (g_option_context_set_translate_func): Fix
a doc typo. (#439232, Vincent Untz)
2007-05-17 Matthias Clasen <[email protected]>
* configure.in: Move the compiler-dependency in the G_GNUC_INTERNAL
definition from configure-time to runtime (of the compiler).
(#438869, Damien Carbery)
* glib/gdebug.h:
* glib/gmessages.h:
* glib/gunicodeprivate.h:
* glib/gthreadprivate.h: Move G_GNUC_INTERNAL before function
declarations to fix compilation with sun studio. (#438873,
Damien Carbery)
2007-05-14 Matthias Clasen <[email protected]>
* glib/gslice.h:
* glib/gslice.c:
* glib/glib.symbols: Make g_slice_debug_tree_statistics()
debug-only functionality again.
2007-05-14 Christian Persch <[email protected]>
* docs/reference/glib/tmpl/string_utils.sgml: Improve g_strerror and
g_strsignal docs. Bug #438293.
2007-05-13 Tor Lillqvist <[email protected]>
* glib/gwin32.h: Drop the pipe() macro. Defining macros outside of
its namespace that look like POSIX functions is not GLib's
business in my opinion. This means pipe()-using code that has
relied on this definition will need changing to call _pipe() on
Windows, and make the decision itself on what size pipe buffer to
use, and whether to use text or binary mode, and whether the pipe
handles should be inheritable or not.
* glib/gspawn-win32.c (make_pipe): Use _pipe() instead of pipe().
2007-05-11 Matthias Clasen <[email protected]>
* glib/goption.c: Allow G_OPTION_ARG_CALLBACK for
G_OPTION_REMAINING. (#437297, Dave Benson)
* tests/option-test.c: Add a test for this.
2007-05-04 Dan Winship <[email protected]>
* glib/gkeyfile.c (g_key_file_get_boolean)
(g_key_file_get_boolean_list, g_key_file_get_integer)
(g_key_file_get_integer_list, g_key_file_get_double)
(g_key_file_get_double_list): Document the error return values
rather than calling them undefined. #435885.
2007-05-03 Behdad Esfahbod <[email protected]>
* glib/glib.symbols:
* glib/gunicode.h:
* glib/guniprop.c (g_unichar_ismark):
Add g_unichar_ismark(). Patch from Yevgen Muntyan. Fixes #339991.
2007-05-03 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.13.1 ===
2007-05-02 Matthias Clasen <[email protected]>
* tests/threadpool-test.c: Stop unused threads before
the last test, to make the test terminate reliably.
* NEWS: Updates
2007-05-02 Marco Barisione <[email protected]>
* glib/gregex.c: Made more clear that the string passed to the match
functions cannot be freed before using g_match_info_fetch() and
similar functions, and fixed a typo.
2007-04-30 Matthias Clasen <[email protected]>
* glib/glib.symbols:
* glib/gregex.[hc]: Add g_regex_get_max_backref() and
g_regex_get_capture_count(). (#419371, Marco Barisione)
2007-04-30 Matthias Clasen <[email protected]>
* glib/glib.symbols:
* glib/gregex.[hc]: Split GRegex into GRegex and GMatchInfo.
(#419368, Marco Barisione)
* tests/regex-test.c: Adapt.
2007-04-30 Chris Wilson <[email protected]>
* glib/gbookmarkfile.c (g_bookmark_file_get_app_info):
Include the gshell.h header file (to define g_shell_[un]quote)
and correct the order of the arguments to g_propagate_error(), as
spotted by gcc.
2007-04-29 Emmanuele Bassi <[email protected]>
* glib/gbookmarkfile.c:
(g_bookmark_file_set_app_info): Quote the passed command line...
(g_bookmark_file_get_app_info): ... and unquote it when giving it
back. (#432274)
2007-04-27 Matthias Clasen <[email protected]>
* glib/gstrfuncs.c: small coding style cleanups.
2007-04-27 Chris Wilson <[email protected]>
* glib/gregex.h: Remove trailing comma at end of enumerator list.
2007-04-27 Tor Lillqvist <[email protected]>
* glib/gstdio.c (g_mkdir): Document that the mode argument is
ignored on Windows
(g_stat): Document that st_mode is mostly useless on Windows.
2007-04-25 Paolo Borelli <[email protected]>
* glib/gstrfuncs.c (g_strsplit): small cleanup. (#433387)
2007-04-24 Matthias Clasen <[email protected]>
* glib/glib.symbols:
* glib/goption.h:
* glib/goption.c (g_option_context_get_help): New function to
get the formatted help string. (#336089, Dom Lachowicz)
2007-04-24 Michael Natterer <[email protected]>
* tests/gobject/paramspec-test.c: test all GParamSpecString
validations with static and allocated strings.
2007-04-19 William Jon McCann <[email protected]>
* glib/gkeyfile.[ch]: (find_file_in_data_dirs),
(g_key_file_load_from_dirs), (g_key_file_load_from_data_dirs):
Add g_key_file_load_from_dirs for looking through a search
path for a key-file. (#355334)
2007-04-15 Tor Lillqvist <[email protected]>
* build: Include the build module using the svn:externals
mechanism.
* Makefile.am
* configure: Add the references to build back.
2007-04-11 Matthias Clasen <[email protected]>
* glib/gspawn.c (g_spawn_async): Fix a doc typo. (#427285,
Jochen Baier)
2007-04-11 Emmanuele Bassi <[email protected]>
* glib/ghash.[ch]: Add g_hash_table_get_keys() and
g_hash_table_get_values(), API to retrieve the keys
and values inside an hash table in list form. (#413133)
* glib/glib.symbols: Update symbols.
* tests/hash-test.c: Exercise newly added functions.
2007-04-11 Matthias Clasen <[email protected]>
* configure.in: Use CFLAGS/LDFLAGS in addition to
PCRE_CFLAGS/PCRE_LIBS when checking system PCRE. (#421607,
Paul Jarc)
2007-03-27 Emmanuele Bassi <[email protected]>
* glib/gdate.h: Remove old comment and forward declaration of
struct tm: gdate.h includes time.h now.
2007-03-23 Matthias Clasen <[email protected]>
* tests/gobject/Makefile.am: Handle $RANDOM missing. (#356843,
Paul Jarc)
2007-03-22 Matthias Clasen <[email protected]>
* glib/guniprop.c: Fix corner-cases of upper/lowercase conversion.
(#418217, Denis Jacquerye)
2007-03-22 Chris Wilson <[email protected]>
* glib/gkeyfile.c: Track whether the last key=value pair in a group
is a blank line and during to_data() only insert a new blank line
betweens group in its absence. This allows the beautification of the
GKeyFile and prevents newlines being inserted indefinitely. (#420686)
* tests/keyfile-test.c (test_reload_idempotency): Test that after a
single beautification pass, g_key_file_to_data() does not alter its
input data.
2007-03-21 Matthias Clasen <[email protected]>
* glib/pcre/Makefile.am: Make builddir != srcdir work. (#419900)
2007-03-19 Paolo Borelli <[email protected]>
* glib/gutf8.c (fast_validate_len): remove unneeded checks.
2007-03-18 Matthias Clasen <[email protected]>
* glib/gregex.c: Cosmetic fixes
2007-03-17 Marco Barisione <[email protected]>
* glib/update-pcre/table-reduction.patch:
* glib/update-pcre/make_utt.py:
* glib/update-pcre/utt.patch: Add forgotten files
* glib/update-pcre/update.sh: Call python directly instead of relying
on shebang. Also copy the changes from glib/pcre/makefile.msc to this
file
2007-03-17 Hans Breuer <[email protected]>
* glib/makefile.msc.in glib/pcre/makefile.msc
glib/update-pcre/update.sh : define PCRE_STATIC to reflect the
inclusion of pcre as LIB, not stand-alone DLL. Also set NEWLINE=-1
to match any newline by default, use of ../../build/win32/make.msc
* glib/gregex.h : minimal includes of <glib/*.H> instead of <glib.h>
* glib/gnulib/makefile.msc : make use of ../../build/win32/make.msc
* tests/regex-test.c(verbose): don't pass a string containing '%'
as first parameter to g_print ()
(test_match) : for the unexpected case output pattern and string
escaped
* tests/child-test.c tests/slice-color.c : fix c99ism
* tests/slice-test.c : fix c99ism and gccism
* tests/mapping-test.c tests/base-64-tests.c : don't
#include <unistd.h> unconditionally
* tests/option-test.c : use G_GINT64_CONSTANT() instead of direct LL
* tests/makefile.msc.in : more tests build
2007-03-17 Matthias Clasen <[email protected]>
* glib/gsequence.[hc]:
* glib/glib.symbols:
* tests/sequence-test.c: Move the consistency
checks to the test.
2007-03-16 Matthias Clasen <[email protected]>
* configure.in: Bump version
* === Released 2.13.0 ===
* NEWS: Updates
2007-03-16 Matthias Clasen <[email protected]>
* glib/glib.symbols:
* glib/gsequence.h: Add the test function to the header,
since it is exported.
* glib/gbase64.c (g_base64_decode): Warn if the input
is too short. (#418862, Halton Huo)
Fri Mar 16 11:24:51 2007 Tim Janik <[email protected]>
* glib/gscanner.[hc]: reverted premature commit which broke
GScanner ABI and API, #415323.
2007-03-16 Chris Wilson <[email protected]>
* glib/gkeyfile.c: Convert to GSlice and check for redundant
clears. (#418637)
2007-03-15 Matthias Clasen <[email protected]>
* glib/gscanner.[hc]: Revert recent changes that break
existing users of GScanner.
2007-03-15 Matthias Clasen <[email protected]>
* glib/gscanner.c (g_scanner_get_token_ll): Fix a typo
in the last commit. (#415323, Richard Hult)
2007-03-15 Tor Lillqvist <[email protected]>
* glib/gnulib/Makefile.am (INCLUDES): Add -I$(top_srcdir)/glib so
that gregex.h finds <glib.h>.
* glib/update-pcre/Makefille.am-1: Add -DGLIB_COMPILATION so that
we don't think g_ascii_table is dllimport.
* glib/pcre/Makefile.am: Corresponding change.
* glib/update-pcre/notdll.patch: New file. Drop
dllimport/dllexport magic for the pcre symbols.