File: NEWS

package info (click to toggle)
ruby-gnome2 0.15.0-1.1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 7,704 kB
  • ctags: 8,558
  • sloc: ansic: 69,912; ruby: 19,511; makefile: 97; xml: 35; sql: 13
file content (1446 lines) | stat: -rw-r--r-- 50,300 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
Ruby-GNOME2-0.15.0 (2006-07-01)

  * Ruby/GLib 
      - Improve signal handlers with pthread ruby(--enable-pthread). [Sjoerd Simons]
      - Added new fundamental object for other bindings. [Sjoerd Simons]
      - GLib::Source#remove -> GLib::Soruce.remove [Kouhei Sutou]
      - Added new macros (GLIST2ARYF, GLIST2ARY2F, GSLIST2ARYF, GLIST2ARY2F, 
        G_PROTECT_CALLBACK) [Masao Mutoh]
      - Added GLib.win32_locale, GLib, win32_locale_filename_from_utf8 [Kouhei Sutou]
      - Improve memory management [Kouhei Sutou, Sjoerd Simons, Masahiro Sakai, Masao Mutoh]
      - Other improvement and fix bugs. 
        [Sjoerd Simons, Joao Pedrosa, Kouhei Sutou, Masahiro Sakai, Masao Mutoh]

  * Ruby/ATK
      - Improved cygwin support. [Masao Mutoh]
      - Fix a bug. [Masahiro Sakai]

  * Ruby/Pango
      - Fix some bugs. [Laurent Sansonetti, Masao Mutoh]
      - Added Pango::Layout#markup=, Pango::AttrAbsoluteSize [Masao Mutoh]

  * Ruby/GdkPixbuf
      - Fix a bug. [NISHI Takao]
      - Code cleanup [Masao Mutoh]

  * Ruby/GTK
      - Improve signal handlers. [Masahiro Sakai]
      - Added Gtk::Widget#set_widget, #set_requisition. [Daniel Chokola]
      - Added Gtk::Dialog#get_response. [Masao Mutoh]
      - Other improvement and fix bugs [Mario Steele, Tilman Sauerbeck, Geoff Youngs, 
        Masahiro Sakai, Kouhei Sutou, Masao Mutoh]

  * Ruby/GNOME 
      - Follow Ruby/GLib2 change(GRClosure). [Kouhei Sutou]

  * Ruby/GnomeCanvas
      - Code cleanup [Kouhei Sutou, Masao Mutoh]

  * Ruby/Libglade
      - Fixed some bugs and trivial improvement. [Masao Mutoh]

  * Ruby/Libart
      - None.

  * Ruby/GConf
      - Sample code cleanup. [Masao Mutoh]

  * Ruby/GStreamer 
      - Sample code cleanup. [Masao Mutoh]

  * Ruby/GnomeVFS 
      - Improved and fixed bugs. [Masahiro Sakai, Masao Mutoh]

  * Ruby/GtkHtml2
      - Sample code cleanup. [Masao Mutoh]

  * Ruby/GtkGLExt
      - Improved and fixed bugs. [Kouhei Sutou, Masao Mutoh]

  * Ruby/Libgda
      - Fix build against 1.3.x branch (libgda-2.x). [Laurent Sansonetti]

  * Ruby/PanelApplet
      - Fixed a bug [Patch #1431855]

  * Ruby/GtkSourceView
      - Sample code cleanup. [Masao Mutoh]

  * Ruby/GnomePrint
      - Added Gnome::Print::BINDING_VERSION. Code cleanup [Kouhei Sutou]

  * Ruby/GnomePrintUI
      - Added Gnome::PrintUI::BINDING_VERSION. [Kouhei Sutou]
      - Sample code cleanup. [Masao Mutoh]

  * Ruby/RSVG
      - Added RSVG::BINDING_VERSION, RBRSVG_MAJOR_VERSION,
        RBRSVG_MINOR_VERSION, RBRSVG_MICRO_VERSION. [Kouhei Sutou]
      - Supported 2.14.
      - Improved, fixed bugs [Kouhei Sutou, Masao Mutoh]

  * Ruby/GtkMozEmbed
      - Improved, fixed bugs [Mirko Maischberger, Masao Mutoh]

  * Ruby/Poppler [NEW] [EXPERIMENTAL]
      - Added [Kouhei Sutou]

  * Ruby/VTE [NEW]
      - Added [Kouhei Sutou]


Ruby-GNOME2-0.14.1 (2005-11-06)

  * Ruby/GLib 
      - Fix memory leaks. [Masao Mutoh]

  * Ruby/ATK
      - None.

  * Ruby/Pango
      - Fix some bugs. [Masao Mutoh]

  * Ruby/GdkPixbuf
      - None.

  * Ruby/GTK
      - Improve memory management. [Masao Mutoh]

  * Ruby/GNOME 
      - None.

  * Ruby/GnomeCanvas
      - None.

  * Ruby/Libglade
      - None.

  * Ruby/Libart
      - None.

  * Ruby/GConf
      - None.

  * Ruby/GStreamer 
      - None.

  * Ruby/GnomeVFS 
      - None.

  * Ruby/GtkHtml2
      - None.

  * Ruby/GtkGLExt
      - None.

  * Ruby/Libgda
      - None.

  * Ruby/PanelApplet
      - None.

  * Ruby/GtkSourceView
      - None.

  * Ruby/GnomePrint
      - None.

  * Ruby/GnomePrintUI
      - None.

  * Ruby/RSVG
      - None.

  * Ruby/GtkMozEmbed
      - None.


Ruby-GNOME2-0.14.0 (2005-10-16)

  * Ruby/GLib 
      - Fix segfault related on GC. [Masao Mutoh]
      - Support Ruby-GetText-Pacakge(Include pseudo GetText module). [Masao Mutoh]
      - Add and completed: [Masao Mutoh]
        Glib::Shell, GLib::Completion, GLib::Timer, sample/shell.rb, completion.rb, timer.rb.
      - Add some methods, improved, fixed bugs: [Pascal Terjan, Sven Herzberg, Masao Mutoh]
        GLib, GLib::Object, GLib::MetaInterface, GLib::Enum, GLib::Flags, PKGConfig, 
        extconf.rb, mkmf-gnome2.rb 

  * Ruby/ATK
      - Support ATK-1.10. [Masao Mutoh]
      - Add Atk::BUILD_VERSION. [Masao Mutoh]
      - Add some methods, improved, fixed bugs: [Masao Mutoh]
        Atk, Atk::Relation, Atk::RelationSet, Atk::StreamableContent, Atk::Text::Attribute, 
        Atk::Util
      - Add and completed: [Masao Mutoh]
        Atk::Util::KeyEventType

  * Ruby/Pango
      - Support Pango-1.10 and cairo [Kouhei Sutou, Masao Mutoh]
      - Add Pango::BUILD_VERSION. [Masao Mutoh]
      - Add some methods, improved, fixed bugs: [Kouhei Sutou, Masao Mutoh]
        Pango, Pango::Layout, Pango::LayoutLine, Pango::LayoutIter, Pango::Language, 
        Pango::Font, Pango::GlyphItem, Pango::GlyphString, Pango::Context, Pango::Analysis, 
        Pango::Item 
      - Add and completed: [Masao Mutoh]
        Pango::ScriptIter, Pango::Script, Pango::(.*)FontMap, Pango::(.*)Face,
        Pango::(.*)Family, Pango::XFont, Pango::FT2Font,
        sample/script.rb, break.rb, item.rb, layout.rb
      - Add classes: [Kouhei Sutou, Masao Mutoh]
        Pango::Engine, Pango::EngineShape, Pango::EngineLang
        Cairo::Context, Pango::CairoFcFont, Pango::CairoFont, Pango::CairoWin32Font, 
        Pango::CairoFontMap
      - Rename class name: [Masao Mutoh]
        Pango::FontSet -> Pango::Fontset, Pango::FontSetSimple -> Pango::FontsetSimple.

  * Ruby/GdkPixbuf
      - Support GTK+-2.8. [Guillaume Cottenceau]
      - Add some methods, improved, fixed bugs: [Kouhei Sutou, Guillaume Cottenceau]
        Gdk::Pixbuf
      - Add and completed: [Guillaume Cottenceau]
        Gdk::PixbufSimpleAnim, sample/simpleanim.rb

  * Ruby/GTK
      - Support GTK+-2.8. [Guillaume Cottenceau, Masao Mutoh]
      - Support cairo. [Kouhei Sutou, Masao Mutoh]
      - Add Gtk::BUILD_VERSION. [Masao Mutoh]
      - Add some methods, improve, fix bugs: [Guillaume Cottenceau, Masao Mutoh]
        Gdk, Gdk::Drawable, Gdk::Display, Gdk::Drawable, Gdk::Cursor, Gdk::Window, Gdk::Screen, 
        Gtk::Action, Gtk::Dialog, Gtk::Drag, Gtk::EntryCompletion, Gtk::FileChooser, 
        Gtk::IconView, Gtk::Image, Gtk::Menubar, Gtk::MenuShell, Gtk::ScrolledWindow, 
        Gtk::SizeGroup, Gtk::Stock, Gtk::TextBuffer, Gtk::TextIter, Gtk::ToolButton, 
        Gtk::TreeRowReference, Gtk::TreeView, Gtk::TreeViewColumn, Gtk::Window, 
        sample/gtk-demo/*.rb
      - Add: [Guillaume Cottenceau, Kouhei Sutou]
        Cairo::Context, Gdk::EventGrabBroken, sample/gtk-demo/cairo_*.rb, sample/misc/rgtk+cairo.rb
        

  * Ruby/GNOME [Masao Mutoh]
      - Support libgnome/libgnomeui-2.12. 
      - Add Gnome::BUILD_VERSION.
      - Add some methods, improve, fix bugs:
        Gnome, Gnome::Util, Gnome::URL, Gnome::Help, Gnome::App, Gnome::Client
      - Add: Gnome::GConf, Gnome::Sound, Gnome::Trigger
        sample/gnome-trigger.rb, sample/gnome-sound.rb

  * Ruby/GnomeCanvas
      - Support libgnomecanvas-2.12. [Pascal Terjan, Masao Mutoh]
      - Add Gnome::Canvas::BUILD_VERSION. [Masao Mutoh]
      - Add some methods, improve, fix bugs: [Kouhei Sutoh, Pascal Terjan, Masao Mutoh]
        Gnome::CanvasItem, Gnome::CanvasPathDef, Gnome::Canvas.
      - Add: Gnome::CanvasBuf. [Masao Mutoh]

  * Ruby/Libglade [Masao Mutoh]
      - Support libglade-2.12.
      - Add GladeXML::BUILD_VERSION. 
      - Add some methods, improve, fix bugs:
        bin/ruby-glade-create-template, sample/l10n_*.rb, GladeXML

  * Ruby/Libart [Masao Mutoh]
      - Add Art::BUILD_VERSION.
      - Add: Art::Uta.

  * Ruby/GConf
      - Support Cygwin. [Yaakov Selkowitz]
      - Add GConf::BUILD_VERSION. [Masao Mutoh]

  * Ruby/GStreamer 
      - Support on Ruby-1.9. [Laurent Sansonetti]
      - Add Gst::BUILD_VERSION. [Masao Mutoh]
      - Fix bugs, improve, add some methods: [Masao Mutoh]
        Gst::Element 

  * Ruby/GnomeVFS 
      - Support Cygwin. [Yaakov Selkowitz] 
      - Add GnomeVFS::BUILD_VERSION. [Masao Mutoh]
      - Fix bugs, improve, add some methods: [Masao Mutoh]
        GnomeVFS

  * Ruby/GtkHtml2 [Masao Mutoh]
      - Add Gtk::HtmlContext::BUILD_VERSION.

  * Ruby/GtkGLExt
      - Added Gtk::GL::BUILD_VERSION. [Masao Mutoh]
      - Fix bugs, improve, add some methods: [Kouhei Sutou]
        Gdk::Pixmap

  * Ruby/Libgda
      - Support Cygwin. [Yaakov Selkowitz] 
      - Add Gda::BUILD_VERSION. [Masao Mutoh]

  * Ruby/PanelApplet [Masao Mutoh]
      - Add PanelApplet::BUILD_VERSION. 

  * Ruby/GtkSourceView [Masao Mutoh]
      - Support GtkSourcView-1.4.
      - Add Gtk::SourceView::BUILD_VERSION. 
      - Fix bugs, Improve, Add some methods: 
         Gtk::SourceView, Gtk::SourceBuffer, Gtk::SourceTag, Gtk::SourceTagStyleMask
      - Add and completed:
        Gtk::SourceStyleScheme, Gtk::SourcePrintJob

  * Ruby/GnomePrint [Kouhei Sutou]
      - Support libgnomeprint-2.12.
      - Add Gnome::Print::BUILD_VERSION
      - Fix bugs, Improve, Add some methods.
        Gnome::PrintContext
      - Add: sample/gp-pac.rb

  * Ruby/GnomePrintUI [Kouhei Sutou] 
      - Support libgnomeprintui-2.12.
      - Add Gnome::PrintUI::BUILD_VERSION
      - Add: Gnome::FontSelection, Gnome::FontPreview, Gnome::FontDialog, 
        Gnome::PrintContentSelector

  * Ruby/RSVG [Kouhei Sutou] 
      - Support rsvg-2.12.
      - Add RSVG::BUILD_VERSION

  * Ruby/GtkMozEmbed [NEW]
      - Merged. [Mirko Maischberber]
      - Add Gtk::MozEmbed::BUILD_VERSION [Masao Mutoh]


Ruby-GNOME2-0.13.0 (2005-07-31)

  * Ruby/GLib 
      - Fixed GCC 4.0 warnings [Masao Mutoh]
      - Added and completed: [Masao Mutoh]
        GLib:PollFD, GLib::Source, GLib::MainLoop, GLib::IOChannel, 
        GLib::Idle, GLib::ChildWatch
      - Added some methods, improved, fixed bugs: [Vincent Isambart, Masao Mutoh]
        PKGConfig, extconf.rb, 
      - Added: [Masao Mutoh]
        GLib::MainContext, sample/iochannel.rb, idle.rb, timeout.rb, 
        timeout2.rb, tests/test-iochannel.*, runner.rb,

  * Ruby/ATK
      - None.

  * Ruby/Pango
      - Fixed GCC 4.0 warnings [Masao Mutoh]
      - Support x86_64 [Masao Mutoh]
        Pango::Layout
      - Added some methods, improved, fixed bugs: [Mirko Maischberger, 
        Pascal Terjan, Masao Mutoh]
        sample/parse.rb, Pango::LayoutLine, Pango::Coverage, Pango::LayoutIter, 
        Pango::FontFamily, Pango::Attriterator

  * Ruby/GdkPixbuf
      - Fixed GCC 4.0 warnings [Masao Mutoh]
      - Fixed bugs, Improved: [Mirko Maischberger, Masao Mutoh]
        sample/*.rb

  * Ruby/GTK
      - Support x86_64 [Kouhei Sutou, Masao Mutoh]
        Gdk::Atom, Gtk::ItemFactory, Gtk::Widget, Gtk::Drag, Gtk::SizeGroup
      - Fixed GCC 4.0 warnings [Masao Mutoh]
      - Fixed bugs, Improved, Added some methods: [Hiroyuki Ikezoe, KATO Kazuyoshi, 
        Pascal Terjan, Kouhei Sutou, Mirko Maischberger, Masao Mutoh]
        Gtk::ActionGroup, Gtk::IconTheme, Gtk::RC, Gtk::TreeModel, Gdk::TimeCoord, 
        Gdk::Window, Gtk::CellView, Gtk::ToolButton, Gtk::MenuToolButton, Gdk, 
        Gdk::Display, Gdk::GC, Gdk::PangoAttrEmbossed, Gdk::Drawable, Gtk::Window,
        sample/gtk-demo/main.rb, sample/misc/*.rb, sample/testgtk/*.rb.
      - Added: [KATO Kazuyoshi, Masao Mutoh]
        sample/gtk-demo/hypertext.rb, sample/misc/colorselection.rb

  * Ruby/GNOME [Mirko Maischberger]
      - sh-bang (!#) normalization
        sample/test-gnome/*.rb

  * Ruby/GnomeCanvas [Kouhei Sutou]
      - Support x86_64, Improved. [Kouhei Sutou]
        Gnome::CanvasPathDef

  * Ruby/Libglade
      - None.

  * Ruby/Libart 
      - Added [Kouhei Sutou]
        Art::DRect, Art::IRect
      - Fixed bugs, Improved, Added some methods: [Kouhei Sutou, Masao Mutoh]
        Art::Affine, Art::BPath. Art::Canvas

  * Ruby/GConf
      - None.

  * Ruby/GStreamer 
      - Fixed GCC 4.0 warnings [Masao Mutoh]
      - Added: [Laurent Sansonetti]
        Gst::XOverLay, sample/video-player.rb, 
      - Fixed bugs, Improved, Added some methods: 
        [Laurent Sansonetti]
        Gst::Caps, Gst::Pad, Gst::Element, Gst::TagSetter

  * Ruby/GnomeVFS [Masao Mutoh]
      - Fixed bugs, Improved, Added some methods:
        GnomeVFS::File

  * Ruby/GtkHtml2
      - None.

  * Ruby/GtkGLExt
      - None.

  * Ruby/Libgda
      - None.

  * Ruby/PanelApplet [Masao Mutoh]
      - Check libpanel-applet version(2.6 or later):
        extconf.rb

  * Ruby/GtkSourceView [Masao Mutoh]
      - None.

  * Ruby/GnomePrint
      - Fixed GCC 4.0 warnings [Masao Mutoh]
      - Fixed bugs, Improved, Added some methods. [Kouhei Sutou]
        Gnome::PrintContext, Gnome::PrintJob, Gnome::PrintConfig, 
        Gnome::PrintUnit, Gnome::PrintPaper, src/lib/gnomeprint2.rb, 
        sample/to_file.rb 

  * Ruby/GnomePrintUI
      - Fixed GCC 4.0 warnings [Masao Mutoh]
      - Fixed bugs, Improved, Added some methods. [Kouhei Sutou]
        Gnome::PaperSelector, Gnome::PrintUnitSelector, Gnome::PrintPreview, 
        Gnome::PrintDialog, Gnome::PrintConfigDialog, sample/dialog.rb, 

  * Ruby/RSVG
      - Fixed GCC 4.0 warnings [Masao Mutoh]
      - Fixed bugs, Improved, Added some methods. [Kouhei Sutou]



Ruby-GNOME2-0.12.0 (2005-03-06)

  * Ruby/GLib 
      - Support GLib-2.6.x. [Masao, Mutoh]
      - Support MS VC++. [Masao, Mutoh]
      - Fix bugs, Improved, Added some methods. [KATO Kazuyoshi, 
	Masao Mutoh]
        PKGConfig, rbgobj_lookup_class().
      - Added: [Masao, Mutoh]
        GLib::Threads, src/lib/pkg-config.rb, sample/spawn.rb.

  * Ruby/ATK [Dafydd Harries, Vincent Isambart, Masao Mutoh]
      - Support MS VC++. 
      - Fix bugs, Improved, Added some methods. 
      - Follow Ruby/GLib changes.

  * Ruby/Pango [Masao Mutoh]
      - Support Pango-1.8.x.
      - Support MS VC++. 
      - Follow Ruby/GLib changes.
      - Added and completed:
	Pango::Renderer, Pango::Matrix, Pango::AttrStrikethroughColor,
	Pango::AttrUnderlineColor, Pango::GlyphItem
      - Added some methods, improved, fixed bugs: [Matthew Berg, 
 	Pango::Context, Pango::AttList, Pango::Attribute, Pango::Layout,
	Pango, Pango::AttrSize, Pango::LogAttr, Pango::Item, 
	Pango::Analysis, Pango::Font, Pango::FontDescription, 
	Pango::FontFace, Pango::FontSet, Pango::AttrList, 
	Pango::AttrIterator, Pango::Rectangle, Pango::Layout,
	Pango::LayoutLine, Pango::LayoutIter, Pango::GlyphInfo
      - Added
        Pango::FcFont, Pango::XftFont, Pango::FontFcFontMap, 
	Pango::XftFontMap.
      - Renamed, Moved
	Pango::FontFamily#list_faces -> #faces.

  * Ruby/GdkPixbuf [leon breedt, Masao Mutoh]
      - Support GTK+-2.6.x.
      - Follow Ruby/GLib changes.
      - Fixed bugs, Improved, Added some methods for GTK+-2.6.x:
	Gdk::PixbufAnimationIter, Gdk::Pixbuf, Gdk::PixbufLoader, 
	Gdk::PixbufFormat

  * Ruby/GTK
      - Support Ruby-1.9.x.
      - Support Pango-1.8.x.
      - Support GTK+-2.6.x.
      - Support MS VC++. 
      - Follow Ruby/GLib changes.
      - Improve to support gthread.
      - Added and completed for GTK+-2.6.x: [Darren Willis, 
        Gtk::CellRendererProgress, Gtk::ScrollStep, Gtk::IconView,
	Gtk::CellRendererCombo, Gtk::AboutDialog, Gdk::PangoRenderer,
	Gtk::CellView, Gtk::MenuToolButton, Gtk::FileChooserButton,
	Gdk::EventChange, Gdk::X11
      - Fixed bugs, Improved, Added some methods for GTK+-2.6.x:
	[Mirko Maischberger, Joao Pedrosa, KATO Kazuyoshi, Masao Mutoh]
 	Gtk, Gtk::CellLayout, Gtk::RadioToolButton, Gtk::ToggleToolButton,
	Gtk::Stock, Gtk::Image, Gtk::Label, Gtk::Progressbar, 
	Gtk::EntryCompletion, Gtk::TextBuffer, Gtk::FileFilter,
	Gtk::FileChooser, Gtk::Menu, Gtk::CellRenderer, Gtk::TreeView,
	Gtk::TextView, Gtk::TextBuffer, Gtk::Drag, Gtk::ToolItem, 
	Gtk::ActionGroup, Gtk::Action, Gtk::ComboBox, Gtk::Combo,
	Gtk::IconTheme, Gtk::SelectionData, Gtk::TargetList, Gtk::ListStore,
	Gtk::Window, Gtk::ToggleAction, Gtk::MessageDialog, Gdk::Region,
	Gdk::Window, Gtk::Clipboard, Gtk::Settings, Gtk::TreeModel, 
	Gtk::ModelFilter, Gtk::TreeViewColumn, Gtk::Widget, Gdk::Pango,
	Gdk::Display, Gdk::Drawable, Gtk::RadioAction, Gdk::Screen,
	Gtk::TextBuffer, Gdk::Threads, 
        sample/gtk-demo/*.rb, sample/misc/threads.rb, pangorenderer.rb
      - Added: [KATO Kazuyoshi, Darren Willis, Masao, Mutoh]
        sample/misc/tree_progress.rb, misc_button.rb, aboutdialog.rb, 
	aboutdialog2.rb, 
	sample/gtk-demo/clipboard.rb, entry_completion.rb, expander.rb,
	iconview.rb

  * Ruby/GNOME [Masao Mutoh]
      - Follow Ruby/GLib changes.

  * Ruby/GnomeCanvas [Masao Mutoh]
      - Follow Ruby/GLib changes.

  * Ruby/Libglade [Masao Mutoh]
      - Follow Ruby/GLib changes.
      - Support MS VC++. 
      - Improved.

  * Ruby/Libart [KATO Kazuyoshi, Masao Mutoh]
      - Follow Ruby/GLib changes.

  * Ruby/GConf [Masao Mutoh]
      - Follow Ruby/GLib changes.
      - Fixed bugs, Improved.
      - Deprecated:
	GConf::Client.new 

  * Ruby/GStreamer
      - Follow Ruby/GLib changes. [Masao Mutoh]
      - Added and completed: [Jack Paul, Masao Mutoh, Laurent Sansonetti]
	Gst::TypeFindFactory, Gst::MediaInfoError, Gst::Tag, 
	Gst::RegistryPool, Gst::TagSetter
      - Fixed bugs, Improved, Added some methods: 
	[Jack Paul, Max Nickel, Masao Mutoh, Laurent Sansonetti]
	Gst::Plugin, Gst::PluginFeature, Gst::Caps, Gst::Structure, 
	Gst::Xml, Gst::Thread, Gst::Scheduler, Gst::SchedulerFactory, 
	Gst::MediaInfo, 
	sample/gst-inspect.rb

  * Ruby/GnomeVFS [Masao Mutoh]
      - Follow Ruby/GLib changes.
      - Fixed bugs, Improved.

  * Ruby/GtkHtml2 [Masao Mutoh]
      - Follow Ruby/GLib changes.

  * Ruby/GtkGLExt [Masao Mutoh]
      - Follow Ruby/GLib changes.

  * Ruby/Libgda
      - Support 1.1.99
      - Follow Ruby/GLib changes. [Masao Mutoh]
      - Fixed bugs, Improved, Added some methods: [Laurent Sansonetti]
        Gda::DataModel, Gda::Provider, Gda::Quarklist, Gda::Connection
      - Renamed, Moved [Laurent Sansonetti]
        Gda::DataModel#editable? => #updatable?
	#editing? => changed?, 	#begin_edit => #begin_update, 
	#cancel_edit => #cancel_update, #end_edit => #end_update

  * Ruby/PanelApplet [Neil Stevens, Masao Mutoh]
      - Follow Ruby/GLib changes. 
      - Added some methods

  * Ruby/GtkSourceView [Masao Mutoh]
      - Follow Ruby/GLib changes. 
      - Added some methods

  * Ruby/GnomePrint
      - Follow Ruby/GLib changes. [Masao Mutoh, Kouhei Sutou]
      - Fixed bugs, Improved, Added some methods. [Kouhei Sutou]

  * Ruby/GnomePrintUI
      - Follow Ruby/GLib changes. [Masao Mutoh, Kouhei Sutou]
      - Fixed bugs, Improved, Added some methods. [Kouhei Sutou]

  * Ruby/RSVG
      - Follow Ruby/GLib changes. [Masao Mutoh, Kouhei Sutou]
      - Fixed bugs, Improved, Added some methods. [Kouhei Sutou]


Ruby-GNOME2-0.11.0 (2004-11-14)

  * Ruby/GLib [Kouhei Sutou, Vincent Isambart, Masao Mutoh]
      - Fix bugs, Improved, Added some methods.

  * Ruby/ATK [Vincent Isambart, Masao Mutoh]
      - Support ATK+-1.7.x.
      - Fixed bugs, Improved, Added some methods.  

  * Ruby/Pango [Geoff Youngs, Vincent Isambart, Masao Mutoh]
      - Improved, Fix bugs.

  * Ruby/GdkPixbuf [Geoff Youngs, Masao Mutoh]
      - Support GTK+-2.4.x.
      - Fixed bugs, Improved, Added some methods. 

  * Ruby/GTK [Geoff Youngs, Vincent Isambart, Masao Mutoh]
      - Fixed bugs, Improved, Added some methods.

  * Ruby/GNOME [Masao Mutoh]
      - Improved.

  * Ruby/GnomeCanvas [Masao Mutoh]
      - Fixed bugs, Improved, Added some methods.

  * Ruby/Libglade [Masao Mutoh]
      - Improved.

  * Ruby/Libart [Vincent Isambart, Masao Mutoh]
      - Improved to support ruby-1.7.x or later.
      - Changed: [Masao Mutoh]
         Art::Canvas::Color.new -> Art::Canvas.color.
         Art::Vpath::Dash -> Art::VpathDash.

  * Ruby/GConf [Masao Mutoh]
      - Improved. 

  * Ruby/GStreamer [Masao Mutoh]
      - Improved. 

  * Ruby/GnomeVFS [Masao Mutoh]
      - Improved. 

  * Ruby/GtkHtml2 [Masao Mutoh]
      - Improved. 

  * Ruby/GtkGLExt [Vincent Isambart]
      - Improved. 

  * Ruby/Libgda 
      - None.

  * Ruby/PanelApplet 
      - None.

  * Ruby/GtkSourceView [Vincent Isambart, Masao Mutoh]
      - Fixed bugs.

  * Ruby/GnomePrint [NEW]
      - Added. [Kouhei Sutou]

  * Ruby/GnomePrintUI [NEW: Alpha release]
      - Added. [Kouhei Sutou]

  * Ruby/RSVG [NEW: Alpha release]
      - Added. [Kouhei Sutou]


Ruby-GNOME2-0.10.1 (2004-08-16)

  * Ruby/GdkPixbuf [Masao Mutoh]
     - Fix bugs.
  * Ruby/GTK [Masao Mutoh]
     - Support GTK+-2.0.x again.
  * Ruby/GtkSourceView [Masao Mutoh]
     - Fix bugs.

Ruby-GNOME2-0.10.0 (2004-08-09)

  * Ruby/GLib [Masao Mutoh]
      - Added: [Kazuhiro NISHIYAMA, Masao, Mutoh]
         GLib::Spawn, sample/utils.rb, sample/type-register2.rb
      - Added some methods, improved, fixed bugs: [Laurent Sansonetti, 
        Pascal Terjan, Masao Mutoh]
         GLib, GLib::Object, GLib::Log, glib2.rb, 

  * Ruby/ATK [Masao Mutoh]
      - None.

  * Ruby/Pango [Masao Mutoh]
      - Fix bugs.

  * Ruby/GdkPixbuf [Masao Mutoh]
      - Removed version information.

  * Ruby/GTK 
      - Support GTK+-2.4.x.
      - Added: [Seiya Nishizawa, Masao, Mutoh]
         Gtk::ToolButton, Gtk::ToolItem, Gtk::ToggleToolButton, 
         Gtk::SeperatorToolItem, Gtk::ComboBox, Gtk::ComboBoxEntry, 
         Gtk::Expander, Gtk::ColorButton, Gtk::FontButton, Gtk::FileChooserWidget, 
         Gtk::FileChooser, Gtk::FileFilter, Gtk::FileChooserDialog, Gtk::Action, 
         Gtk::ToggleAction, Gtk::IconInfo, Gtk::IconTheme, Gtk::UIManager, 
         Gtk::RadioAction, Gtk::CellLayout, Gtk::ActionGroup, 
         sample/misc/entrycompletion.c, filechooser.rb, combobox.rb, expander.rb, 
         color_font_button.rb, uimanager.rb, uimanager2.rb, uimanager2.xml
      - Improved, fixed bugs: [Geoff Youngs, Vincent Isambart, 
        Kazuhiro NISHIYAMA, Masao Mutoh]
         Gtk::Style, Gtk::Widget, Gtk::TextView, Gtk::Container, Gdk::EventClient, 
         Gtk::Dialog, Gtk::Entry, Gdk::Selection, Gtk::Drag, Gdk, Gdk::Atom, 
         Gtk::Editable, Gtk::Stock, Gtk::TextIter, Gtk::TextMark, Gtk::Style,
         sample/misc/dialog2.rb, entry.rb, settings.rb, 
      - Renamed, Moved: [Masao Mutoh]
         Gtk::EventCrossing::CrossingMode to Gtk::EventCrossing::Mode,
         Gdk::SettingAction to Gdk::EventSetting::Action
         Gdk::Input.set_extension_events to Gdk::Device. 
      - Deperecated: [Masao Mutoh]
         Gtk::Combo, Gtk::OptionMenu since GTK+-2.4.

  * Ruby/GNOME
      - None.

  * Ruby/GnomeCanvas
      - None.

  * Ruby/Libglade
      - Added: [Masao Mutoh]
         sample/l10n*, makemo.rb, sample/po/*.
      - Added methods: [Masao Mutoh]
         GladeXML#get_tooltips.
      - Improved, fixed bugs: [Masao Mutoh]
         GladeXML, bin/ruby-glade-create-template

  * Ruby/Libart
      - None.

  * Ruby/GConf
      - Added some methods, Improved, fixed bugs: [Giovanni Corriga, Pascal Terjan, 
        Kazuhiro NISHIYAMA, Masao Mutoh]
         GConf::Client
      - Deprecated: [Masao Mutoh]
         GConf::Client.new. Use GConf::Client.default instead.

  * Ruby/GStreamer
      - Requires GStreamer-0.8.x or later. 
      - Added: [Laurent Sansonetti]
         Gst::Clock, Gst::Scheduler
      - Added methods, improved, Fixed bugs: [Laurent Sansonetti]
         Gst::Element, Gst::Bin, Gst::Caps, Gst::Structure, 
      - Removed: [Laurent Sansonetti]
         Gst::Autoplug, Gst::AutoplugFactory, Gst::Type,
         Gst::TypeFactory, Gst::TypeFind
         Gst.set_debug, 

  * Ruby/GnomeVFS
      - Fixed bugs: [Pascal Terjan, Giovanni Corriga, Masao Mutoh]

  * Ruby/GtkHtml2
      - None.

  * Ruby/GtkGLExt
      - Fixed bugs: [Vincent Isambart]

  * Ruby/Libgda 
      - Added methods, fixed bugs: [Laurent Sansonetti]
        Gda::Command, Gda::Connection
      - Removed: [Laurent Sansonetti]
        Gda::Export

  * Ruby/PanelApplet [NEW]
      - Added. [Jamis Buck, Masao Mutoh]

  * Ruby/GtkSourceView [NEW]
     - Added. [Laurent Sansonetti]

Ruby-GNOME2-0.9.1 (2004-03-14)

  * Ruby/GLib [Masao Mutoh]
      - Fix a compilation problem on MinGW.

  * Ruby/ATK [Masao Mutoh]
      - Fix a compilation problem on MinGW.
      - Improved extconf.rb

  * Ruby/Pango [Masao Mutoh]
      - Improved extconf.rb

  * Ruby/GTK [Masao Mutoh]
      - Fix a compilation problem on MinGW.
      - Fix a bug of Gtk::Combo.
      - Improved extconf.rb

  * Ruby/GConf [Kazuhiro NISHIYAMA]
      - Fix bugs.

  * Ruby/Libgda [Laurent Sansonetti]
      - Support libgda-1.0.3(stable branch).

Ruby-GNOME2-0.9.0 (2004-03-07)

  * Ruby/GLib
      - Improved, fixed bugs: [Kenichi Komiya, Vincent Isambart, Masao Mutoh]
         GLib::Object, GLib::Param::Flags, mkmf-gnome2.rb, sample/type-register.rb
      - Added new macros: [Masao Mutoh]
         G_DEF_CLASS3()

  * Ruby/ATK [NEW]
      - Added and compeleted: [Masao Mutoh]
         Atk::Action, Atk::Document, Atk::GObjectAccessible, Atk::NoOpObject, 
         Atk::NoOpObjectFactory, Atk::Value, Atk::Component, Atk::Image, 
         Atk::HyperText, Atk::HyperLink, Atk::EditableText, Atk::Implementor, 
         Atk::Object, Atk::Relation, Atk::Registry, Atk::ObjectFactory, 
         Atk::State, Atk::StateSet, Atk::EditableText, Atk::Table 
      - Added: [Masao Mutoh]
         Atk::Util, Atk::Component, Atk::Selection, Atk::Text

  * Ruby/GdkPixbuf
      - None.

  * Ruby/Pango 
      - None.

  * Ruby/GTK
      - Completed: [Masao Mutoh]
      - Added and completed: [Masao Mutoh]
      - Added: [Kenichi Komiya, Masao, Mutoh]
         Gtk::TextAppearance, sample/misc/bindings.rb, properties.rb, 
         style_property.rb, settings.rb
      - Added some methods, improved, fixed bugs: [Kenichi Komiya, Masahiro Sakai, 
          Vincent Isambart, Dafydd Harries, Masao Mutoh]
         Gdk::Window, Gtk::SizeGroup, Gtk::Object, Gtk::BindingSet, 
         Gtk::TextTagTable, Gtk::TextTag, Gdk::Colormap, Gtk::TreeViewColumn, 
         Gtk::TextIter, Gtk::SpinButton, Gtk::Allocation, Gtk::TextView, 
         Gtk::TextBuffer, Gtk::Widget, Gtk::Container, Gtk::Setting, Gtk::TreePath, 
         Gtk::TreeIter, Gdk::Display, Gtk::TextAttributes, Gdk::Property, 
         Gdk::Keymap, Gdk::Pixmap, Gdk::Drawable, Gdk::Screen, Gdk::Event, 
         Gdk::EventExpose, Gdk::Selection, Gdk::GC,  
         sample/gtk-demo/main.rb, stock_browser.rb, list_store.rb, tree_store.rb,
         sample/testgtk/notebook.rb,
         sample/misc/label.rb, toolbar.rb, 
         extconf.rb
      - Removed: [Masao Mutoh]
         Gtk::Object#activate_binding
          Use Gtk::Object#bindings_activate insted.
         Gtk::TextAttribute#copy
          Use GLib::Boxed#copy instead.
         Gdk::EventKey#string, #length.
         makedefconst.rb
          Don't use anymore.
      - Deperecated: [Masao Mutoh]
         Gtk::TextBuffer#insert_with_tags, #insert_pixbuf, #insert_child_anchor.
          They will be removed until 1.0.0.
          Use Gtk::TextBuffer#insert instead.

  * Ruby/GNOME
      - Fixed bugs: [Masao Mutoh]
         Gnome::Program

  * Ruby/GnomeCanvas
      - Added: [Masao Mutoh]
         Gnome::CanvasShape, Gnome::CanvasRE, Gnome::CanvasClipgroup
      - Fixed bugs: [Vincent Isambart, Masao Mutoh]
         extconf.rb, sample/canvas-curve.rb

  * Ruby/Libglade
      - Added: [Masao Mutoh]
         sample/custom.[rb|glade]
      - Added methods: [Archit Baweja, Masao Mutoh]
         GladeXML#widget_names, #filename, #[], #require, #provide
      - Improved, fixed bugs: [Masao Mutoh]
         bin/ruby-glade-create-template

  * Ruby/Libart
      - Improved: [Masao Mutoh]
         extconf.rb

  * Ruby/GConf
      - None.

  * Ruby/GStreamer 
      - Added some methods, improved, fixed bugs: [Laurent Sansonetti]
         Gst, Gst::Bin, Gst::Pad, Gst::PadTemplate, Gst::Type, Gst::Element
         sample/gst-inspect.rb, media-type2.rb
        
  * Ruby/GnomeVFS
      - Added some methods, improved, fixed bugs: [Masahiro Sakai, Masao Mutoh]
         GnomeVFS::FileInfo, Gnome::VFS::File, GnomeVFS::ProtocolError, 
         GnomeVFS::NoMasterBrowserError

  * Ruby/GtkHtml2
      - Added some methods, fixed bugs: [Vincent Isambart, Masao Mutoh]
         Gtk::HtmlView, Gtk::HtmlStream, extconf.rb

  * Ruby/GtkGLExt
      - Added some methods, improved, fixed bugs: [Vincent Isambart, Masao Mutoh]
         Gdk::GLDrawable, sample/*.rb

  * Ruby/Libgda
      - Added: [Laurent Sansonetti] 
        GeometricPoint, Gda::Money, Gdak::Time
      - Added some methods, improved, fixed bugs: [Nikolai Weibull, Laurent Sansonetti]
         Gda::Error, Gda::ParameterList, Gda::Provider, Gda::DataSource, 
         Gda::Connection, Gda::Parameter, Gda::Command, Gda::Row, Gda::Value, 
         Gda::DataModel, Gda::ModelList, Gda::FieldAttributes
         tests/*.rb, src/lib/libgda.rb

Ruby-GNOME2-0.8.1 (2003-11-23)

  * Ruby/GTK
    - Fixed compilation problems for GTK+-2.0.x. [Masao Mutoh]
    - Fixed some bugs. [Masahiro Sakai, Masao Mutoh]
    - Added Gtk::Tree* methods for GTK+-2.2.x. [Matthew Berg]
  * Ruby/GtkHtml2
    - Fixed compilation problems for libgtkhtml-2.4.1 [Masahiro Sakai]
  * Ruby/Libgda
    - Fixed a bug [Laurent Sansonetti]
    *Notice* Ruby/Libgda needs libgda-1.0.2(not released yet) or later.

Ruby-GNOME2-0.8.0 (2003-11-16)

  * Ruby/GLib
      - Provide methods for creating GObject from ruby side. Now you can create
        your own signals and properties: [Masahiro, Sakai]
         GLib::MetaInterface, GLib::Instantiatable, GLib::Signal
      - Added some methods, improved and Fixed some bugs: 
        [Masahiro Sakai, Masao Mutoh]
         GLib::Closure, GLib, GLib::Instantiatable, GLib::Object, mkmf-gnome2.rb
      - Added new macros: [Masao Mutoh]
         G_RENAME_NICK()
      - Added: [Masahiro, Sakai]
         sample/type-register.rb, tests/*.rb

  * Ruby/GdkPixbuf
      - Added some methods, improved and Fixed some bugs: 
        [KATO Kazuyoshi, Masao Mutoh]
         Gdk::Pixbuf

  * Ruby/Pango 
      - rbpango.h is installed with glib/gtk2 headers.
      - Added new methods: [Masao Mutoh]
         Pango::Layout
      - Added: [Masao Mutoh]
         PangoLogAttr, PangoAnalysis

  * Ruby/GTK
      - Completed: [Masao Mutoh]
         Gdk::Geometry, Gdk::Event*, Gdk::Pixbuf, Gdk::Drawable, 
         Gdk::DragContext, Gdk::Selection, Gdk::RGB, Gdk::GC, Gdk::Atom, 
         Gdk::Image, Gdk::Colormap, Gdk::Keyval, Gdk::Screen, Gdk::Visual, 
         Gdk::Window, Gdk::Display,  Gdk
      - Added and completed: [Masao Mutoh]
         Gdk::Property, Gdk::Keymap, Gdk::TimeCoord, 
      - Added some methods, improved, fixed bugs: [Matthew Berg, 
        Martin Povolny, KATO Kazuyoshi, Laurent Sansonetti, Masahiro Sakai, 
        Masao Mutoh] 
         Gtk::AccelGroup, Gtk::Accelmap, Gtk::Clipboard, Gtk::Notebook, 
         Gtk::Drag, Gtk::Menu, Gtk::Stock, Gtk::Style, Gtk::ListStore, 
         Gtk::TreeStore, Gtk::Widget, Gtk::TextBuffer, Gtk::TreePath, 
         Gtk::TreeRowReference
      - Added: [KATO Kazuyoshi]
         sample/gtk-demo/changedisplay.rb, sample/gtk-demo/pixbufs.rb.
      - Removed: [Masao Mutoh]
         Gtk::Clipboard#owner
         Gdk::Span
         Gdk::Region#eql?, #&, #-, #|

  * Ruby/GNOME
      - Added some methods, improved, fixed bugs: [Masao Mutoh]
         Gnome::AppHelper, Gnome::DruidPageStandard
      - Apply Enum/Flags. [Masao Mutoh]

  * Ruby/GnomeCanvas
      - None.

  * Ruby/Libglade
      - None.

  * Ruby/Libart
      - None.

  * Ruby/GConf
      - None.

  * Ruby/GStreamer 
      - Update maintainer's e-mail address [Laurent Sansonetti]
        
  * Ruby/GnomeVFS
      - None.

  * Ruby/GtkHtml2
      - Added and completed: [Masao Mutoh]
         Gtk::HtmlContext, Gtk::HtmlBoxTable,
         Gtk::HtmlBoxTableRowGroup,
      - Completed: [Masao Mutoh]
         Gtk::HtmlView
      - Added: [Masao Mutoh]
         Gtk::HtmlBox, Gtk::HtmlBoxBlock, Gtk::HtmlBoxTableCaption, 
         Gtk::HtmlBoxText, Gtk::BoxRoot, Gtk::BoxForm,
         Gtk::HtmlParser, Gtk::HtmlEmbedded, Gtk::HtmlBoxEmbedded

  * Ruby/GtkGLExt
      - None.

  * Ruby/Libgda [NEW]
      - Added and compeleted: [Laurent Sansonetti]
         Gda, Gda::Client, Gda::Command, Gda::Provider, 
         Gda::DataSource, Gda::Connection, Gda::DataModelArray,
         Gda::DataModelHash, Gda::DataModelList, Gda::Error,
         Gda::Export, Gda::FieldAttributes, Gda::Parameter, 
         Gda::ParameterList, Gda::QuarkList, Gda::Row, 
         Gda::Select, Gda::Table, Gda::Transaction
      - Added
         Gda::DataModel
         sample/*.rb, tests/*.rb
        

Ruby-GNOME2-0.7.0 (2003-09-07)

  * The whole Ruby-GNOME2
      - Enum/Flags support. Enum/Flags constants are defined as classes.
         [Masahiro Sakai, Vincent Isambart, Masao Mutoh]
      - Improve extconf.rb. [Masao Mutoh]
        If the libraries are not found, they're ignored. 
        And you can specify to target libraries.

  * Ruby/GLib
      - Improved and Fixed some bugs. [Masahiro Sakai, Masao Mutoh]
         GLib::Type, GLib::Boxed, mkmf_gnome2.rb
      - Added lib/glib2.rb and improve to support Win32 platform. 
         [TAMURA.KENICHI, Masahiro Sakai] 
      - Added new class: [Masahiro Sakai]
         GLib::Enum, GLib::Flags
      - Added new macros: [Masahiro Sakai]
         RVAL2GENUM(), RVAL2GFLAGS(), GENUM2RVAL(), GFLAGS2RVAL().
      - Removed some methods. [Masahiro Sakai]
         GLib::Param#value_defaults?
      - Define GLib::BINDING_VERSION
      - Apply Enum/Flags. [Masahiro Sakai]
      - Follow extconf.rb changes. [Masao Mutoh]

  * Ruby/GdkPixbuf
      - Apply Enum/Flags. [Masahiro Sakai, Masao Mutoh]
      - Follow extconf.rb changes. [Masao Mutoh]

  * Ruby/Pango 
      - Improved and Fixed some bugs: 
        [Vincent Isambart, Masahiro Sakai, Masao Mutoh]
        Pango::Font, sample/*.rb, extconf.rb 
      - Added new methods: [Masahiro Sakai]
        Pango::Language, Pango::FontMap, Pango::FontFamily, Pango::Context,
        Pango::FontDescription,  
      - Apply Enum/Flags. [Masahiro Sakai, Masao Mutoh]
      - Follow extconf.rb changes. [Masao Mutoh]

  * Ruby/GTK
      - Follow Ruby/GLib changes. [Masahiro Sakai, Masao Mutoh]
      - Added some methods, improved, fixed bugs: [Martin Povoln, 
          KATO Kazuyoshi, Masahiro Sakai, Masao Mutoh] 
        Gdk::Atom, Gdk::Input, Gdk::DragContext, Gdk::Event, Gdk::GC, Gdk, 
        Gtk::Label, Gtk::TreeIter, Gtk::TreeView, Gtk::IconSize, 
        gdk-demo/*.rb, extconf.rb
      - Added: [KATO Kazuyoshi]
        Gdk::DisplayManager, gtk-demo.rb
      - Apply Enum/Flags. [Masahiro Sakai, Masao Mutoh]
      - Follow extconf.rb changes. [Masao Mutoh]

  * Ruby/GNOME
      - Follow extconf.rb changes. [Masao Mutoh]
      - Fix bugs. [Masahiro Sakai]

  * Ruby/GnomeCanvas
      - Follow extconf.rb changes. [Masao Mutoh]
      - Improve extconf.rb. [Masahiro Sakai]
      - Fix a sample. [Vincent Isambart]

  * Ruby/Libglade
      - Add a 'after' parameter to GladeXML.connect.
        It allows to connect signal_connect_after(). [Soila Jani]
      - Fix bugs: [Masao Mutoh]

  * Ruby/Libart
      - Follow extconf.rb changes. [Masao Mutoh]

  * Ruby/GConf
      - Apply Enum/Flags. [Masao Mutoh]
      - Follow extconf.rb changes. [Masao Mutoh]

  * Ruby/GStreamer 
      - Improved and Fixed some bugs. [Laurent Sansonetti]
        Gst, Gst::MediaInfo, Gst::Second, Gst::MediaType, sample/media-type.rb
      - Added some methods: [Laurent Sansonetti]
        Gst::Bin, Gst::Registry, Gst::MediaInfoTrack
      - Added: [Laurent Sansonetti]
        Gst::XML, Gst::ClockEntry, sample/xml-ogg-player.rb
      - Win32 support. [Masahiro Sakai]
      - Follow extconf.rb changes. [Masao Mutoh]
        
  * Ruby/GnomeVFS
      - Follow extconf.rb changes. [Masao Mutoh]

  * Ruby/GtkHtml2
      - Added: [Martin Povoln, Masao Mutoh]
        Gtk::HtmlStream, lib/gtkhtml2.rb
      - Removed methods: [Martin Povoln]
        Gtk::HtmlView#set_html
      - Follow extconf.rb changes. [Masao Mutoh]

  * Ruby/GtkGLExt [NEW]
      - Added and completed. [Vincent Isambart]
        Gdk::GLConfig, Gdk::GLContext, Gdk::GLDrawable, Gdk::GLPixmap, 
        Gdk::GLWindow, Gdk::Window, Gdk::Pixmap, Gtk::GL, Gtk::Widget
      - Added. [Vincent Isambart]
        Gdk::GL, sample/*.rb
      - Follow extconf.rb changes. [Masao Mutoh]
      - Win32 support. [Masahiro Sakai]


Ruby-GNOME2-0.6.0 (2003-08-09)

  * Ruby/GLib
      - mkmf-gnome2.rb,rbglib.h, rbgobject.h, rbgutil.h are installed 
        to site-ruby directories.
        The other libraries which depends on Ruby/GLib can compile
        in any directotires. [Masahiro Sakai, Masao Mutoh]
      - Support ruby-1.8.0 [Masao Mutoh]
      - Added new macros: [Geoff Youngs, Masao Mutoh]
         CBOOL2RVAL/RVAL2CBOOL, G_DEF_CONSTANTS, G_RENAME_CONSTANT
      - Improved and Fixed some bugs. [Masahiro Sakai]
         GLib::Object, GLib::Type, GLib::Closure, GLib::Signal,
      - Added some methods: [Masahiro Sakai]
         GLib::Param, GLib::Param::*, GLib::Boxed, GLib::Signal, GLib::Pointer
      - Removed some methods. [Masahiro Sakai]
         GLib::Param::*#default, #default_value        

  * Ruby/GdkPixbuf
      - Follow Ruby/GLib changes. [Masao Mutoh]
      - Separate Gdk::Pixbuf#scale to #scale and #scale!, 
        #composite to #composite and #composite!. [Masao Mutoh]

  * Ruby/Pango 
      - Follow Ruby/GLib changes. [Masao Mutoh]

  * Ruby/GTK
      - Follow Ruby/GLib changes. [Sakai, Masahiro, Masao Mutoh]
      - rbgtk.h are installed to site-ruby directories.
        The other libraries which depends on Ruby/GTK can compile
        in any directotires. [Masao Mutoh]
      - Completed: [Geoff Youngs, Masao Mutoh]
         Gtk::Clipboard, Gtk::Menu, Gtk::Notebook, Gtk::Socket, Gtk::Plug,
         Gtk::FileSelection, Gtk::ListStore, Gtk::TreeStore, Gtk::TreeModel,
         Gtk::TextView, Gtk::Notebook, Gtk::ColorSelection, Gtk::Style, 
         Gtk::ItemFactory, Gtk::Invisible, Gtk::TreeSortable, Gtk::TreeView,
         Gtk::TreeSelection, Gtk::TreePath, Gtk::TreeViewColumn, Gtk::Drag,
         Gtk::TextTag, Gtk module
      - Added and completed. 
         Gtk::TreeDragSource, Gtk::TreeDragDest, 
      - Added some methods, improved, fixed bugs: [Geoff Youngs, 
        Masahiro Sakai, Masao Mutoh] 
         Gdk::Window, Gdk::Drawable, Gdk::EventProperty, Gdk module, 
         Gtk::Object, Gtk::Editable, Gtk::TreeModel, 
         Gtk module, Gtk::TextBuffer, Gtk::IMContext, Gtk::Menu
      - Added: [Geoff Youngs, Masao Mutoh]
         Gtk::BingindSet, Gdk::Display, Gdk::Screen
      - Removed: [Masao Mutoh]
         Gtk::Socket#xwindow, Gtk::Menu#set_path, 
         Gtk::Notebook#popup_disable/enable, Gtk::ItemFactory.add_foreign
         Gtk::TreeSortable#sort_func=, Gtk::TreePath#to_s

  * Ruby/GNOME
      - Follow Ruby/GLib changes. [Masao Mutoh]
      - Add Gnome::PixmapEntry#set_preview. [Masao Mutoh]

  * Ruby/GnomeCanvas
      - Follow Ruby/GLib changes. [Masao Mutoh]

  * Ruby/Libglade
      - Follow Ruby/GLib changes. [Masao Mutoh]

  * Ruby/Libart
      - Follow Ruby/GLib changes. [Masao Mutoh]

  * Ruby/GConf
      - Fix a bug [744158] [Masao Mutoh]

  * Ruby/GStreamer [NEW]
      - Merged with Ruby-GStreamer project. [Laurent Sansonetti]
      - Version informations are also merged.
      - Completed: [Laurent Sansonetti]
         Gst, Gst::Autoplug, Gst::Cpu,  Gst::Format,
         Gst::Object, Gst::PadTemplate, Gst::Pipeline, 
         Gst::PluginFeature, Gst::QueryType, 
         Gst::Type
      - Added and completed. [Laurent Sansonetti]
         Gst::AutoplugFactory, Gst::EventMask, Gsk::EventSeek, 
         Gst::EventSegmentSeek, Gst::EventSize, Gst::Parse, 
         Gst::SystemClock, Gst::Thread,Gst::MediaInfo, 
         Gst::MediaInfoStream, Gst::MediaInfoTrack
      - Added some methods, improved, fixed bugs: [Laurent Sansonetti]
         Gst::Caps, Gst::Clock, Gst::Plugin, Gst::Pad, Gst::Element, 
      - Added: [Nikolai :: lone-star :: Weibull, Laurent Sansonetti]
         sample/media-type.rb, gst-inspect.rb, mediap-type2.rb
        
  * Ruby/GnomeVFS [NEW]
      - Initial release. [Nikolai :: lone-star :: Weibull]
      - Completed: [Nikolai :: lone-star :: Weibull]
         GnomeVFS module, GnomeVFS::Directory, GnomeVFS::Monitor,
         GnomeVFS::FileInfo, GnomeVFS::Error
      - Added: [Nikolai :: lone-star :: Weibull]
         GnomeVFS::File, GnomeVFS::URI

  * Ruby/GtkHtml2 [NEW]
      - Initial release. [Martin Povoln]
      - Added: [Martin Povoln]
         Gtk::HtmlDocument, Gtk::HtmlView

Ruby-GNOME2-0.5.0 (2003-05-24)

  * Ruby/GLib
      - Fixed warning for ruby-1.8.1. [Masao Mutoh]
      - Fixed some bugs, Added methods and improved: [Masahiro Sakai]
         GLib::Object, GLib::ParamSpec, GLib::Signal, GLib::Type, 
         GLib::Instantiatable, GLib::MetaInterface, GLib::Param::String
      - Added: [Geoff Youngs, Masao Mutoh]
         
  * Ruby/GdkPixbuf
      - Fixed a bug. [Geoff Youngs]

  * Ruby/Pango 
      - Some constants were moved. [Masao Mutoh]
         Moved Pango::Attribute::UNDERLINE_* to Pango::AttrUnderline::*.
         Moved Pango::Attribute::SCALE_* to Pango::AttrScale::*.

  * Ruby/GTK
      - Completed: [Masao Mutoh]
        Gtk::AccelGroup, Gtk::Style, Gtk::Selection
      - Added some methods, improved: [Stephen Lewis, Masahiro Sakai, Masao Mutoh] 
         Gtk::TextBuffer, Gtk::TextIter, Gtk::TreeIter, Gtk::ListStore, 
         Gtk::TreeStore, Gtk, Gtk::HandleBox, Gtk::Frame, Gtk::Container, 
         Gtk::Table, Gdk::Input, Gtk::Widget, Gtk::Allocation, Gtk::RC, 
         Gtk::ItemFactory, Gtk::Toolbar, Gtk::Window, Gtk::CellEditable, 
         Gtk::Accessible, sample/misc/*.rb
      - Added and completed. [Nikolai :: lone-star :: Weibull, Masao Mutoh]
         Gtk::RcStyle, Gtk::TargetList, Gtk::TreeSortable, Gtk::TreeModelSort, 
         Gtk::IMContext, Gtk::IMContextSimple, Gtk::IMMulticontext
      - Added: [Masao Mutoh]
         Gtk::Settings
      - Renamed some methods. [Masao Mutoh]
         Gtk::Table, Gtk::Widget
      - Removed: [Masao Mutoh]
         Gtk::Object#user_data, #user_data=, #set_user_data.
         Deprecated properties of Gtk::ProgressBar.
         Gtk::Requisition. Use [width, height] instead.
         Gtk::Widget#set_requisition, *_event, Gtk::Widget::NO_PARENT.
         Gtk::SelectionData.remove_all. Use Gtk::Selection.remove_all instead.

  * Ruby/GNOME
      - Cygwin support [Masahiro Sakai]
      - sample/test-gnome/color-picker.rb: Follow Ruby/GTK changes.[Masao Mutoh]

  * Ruby/GnomeCanvas
      - sample/canvas-primitives.rb: Follow Ruby/GTK changes.[Masao Mutoh]

  * Ruby/Libglade
      - Fix a bug of bin/ruby-glade-create-template. [Masao Mutoh]

  * Ruby/Libart
      - None

  * Ruby/GConf
       - Added GConf::MetaInfo. [Nikolai :: lone-star :: Weibull]
       - Fixed a bug [Masao Mutoh]
 
Ruby-GNOME2-0.4.0 (2003-03-23)

  * The whole Ruby-GNOME2
      - Add mkmf-gnome2.rb for sub/optional libraries. [Masahiro Sakai]

  * Ruby/GLib
      - Win32 platform support(Cygwin, Mingw32) [Masahiro Sakai]
      - Support mkmf-gnome2.rb [Masahiro Sakai]
      - Added some methods. [KUBO Takehiro, Masahiro Sakai]
      - Fix some bugs and improvement. [Masahiro Sakai, Masao Mutoh]
      
  * Ruby/GdkPixbuf
      - Win32 platform support(Cygwin, Mingw32) [Masahiro Sakai]
      - Support mkmf-gnome2.rb [Masahiro Sakai]
      - Fix some bugs and improvement. [Masahiro Sakai]

  * Ruby/Pango
      - Win32 platform support(Cygwin, Mingw32) [Masahiro Sakai]
      - Support mkmf-gnome2.rb [Masahiro Sakai]
      - Added a method(Pango.pixels) [Masao Mutoh]
      - Fix some bugs and improvement. [Masahiro Sakai]

  * Ruby/GTK
      - Win32 platform support(Cygwin, Mingw32) [Masahiro Sakai]
      - Support mkmf-gnome2.rb [Masahiro Sakai]
      - Multi-threading support. [Masao Mutoh]
      - Added some methods, improved: [Kazuo Saito, Geoff Youngs,
                                  KATO Kazuyoshi, Masahiro Sakai, Masao Mutoh] 
         Gtk::Toolbar, Gtk::ItemFactory, Gdk::Region, Gtk::AccelGroup, 
         Gtk::AccelMap, Gtk::TextIter, Gtk::TextTagTable, Gtk::TreeModel, 
         Gtk::TreeSelection, Gtk::Clipboard, Gtk::Box, Gdk::RGB, 
         Gtk::AccelGroupEntry, Gdk::Window, Gtk::SeparatorMenuItem, 
         Gtk::TreePath, Gtk::TreeView, Gtk::Combo, Gdk::Threads, 
         Gtk::TreeIter, Gdk::Event, Gtk::Drag, 
      - Added: [Kazuo Saito, KATO Kazuyoshi, Masao Mutoh]
         sample/gtk-demo/*.rb, sample/misc/threads.rb
      - Removed: [Masao Mutoh]
         Gtk::Toolbar#insert_item/widget/element,
         Gtk::Toolbar#prepend_item/widget/element, 
         Gtk::Toolbar#append_item/widget/element.
          Use Gtk::Toolbar#insert, prepend, append instead.
         Gtk::Combo#list, button, popup, popwin, set_item_string, 

  * Ruby/GNOME
      - Support mkmf-gnome2.rb [Masahiro Sakai]

  * Ruby/GnomeCanvas
      - Support mkmf-gnome2.rb [Masahiro Sakai]

  * Ruby/Libglade
      - Support mkmf-gnome2.rb [Masahiro Sakai]
      - Improved: [Masao Mutoh]
         bin/ruby-glade-create-template

  * Ruby/Libart
      - Support mkmf-gnome2.rb [Masahiro Sakai]
      - Fix some bugs and improvement. [Masahiro Sakai]

  * Ruby/GConf
      - Support mkmf-gnome2.rb [Masahiro Sakai]

  * Misc
    - Project website is moving from http://ruby-gnome2.sourceforge.net/
      to http://ruby-gnome2.sourceforge.jp/.

Ruby-GNOME2-0.3.0 (2003-02-09)

  * Ruby/GLib
    - Miscellaneous bugfixes and some improvement internal. 
      [Masahiro Sakai, Masao Mutoh]

  * Ruby/GTK
    - Miscellaneous bugfixes and some improvement internal.
      [Masao Mutoh]
    - Support GTK+-2.2.x. [KUBO Takehiro]
    - DnD enhancement. [Geoff Youngs, Masao Mutoh]
    - Require Ruby/Pango. [Masao Mutoh]

      - Completed:
         Gdk::Drawable, Gdk::Rectangle, Gdk::Region, Gtk::AccelGroup,
         Gtk::Accelerator, Gtk::AccelGroupEntry, Gtk::AccelKey
      - Added and completed:
         Gdk::Pango::Embossed, Gdk::Pango::Stipple, Gdk::Span
      - Added some methods, improved:
         Gtk::Widget, Gtk::Calender, Gdk::GC, Gtk::Drag, Gtk::SelectionData, 
         Gtk::RadioMenuItem,Gdk::Pixmap
      - Added:
        sample/misc/dnd.rb, dndtreeview.rb, dnd.rb
      - Removed:
         Gtk::AccelGroup#connect_by_path(use Gtk::AccelGroup#connect instead).

  * Ruby/GdkPixbuf
    - Added GdkPixbufLoader. [Geoff Youngs]

  * Ruby/GNOME
    - None.

  * Ruby/GnomeCanvas
    - Warning fixes for samples. [Masao Mutoh]

  * Ruby/Libglade
    - Added a sample(sample/treview.[glade|rb]). [Masao Mutoh]

  * Ruby/Libart
    - Added Art::Affine, Art::Bpath, Art::Canvas, Art::SVP, Art::Vpath [Tom Payne]
    - Added samples(sample/rose.rb, testlibart2.rb). [Tom Payne]

  * Ruby/GConf
    - None.

  * Ruby/Pango(NEW)
    - Initial release. [Geoff Youngs, Masao Mutoh]

      - Added and completed:
         Pango::Rectangle, Pango::FontDescription, Pango::FontMetrics, 
         Pango::FontFace, Pango::Fontset, Pango::FontsetSimple, 
         Pango::Attribute, Pango::AttrString, Pango::AttrLanguage, 
         Pango::AttrColor, Pango::AttrInt, Pango::AttrFloat, Pango::AttrBool
         Pango::AttrFontDesc, Pango::AttrShape, Pango::AttrFamily, 
         Pango::AttrStyle, Pango::AttrVariant, Pango::AttrStretch,
         Pango::AttrWeight, Pango::AttrSize, Pango::AttrForeground,
         Pango::AttrBackground, Pango::AttrStrikethrough, Pango::AttrUnderline,
         Pango::AttrScale, Pango::AttrRise, Pango::Color, Pango::Language,
         Pango::AttrList, Pango::AttrIterator, Pango::TabArray
     - Added:
         Pango::Context, Pango::Item, Pango::ClyphString, Pango::Font, 
         Pango::FontFamily, Pango::FontMap, Pango::Layout, Pango::LayoutIter,
         Pango::LayoutLine,
         sample/attribute.rb, gdk_layout.rb, label.rb, parse.rb.

  * Misc
    - Project website
      http://ruby-gnome2.sourceforge.net/
    - Ruby/GTK Tutorial
      http://ruby-gnome2.sourceforge.net/tut/toc.htm
    - Ruby-GNOME2 reference manual(This project has just started).
      http://rwiki.jin.gr.jp/cgi-bin/rw-cgi.rb?cmd=view;name=Ruby-GNOME2


Ruby-GNOME2-0.2 (2002-12-28)

  * Ruby/GLib
    - Some bugfixes and some improvement internal.

  * Ruby/GTK
    - Some bugfixes and some improvement internal.
    - Require Ruby/GdkPixbuf.
    - Completed:
       Gtk::TextIter, Gtk::Label, Gtk::Tooltips, Gtk::Viewport.
    - Added and completed:
       Gtk::TextAttributes, Gtk::IconFactroy, Gtk::IconSet, 
       Gtk::IconSource, Gtk::IconSize, Gtk::Accelerator, 
       Gtk::AccelKey, Gtk::AccelGroupEntry, Gtk::SizeGroup, 
    - Added some methods, improved:
       Gtk module, Gtk::TextBuffer, Gtk::*MenuItem, Gtk::*Button, 
       Gtk::ItemFactory, Gtk::Widget, Gtk::TreeViewColumn, 
       Gtk::Notebook, Gtk::Image, Gtk::AccelLabel, Gtk::Invisible, 
       Gtk::Dialog, Gtk::TreePath, Gdk::Keyval
       sample/misc/*button.rb, stock.rb 
       sample/testgtk/savedposition.rb
    - Added:
       Gtk::Clipboard, Gtk::AccelGroup, Gtk::AccelMap
       sample/misc/button2.rb, label.rb, dialog.rb, dialog2.rb, 
       treeview.rb 
    - Removed:
       Gdk::Bitmap(use Gdk::Pixmap(depth = 1) instead)

  * Ruby/GdkPixbuf
    - Follow Ruby/GLib changes.
    - Add Gdk::Pixdata.

  * Ruby/GNOME
    - Follow Ruby/GLib changes.
    - Fix problems which Ruby/GNOME can't work with Ruby/GdkPixbuf.
    - Code cleanup.
    - Remove Bonobo codes(Move to Ruby/Bonobo).

  * Ruby/GnomeCanvas
    - Follow Ruby/GLib changes.
    - Follow Ruby 1.8.0pre1, 1.6.8.

  * Ruby/Libglade
    - Follow Ruby/GLib changes.
    - Add bin/ruby-glade-create-template(Create .rb from .glade)
    - Add sample/treeview*
    - Improve the behavior to work when handlers aren't undefined not 
      to occur signal_proc.arity error.

  * Ruby/Libart
    - Follow Ruby/GLib changes.

  * Ruby/GConf
    - Follow Ruby/GLib changes.

  * Misc
    - Project website
      http://ruby-gnome2.sourceforge.net/
    - Ruby/GTK Tutorial
      http://ruby-gnome2.sourceforge.net/tut/toc.htm
    - Ruby-GNOME2 reference manual(This project has just started).
      http://rwiki.jin.gr.jp/cgi-bin/rw-cgi.rb?cmd=view;name=Ruby-GNOME2

Ruby-GNOME2-0.1 (2002-11-23)
  Initial release.
  * Ruby/GLib
  * Ruby/GTK
  * Ruby/GdkPixbuf
  * Ruby/GNOME
  * Ruby/GnomeCanvas
  * Ruby/Libglade
  * Ruby/Libart
  * Ruby/GConf