-
Notifications
You must be signed in to change notification settings - Fork 76
/
ChangeLog.pre-0-5-7
5135 lines (3212 loc) · 122 KB
/
ChangeLog.pre-0-5-7
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
2009-02-20 Jürg Billeter <j@bitron.ch>
* configure.ac: Post-release version bump
2009-02-20 Jürg Billeter <j@bitron.ch>
* NEWS: update for 0.5.7 release
2009-02-20 Jürg Billeter <j@bitron.ch>
* vapi/Makefile.am:
* vapi/fuse.deps:
* vapi/fuse.vapi:
* vapi/posix.vapi:
Add FUSE bindings, patch by John Carr, fixes bug 571187
2009-02-20 Jürg Billeter <j@bitron.ch>
* vapi/glib-2.0.vapi:
Add g_io_add_watch_full binding, patch by Michael Lauer
2009-02-20 Jürg Billeter <j@bitron.ch>
* vapi/glib-2.0.vapi:
Complete GByteArray binding, patch by Michael Lauer
2009-02-20 Ryan Lortie <desrt@desrt.ca>
* vapi/gio-2.0.vapi
* vapi/gio-unix-2.0.vapi
* vapi/packages/gio-2.0/gio-2.0.gi
* vapi/packages/gio-unix-2.0/gio-unix-2.0.gi
Generate gio GIDL on a machine with my gresolver glib branch
installed. Regenerate vapi. Fixes bug 572474.
2009-02-20 Ryan Lortie <desrt@desrt.ca>
* configure.ac:
* vala-1.0.pc.in:
Output 'vapigen' 'gen_introspect' and 'vala_gen_introspect' variables
into the vala-1.0.pc file if --enable-vapigen, fixes bug 572554
2009-02-20 Jürg Billeter <j@bitron.ch>
* gobject/valadbusclientmodule.vala:
Support error handling when dynamically calling void methods,
patch by Frederik Sdun, fixes bug 571258
2009-02-20 Jürg Billeter <j@bitron.ch>
* gobject-introspection/scanner.c:
Include unistd.h to support compilation with
-Werror-implicit-function-declaration, patch by Tobias Müller,
fixes bug 571544
2009-02-20 Jürg Billeter <j@bitron.ch>
* vala/valascope.vala:
Add Scope.get_symbol_table method, patch by Abderrahim Kitouni
2009-02-20 Jürg Billeter <j@bitron.ch>
* vala/valacodecontext.vala:
* vala/valareport.vala:
Support context-specific error reporting and add a context stack,
based on patch by Abderrahim Kitouni, fixes bug 542920
* vala/valagenieparser.vala:
* vala/valaparser.vala:
* gobject/valaccodebasemodule.vala:
* compiler/valacompiler.vala:
* vapigen/valavapigen.vala:
Adapt to interface changes
2009-02-20 Jürg Billeter <j@bitron.ch>
* vapi/Makefile.am:
* vapi/libdaemon.vapi:
Add libdaemon bindings, patch by Jukka-Pekka Iivonen,
fixes bug 568758
2009-02-20 Jürg Billeter <j@bitron.ch>
* vapi/glib-2.0.vapi:
Add GDateDMY binding, patch by Frederik, fixes bug 568691
2009-02-20 Jürg Billeter <j@bitron.ch>
* vapi/packages/gdk-2.0/:
Fix gdk_event_handler_set binding
* vapi/gdk-2.0.vapi: regenerated
2009-02-19 Ali Sabil <ali.sabil@gmail.com>
* vapi/packages/gstreamer-0.10/gstreamer-0.10-custom.vala:
* vapi/packages/gstreamer-0.10/gstreamer-0.10.metadata:
Various ownership and missing type parameters fixes
* vapi/gstreamer-0.10.vapi: regenerated
2009-02-19 Ali Sabil <ali.sabil@gmail.com>
* vapigen/valagidlparser.vala:
Support to_string attribute for enums
2009-02-19 Ali Sabil <ali.sabil@gmail.com>
* vapi/packages/gstreamer-rtp-0.10/:
Fix gst_rtp_buffer_get_extension_data binding
* vapi/gstreamer-rtp-0.10.vapi: regenerated
2009-02-19 Ali Sabil <ali.sabil@gmail.com>
* vapi/glib-2.0.vapi:
Add byte order conversion methods to int types
2009-02-19 Jürg Billeter <j@bitron.ch>
* vapi/packages/pango/:
Fix pango_font_description_from_string binding and support implicit
copies of PangoFontDescription
* vapi/pango.vapi: regenerated
2009-02-18 Jürg Billeter <j@bitron.ch>
* vala/Makefile.am:
* vala/valaassignment.vala:
* vala/valacodevisitor.vala:
* vala/valacodewriter.vala:
* vala/valagenieparser.vala:
* vala/valaparenthesizedexpression.vala:
* vala/valaparser.vala:
* vala/valasymbolresolver.vala:
* vala/valaunaryexpression.vala:
* gobject/valaccodebasemodule.vala:
* gobject/valaccodegenerator.vala:
* gobject/valaccodemodule.vala:
Remove ParenthesizedExpression to simmplify AST
2009-02-18 Jürg Billeter <j@bitron.ch>
* vapi/packages/gtk+-2.0/:
Fix gtk_tree_view_insert_column_with_data_func binding
* vapi/gtk+-2.0.vapi: regenerated
2009-02-17 Jürg Billeter <j@bitron.ch>
* gobject/valaccodemethodcallmodule.vala:
Support chaining up to constructors in generic classes,
fixes bug 567319
2009-02-17 Ali Sabil <ali.sabil@gmail.com>
* vapigen/valagidlparser.vala:
Support takes_ownership attribute for delegate parameters
2009-02-17 Ali Sabil <ali.sabil@gmail.com>
* vapi/gstreamer-rtp-0.10.vapi: regenerated
2009-02-16 Ali Sabil <ali.sabil@gmail.com>
* vala/valacodewriter.vala: escape the dynamic keyword, and identifiers
starting with a digit
2009-02-17 Ryan Lortie <desrt@desrt.ca>
* gobject/valaccodebasemodule.vala:
* vala/valacodewriter.vala:
* vala/valastruct.vala:
* vapigen/valagidlparser.vala:
Add support for a 'use_const' CCode attribute and GIDL XML attribute
that, when set to false, causes Vala not to emit the 'const' modifier
on structure type input arguments. This is useful for structure types
that, by convention, are not used with const (eg: GtkTreeIter).
* vapi/packages/gtk+-2.0/gtk+-2.0.metadata:
* vapi/gtk+-2.0.vapi:
Add 'use_const' for GtkTreeIter to the gtk+-2.0 metadata. Regenerate
vapi.
2009-02-16 Ryan Lortie <desrt@desrt.ca>
* vala/valaclass.vala: only use g_value_set_pointer if the GType of a
class is G_TYPE_POINTER; else use g_value_set_boxed.
2009-02-16 Ryan Lortie <desrt@desrt.ca>
* gobject/valagasyncmodule.vala: remove the dummy-object hack since
gio now supports NULL source objects for GSimpleAsyncResult
2009-02-14 Ryan Lortie <desrt@desrt.ca>
* gobject/valagasyncmodule.vala:
Split method code generation into many smaller functions. Enable
experimental generation of synchronous code.
2009-02-14 Jürg Billeter <j@bitron.ch>
* vapi/packages/gdk-2.0/:
* vapi/packages/gtk+-2.0/:
* vapi/packages/libsoup-2.4/:
Nullable fixes, patch by Mark Lee, fixes bug 571407
* vapi/gdk-2.0.vapi:
* vapi/gtk+-2.0.vapi:
* vapi/libsoup-2.4.vapi:
Regenerated
2009-02-14 Jürg Billeter <j@bitron.ch>
* vala/valacodewriter.vala:
Add error domains to VAPI files, fixes bug 571692
2009-02-13 Ryan Lortie <desrt@desrt.ca>
* gobject/valamethodmodule.vala:
Emit 'default:' label with g_assert_not_reached() for async state
switch statement (to avoid GCC warning). Don't emit virtual functions
or vtable entries for synchronous functions when emitting async code.
2009-02-13 Ryan Lortie <desrt@desrt.ca>
Bug 571484 – free owned result even if _finish isn't called
* gobject/valagasyncmodule.vala:
Emit code to free the result in the result in the event that _finish
was not called.
2009-02-12 Jürg Billeter <j@bitron.ch>
* vala/valaclass.vala:
* vala/valaconstant.vala:
* vala/valafield.vala:
* vala/valamember.vala:
* vala/valamethod.vala:
* vala/valaproperty.vala:
* vala/valastruct.vala:
Warn when hiding members, support `new' keyword to suppress
warning, based on patch by Andreas Brauchli, fixes bug 567743
* vala/valacodenode.vala:
* vala/valacreationmethod.vala:
* vala/valaenum.vala:
* vala/valaerrordomain.vala:
* vala/valanamespace.vala:
* ccode/valaccodelinedirective.vala:
Avoid hidden members
2009-02-12 Jürg Billeter <j@bitron.ch>
* vala/valastruct.vala:
* vala/valasymbolresolver.vala:
Add base_struct property to Struct class, patch by Andreas Brauchli
2009-02-12 Jürg Billeter <j@bitron.ch>
* vala/valamember.vala:
* vala/valaparser.vala:
Support `new' as member modifier in parser to prepare support for
hiding members, patch by Andreas Brauchli
2009-02-12 Ryan Lortie <desrt@desrt.ca>
* vala/valamethod.vala:
For now, just forbid ref/out paramters on yielding functions since
they are hard to deal with.
2009-02-12 Jürg Billeter <j@bitron.ch>
* vala/valagenieparser.vala:
Fix else if parsing, fixes bug 562632
2009-02-12 Ryan Lortie <desrt@desrt.ca>
* gobject/valagasyncmodule.vala:
Store the Data structure as the op_res gpointer of the
GSimpleAsyncResult. Emit a function to free it and hook it in.
2009-02-12 Jürg Billeter <j@bitron.ch>
* gobject/valaccodearraymodule.vala:
Keep arrays NULL-terminated when appending
2009-02-11 Ryan Lortie <desrt@desrt.ca>
Bug 571263 – make yielding functions dispatch results to mainloop
* gobject/valaccodemethodmodule.vala:
* valagasyncmodule.vala:
Create simple async result from _async entry function and use it when
doing return; throw; or at the end of the function. Fix return
statements for the async case. Dispatch via idle handler in the case
that we are returning without having yielded.
2009-02-11 Ryan Lortie <desrt@desrt.ca>
Bug 566363 – yielding functions that throw don't work
* gobject/valagerrormodule.vala:
* gobject/valagasyncmodule.vala:
Refactor GErrorModule to remove some common code and introduce a
separate (virtual) function 'return_with_exception' to create
the code for returning exceptions from functions.
In GAsyncModule, override the new virtual function to call
g_simple_async_report_gerror_in_idle().
2009-02-11 Ryan Lortie <desrt@desrt.ca>
Bug 571256 – [CCode (async_only = true)] formal parameter annotation
* vala/valacodewriter.vala:
* vala/valaformalparameter.vala:
* gobject/valaccodemethodcallmodule.vala:
Allow emitting some C code arguments only in the case that we are
calling the asynchronous version of a yielding function. This helps
with the io_priority oddity in GIO.
2009-02-11 Jürg Billeter <j@bitron.ch>
* vala/valaenum.vala:
* vala/valainterface.vala:
* vala/valastruct.vala:
* vapigen/valagirparser.vala:
Recognize c:type attributes in .gir
2009-02-10 Ryan Lortie <desrt@desrt.ca>
Bug 571169 – make floating references generic
* gobject/valaccodebasemodule.vala:
* vala/valainterface.vala:
* vala/valaclass.vala:
* vala/valaobjectcreationexpression.vala:
* vala/valasemanticanalyzer.vala:
* vala/valatypesymbol.vala:
Add support for 'ref_sink_function' CCode attribute on classes.
Use this instead of hardcoding g_object_ref_sink() for
GInitiallyUnowned.
* vapi/gobject-2.0.vapi:
Set ref_sink_function on InitiallyUnowned class.
2009-02-09 Jürg Billeter <j@bitron.ch>
* gobject/valaccodedelegatemodule.vala:
Emit delegate documentation to the C header files
2009-02-08 Jürg Billeter <j@bitron.ch>
* vala/valanamespace.vala:
Drop experimental support for partial classes
2009-02-04 Jürg Billeter <j@bitron.ch>
* vapi/posix.vapi:
Add bindings for signal functions and constants,
patch by Michael Lauer
2009-02-04 Jürg Billeter <j@bitron.ch>
* gobject/valadbusclientmodule.vala:
Remove D-Bus message filter when disposing proxy object
2009-02-04 Jürg Billeter <j@bitron.ch>
* gobject/valadbusmodule.vala:
NULL-terminate arrays when demarshalling
2009-02-04 Jürg Billeter <j@bitron.ch>
* gobject/valadbusclientmodule.vala:
Do not handle signals of irrelevant object paths
2009-02-04 Jürg Billeter <j@bitron.ch>
* vapi/glib-2.0.vapi:
Add GTestCase and GTestSuite bindings, patch by John Carr,
fixes bug 570518
2009-02-02 Jürg Billeter <j@bitron.ch>
* vala/valacodewriter.vala:
Write type_id attribute for GBoxed compact classes
* vapi/gdk-2.0.vapi:
* vapi/gtk+-2.0.vapi:
* vapi/pango.vapi:
Regenerated
2009-02-02 Jürg Billeter <j@bitron.ch>
* vala/valathrowstatement.vala:
Fix crash on invalid error expressions
2009-02-01 Jürg Billeter <j@bitron.ch>
* vala/valaproperty.vala:
Support overriding members in .vapi files
2009-01-31 Jürg Billeter <j@bitron.ch>
* gobject/valaccodearraymodule.vala:
* gobject/valaccodeassignmentmodule.vala:
* gobject/valaccodebasemodule.vala:
* gobject/valaccodecontrolflowmodule.vala:
* gobject/valaccodedelegatemodule.vala:
* gobject/valaccodememberaccessmodule.vala:
* gobject/valaccodemethodcallmodule.vala:
* gobject/valaccodemethodmodule.vala:
* gobject/valaccodestructmodule.vala:
* gobject/valadbusclientmodule.vala:
* gobject/valadbusmodule.vala:
* gobject/valadbusservermodule.vala:
* gobject/valagasyncmodule.vala:
* gobject/valagerrormodule.vala:
* gobject/valagobjectmodule.vala:
* gobject/valagsignalmodule.vala:
* gobject/valagtypemodule.vala:
Use `internal' modifier in class declarations to fix build with
Vala older than r2411
2009-01-31 Jürg Billeter <j@bitron.ch>
* gobject/valagobjectmodule.vala:
Fix struct construct properties
2009-01-31 Jürg Billeter <j@bitron.ch>
* vala/valaflowanalyzer.vala:
* vala/valasymbol.vala:
Report unused internal methods
* gobject/valaccodearraymodule.vala:
* gobject/valaccodeassignmentmodule.vala:
* gobject/valaccodebasemodule.vala:
* gobject/valaccodecontrolflowmodule.vala:
* gobject/valaccodedelegatemodule.vala:
* gobject/valaccodememberaccessmodule.vala:
* gobject/valaccodemethodcallmodule.vala:
* gobject/valaccodemethodmodule.vala:
* gobject/valaccodestructmodule.vala:
* gobject/valadbusclientmodule.vala:
* gobject/valadbusmodule.vala:
* gobject/valadbusservermodule.vala:
* gobject/valagasyncmodule.vala:
* gobject/valagerrormodule.vala:
* gobject/valagobjectmodule.vala:
* gobject/valagsignalmodule.vala:
* gobject/valagtypemodule.vala:
Mark modules as internal
2009-01-30 Jürg Billeter <j@bitron.ch>
* vala/valanamespace.vala:
* vala/valaparser.vala:
Ensure that classes in implicit namespaces are not private as
namespaces cannot have private members
2009-01-30 Jürg Billeter <j@bitron.ch>
* vapi/posix.vapi:
Add more bindings, patch by Matías De la Puente
2009-01-29 Jürg Billeter <j@bitron.ch>
* vapigen/valagidlparser.vala:
Support transfer_ownership attribute for signal parameters
2009-01-29 Philip Van Hoof <philip@codeminded.be>
* gobject/valaccodebasemodule.vala:
Checking for vstore in vala_dbus_register_object. Fixes a crash when
you use conn.register_object with an instance that isn't a DBus one
2009-01-29 Jürg Billeter <j@bitron.ch>
* vala/valapropertyaccessor.vala:
Honor lower_case_cprefix attribute for property accessors,
fixes bug 569646
2009-01-27 Jürg Billeter <j@bitron.ch>
* vapi/posix.vapi:
Add bindings for open and associated functions and constants,
patch by Michael Lauer
2009-01-27 Jürg Billeter <j@bitron.ch>
* vala/valacodewriter.vala:
* vala/valamethod.vala:
Add overriding members to .vapi files, fixes bug 569219
2009-01-27 Jürg Billeter <j@bitron.ch>
* vala/valamemberaccess.vala:
Skip overriding methods and properties in member access,
fixes default arguments when calling virtual methods
2009-01-27 Thijs Vermeir <thijsvermeir@gmail.com>
* vapi/packages/gdk-pixbuf-2.0/gdk-pixbuf-2.0.metadata:
Fix binding for gdk_pixbuf_scale_simple
* vapi/gdk-pixbuf-2.0.vapi: regenerated
2009-01-26 Jürg Billeter <j@bitron.ch>
* vapi/posix.vapi:
Add bindings for ioctl and associated constants
2009-01-26 Jürg Billeter <j@bitron.ch>
* gobject/valaccodebasemodule.vala:
Revert incorrect code generation change for constants, will need to
use `extern' to properly export constants
2009-01-25 Jürg Billeter <j@bitron.ch>
* gobject/valadbusclientmodule.vala:
Support signals in static D-Bus client
2009-01-24 Jürg Billeter <j@bitron.ch>
* vala/valaclass.vala:
Fix type of implicit `this' parameter when using generics
2009-01-23 Jürg Billeter <j@bitron.ch>
* ccode/valaccodefunction.vala:
* gobject/valaccodebasemodule.vala:
* gobject/valaccodemethodmodule.vala:
* gobject/valaccodemodule.vala:
* gobject/valadbusclientmodule.vala:
* gobject/valagasyncmodule.vala:
* gobject/valagobjectmodule.vala:
Refactor method parameter and result code generation
2009-01-23 Jürg Billeter <j@bitron.ch>
* gobject/valaccodearraymodule.vala:
* gobject/valaccodedelegatemodule.vala:
* gobject/valaccodemethodmodule.vala:
Add virtual generate_parameter method. Move array and delegate type
specific parameter generation to corresponding modules.
2009-01-20 Jürg Billeter <j@bitron.ch>
* vapigen/valagirparser.vala:
Support struct methods
2009-01-20 Jürg Billeter <j@bitron.ch>
* gobject/valaccodebasemodule.vala:
Do not declare public constants as `static'
2009-01-19 Jürg Billeter <j@bitron.ch>
* vapi/gsl.vapi:
More fixes, patch by Matías De la Puente
2009-01-19 Jürg Billeter <j@bitron.ch>
* gobject/valaccodedelegatemodule.vala:
Use correct C identifier for delegate target of static fields
2009-01-19 Jürg Billeter <j@bitron.ch>
* gobject/valaccodemethodmodule.vala:
Fix assigning to properties in lambda expressions in creation
methods, patch by Yu Feng, fixes bug 568267
2009-01-18 Thijs Vermeir <thijsvermeir@gmail.com>
* vapi/packages/gstreamer-0.10/gstreamer-0.10.metadata:
Fix binding for gst_pad_chain
* vapi/gstreamer-0.10.vapi: Regenerated
2009-01-18 Jürg Billeter <j@bitron.ch>
* vala/valacodecontext.vala:
* gobject/valaccodebasemodule.vala:
* gobject/valaccodecompiler.vala:
Do not generate legacy header files when using -H
2009-01-18 Jürg Billeter <j@bitron.ch>
* configure.ac: Post-release version bump
2009-01-18 Jürg Billeter <j@bitron.ch>
* NEWS: update for 0.5.6 release
2009-01-18 Jürg Billeter <j@bitron.ch>
* gobject/valaccodememberaccessmodule.vala:
* vapi/glib-2.0.vapi:
Add Log.FILE, Log.LINE, and Log.METHOD constants as replacements
for __FILE__ and __LINE__ as they are used in C
2009-01-18 Jürg Billeter <j@bitron.ch>
* vapi/Makefile.am:
* vapi/posix.vapi:
Add stub POSIX binding
2009-01-18 Jürg Billeter <j@bitron.ch>
* vala/valaparser.vala:
Accept `params' as identifier after cast parentheses
2009-01-18 Jürg Billeter <j@bitron.ch>
* vapi/glib-2.0.vapi:
Fix sincos binding, patch by Jukka-Pekka Iivonen, fixes bug 568038
2009-01-17 Jürg Billeter <j@bitron.ch>
* gobject/valaccodemethodcallmodule.vala:
Fix crash when using lambda expressions with owned delegate
parameters, fixes bug 566344
2009-01-17 Jürg Billeter <j@bitron.ch>
* vala/valaenumvalue.vala:
* vala/valasourcefile.vala:
Add missing include for enum values, fixes bug 531724
2009-01-17 Jürg Billeter <j@bitron.ch>
* vala/valaconstant.vala:
* vala/valafield.vala:
Fix symbol lookup in constant and field initializers,
fixes bug 567760
2009-01-17 Jürg Billeter <j@bitron.ch>
* gobject/valaccodedelegatemodule.vala:
Fix wrapper for delegates returning arrays, fixes bug 564474
2009-01-17 Jürg Billeter <j@bitron.ch>
* vapi/Makefile.am:
* vapi/lua.vapi:
Add Lua binding, patch by pancake and Phil Housley,
fixes bug 540820
2009-01-17 Jürg Billeter <j@bitron.ch>
* vapi/gsl.vapi:
Fix delegate bindings, patch by Matías De la Puente
2009-01-17 Jürg Billeter <j@bitron.ch>
* vapigen/valagirparser.vala:
Parse callback parameter annotations
2009-01-17 Jürg Billeter <j@bitron.ch>
* vapigen/valamarkupreader.vala:
Fix infinite loop when reading entity references
2009-01-17 Jürg Billeter <j@bitron.ch>
* vapigen/valamarkupreader.vala:
Read comments
2009-01-17 Jürg Billeter <j@bitron.ch>
* vapi/packages/gtk+-2.0/:
Fix gtk_widget_create_pango_* bindings
* vapi/gtk+-2.0.vapi: regenerated
2009-01-17 Jürg Billeter <j@bitron.ch>
* vala/valaobjectcreationexpression.vala:
Set formal_target_type to fix constructors using generic parameter
types, fixes bug 543477
2009-01-17 Jürg Billeter <j@bitron.ch>
* gobject/valaccodememberaccessmodule.vala:
Do not try to convert from generic pointer twice when accessing
generic field
* vala/valaassignment.vala:
Set formal_target_type to fix assignment to generic fields,
fixes bug 543486
2009-01-17 Thijs Vermeir <thijsvermeir@gmail.com>
* vapi/packages/gstreamer-0.10/gstreamer-0.10-custom.vala:
Add missing bindings for GstValue. fixes bug 530812
* vapi/gstreamer-0.10.vapi: Regenerated
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valasymbol.vala:
Fix determining relative accessibility, fixes bug 559798
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valacreationmethod.vala:
Fix bogus errors about missing return type in creation methods,
fixes bug 564178
2009-01-16 Jürg Billeter <j@bitron.ch>
* gobject/valaccodebasemodule.vala:
Use correct cname when calling property set accessor,
fixes bug 562172
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valaassignment.vala:
* vala/valaelementaccess.vala:
* vala/valasemanticanalyzer.vala:
* gobject/valaccodearraymodule.vala:
* gobject/valaccodeassignmentmodule.vala:
* gobject/valaccodebasemodule.vala:
Do not require libgee to support element access in custom types
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valaexpression.vala:
* vala/valareturnstatement.vala:
Report error when returning owned variable in method or property
with unowned return value, fixes bug 547102
2009-01-16 Jürg Billeter <j@bitron.ch>
* vapi/packages/gconf-2.0/:
Remove gconf_init binding, it is broken and deprecated,
fixes bug 548435
* vapi/gconf-2.0.vapi: regenerated
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valacodewriter.vala:
* vapigen/valagidlparser.vala:
Support vfunc_name attribute
* vapi/packages/gio-2.0/:
Fix g_seekable_truncate binding, fixes bug 564448
* vapi/gio-2.0.vapi: regenerated
2009-01-16 Jürg Billeter <j@bitron.ch>
* vapi/packages/gtk+-2.0/:
Fix GtkTreePath binding, fixes bug 566274
* vapi/gtk+-2.0.vapi: regenerated
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valabaseaccess.vala:
* vala/valacodewriter.vala:
* vala/valagenieparser.vala:
* vala/valaparser.vala:
* vala/valasemanticanalyzer.vala:
* vala/valastruct.vala:
* vala/valasymbolresolver.vala:
* vapigen/valagirparser.vala:
Do not allow structs to have more than one base type and detect
cycles, patch by Andreas Brauchli, fixes bug 556063 and bug 567661
2009-01-16 Jürg Billeter <j@bitron.ch>
* vapi/packages/gtk+-2.0/:
Fix gtk_text_iter_forward_find_char binding,
patch by Nicolas Joseph, fixes bug 567543
* vapi/gtk+-2.0.vapi: regenerated
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valablock.vala:
Detect local variables conflicting with parameters,
patch by Andreas Brauchli, fixes bug 523189
* vala/valaflowanalyzer.vala:
* vala/valaparser.vala:
Fix conflicts
2009-01-16 Jürg Billeter <j@bitron.ch>
* vapi/Makefile.am:
* vapi/mysql.vapi:
Add MySQL bindings, patch by Jukka-Pekka Iivonen, fixes bug 567342
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valastruct.vala:
Fix struct base type error message, patch by Carlos Cadete,
fixes bug 567366
2009-01-16 Jürg Billeter <j@bitron.ch>
* vapi/glib-2.0.vapi:
Fix g_datalist*_get bindings, patch by Yu Feng, fixes bug 567324
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valafield.vala:
* gobject/valaccodearraymodule.vala:
Add array_length_cexpr CCode attribute for fields with constant
array length, patch by Andreas Brauchli, fixes bug 567301
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valacodewriter.vala:
Support void ref functions
* vapigen/valagidlparser.vala:
Detect void ref functions, patch by Andreas Brauchli,
fixes bug 549061
* vapi/gconf-2.0.vapi: regenerated
2009-01-16 Jürg Billeter <j@bitron.ch>
* gobject/valaccodestructmodule.vala:
* gobject/valagobjectmodule.vala:
Fix typedef generation for private types, patch by Yu Feng,
fixes bug 567237
2009-01-16 Jürg Billeter <j@bitron.ch>
* gobject/valaccodebasemodule.vala:
Warn about possibly missing GLib.Object prerequisite,
patch by Andreas Brauchli, fixes bug 554329
2009-01-16 Jürg Billeter <j@bitron.ch>
* tests/Makefile.am:
* tests/dbus/basic-types.test:
Test marshalling of basic types over D-Bus
2009-01-16 Jürg Billeter <j@bitron.ch>
* vala/valafield.vala:
* vala/valaparser.vala:
Use `internal' accessibility for namespace members by default
2009-01-16 Jürg Billeter <j@bitron.ch>
* tests/:
Rearrange test cases
2009-01-16 Jürg Billeter <j@bitron.ch>
* tests/Makefile.am:
* tests/basic-types/arrays.test:
Improve array tests
2009-01-16 Jürg Billeter <j@bitron.ch>
* tests/basic-types/strings.test:
Improve string tests
2009-01-15 Jürg Billeter <j@bitron.ch>
* gobject/valadbusclientmodule.vala:
Ignore BusName sender parameters in marshalling code