summaryrefslogtreecommitdiff
path: root/NEWS
blob: a444e3a33495f9b6aa0502030e4b78582bc472c4 (plain)
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
===========
Glade 3.8.5
===========

	- Backported topological sort object dependancy (Thomas Martitz)
	- Closes Bug 709609 "[PATCH] Change way of sorting before writing XML output."
	- Fixes Bug 711858 "editing glade project results in long CPU usage spikes after upgrading to 3.16 and GTK+3.10"
	- Closes Bug 689667 "backport support for GtkComboBoxText" (Rafał Mużyło)
	- Backported feature to make GladeProject remember unknown object classes

===========
Glade 3.8.4
===========
	- Added workaround for Bug 625867 "RadioButton information lost on cut+paste, add/remove parent, etc"
	- Fixed glade_gtk_image_get_property() chainup. (was calling set_property)
	- Fixed bug that prevented the runtime object to show the right pixbuf when copying a GtkImage.
	- Improved pango text integer attributes editors. Bug 679006
	  "The "size" attribute for labels only accepts integer values (not strings like "larger")"
	- Fixed Bug 616834 "Freeze when changing toolbutton type after renaming it"
	- Fixed bug 584381 "Saving as an existing file name except the extension overwrites without confirmation."    
	- Fixed Bug 646259 "SIGSEGV in glade_widget_adaptor_object_construct_object loading ui file"
	- Fixed Bug 694081 "Glade loses widget's tooltips on Cut/Paste"    
	- Fixed bug 702886 "SEGV when creating a new GtkDialog (GLib 2.37.x)"
	- Made a few ui fixes, like removing unnecessary shadows in the workspace and property editor.
	- Replaced old atk icon with new one.

===========
Glade 3.8.3
===========

	- Backported Bug #679589 fix "Use Action Appearance not supported for GTK 2.12
	  but added to widgets in Glade 3.8.2"
	- Backported build/mingw-w64 directory with script to cross compile and create
	  windows installer using nsis

===========
Glade 3.8.2
===========

	- Backported Bug 665784 fix (added gmodule-2.0 pkgconfig package) Vincent Untz
	- Added custom build scripts for building on MS windows. Dieter Verfaillie
	- Improved performance of modifying GtkTable contents, shows 
	  specifically when loading files containing large tables.
	  Fixed bug 663516, Fredy Paquet.
	- Fixed bug 647984 "Make size groups widget selection work" Benjamin Otte
	- Make help dir use 'glade3' name instead of 'glade' (for bug 646997).

===========
Glade 3.8.1
===========
	- Correctly detect the required devhelp version (Javier Jardón)
	- Sort objects in output by property reference, ensures a
	  GtkTreeModelFilter gets serialized after its 'child-model' (fixes bug 657164)
	- Fixed crashers when performing "Remove Parent" (bug 657338)
	- Ensure 'use-action-appearance' is serialized 
	  before 'related-action' (bug 658497)
	- Properly escape special characters while serializing 
	  property values (bug 654609 - Fabien Parent) 
	- Fix GladeProject to notify "row-has-child-toggled", (fixes bug 651673).

===========
Glade 3.8.0
===========
	- Added support for GtkToolPalette and GtkToolItemGroup
	- Fixed 633943, 503621, 629900, 597045, 622839, 
	- Removed User Manual link from Glade frontend (since the user manual
	  is still empty and not online anywhere).
	- Backed out preview feature from 3.8.
	- Included all the icons by Florent Thévenet (including some icons
	  made by Dolean Samuel).

===========
Glade 3.7.3
===========
	- Fixed 'controled' typo with updates to po files, patch
	  by Matt Woelfel for bug 633957
	- Added support for deprecated GtkOptionMenu.
	- Restore proper order of glade file at save time.
	- Hide editor properties when the property is not available
	  on the widget, bug 585299, fix by Marco Diego Aurélio Mesquita.
	- Fixed makefiles as per bug 521713 (patch initially by Daniel Macks)
	- Fixed mixups of properties/packing properties bug 637475.
	- Fixed class header of GladeEditor to update when
	  widgets unload (patch by Marco Diego Aurélio Mesquita, bug 637541).
	- Fixed nasty crasher with column types, bug 637563, fix by Benjamin Otte.
	- Added progress bar to notebook tabs while loading projects.
	- Removed GladeClipboradView completely.
	- Added custom editor for editing GtkActionGroup and its child actions.
	- Use locale-independent strtod & dtostr. bug 616787, fix by Christian Persch.
	- Applying patch to allow better builds on win32, patch by Dieter Verfaillie,
	  bug 634978.
	- Fixed loaded state of use-action-appearance so that it always
	  loads as FALSE if there is no "related-action" at load time (closes bug 582882).
	- Fixed other misc bugs.


===========
Glade 3.7.2
===========
	- Use gtk_show_uri() instead of previous custom code in place (Javier Jardón)
	- Fixed user/developer url locations (Javier Jardón)
	- Fixed ComboBox and IconView to include basic actions in the popup menu
	- Revived the "misc" column on the project data model (now the inspector shows
	  whether a widget is an internal child or a frame's label or such, again).
	- Expose GtkAssistant:complete packing property (bug 529595).
	- Implemented Preview feature, Glade now includes a project previewing program
	  that is accessible in the UI and runs as a child process (Marco Diego Aurélio Mesquita).
	- Ignore "resize-mode" property incase of crashes (as reported in bug 622996).
	- Fixed crash with notebook rebuilding children (bug 365462).
	- Fixed crasher bug 628233 (based on patch by: ramz <ramanathan.nitt@gmail.com>).
	- GladeWidget is now GInitiallyUnowned (now refcounts balance again at project close time).
	- Fixed errors when undoing the addition of notebook pages.
	- Default adjustment page size -> 0 (bug 585085).
	- Removing frame shadow (and label) from project preferences (bug 574098).
	- Setting dialog type-hint default to Dialog (closes old bug 459917).
	- Fixed floating project menus when context menu is fired (bug 141714).
	- Removed notion of project "instance_count" (which is by now unused).
	- Avoid clearing the project selection from the inspector (fixing bug 604322).
	- Set added treeviewcolumns to fixed sizing mode if the treeview is set to use 
	  fixed height mode (closing bug 596480).
	- Fixed GtkComboBox to handle cell-layout children as well as the possible internal 
	  entry (fixes bug 581580)
	- Notify GtkTreeIter changes when the widget name changes (now the inspector updates
	  when a widget name is changed automatically).
	- Fixed crasher when adjusting project naming policy (bug 622528, thanks goes to 
	  Sébastien Granjoux and Martin Schlemmer for looking at this one).
	- Fixed crashes when textview's buffer is deleted, fix by Martin Schlemmer, bug 609748.
	- Defensively avoid crash when setting entry icon tooltips on an entry with no icons set.

===========
Glade 3.7.1
===========
	- Changed "Close without saving" acelerator key from 'c' to 'w', (Aaron Brown, bug 612538)
	- Save Glade files with UTF-8 encoding (Christian Persch, bug 596205)
	- Save maximized window state of all windows in session data (Marco Diego Aurélio Mesquita, bug 607670)
	- use g_timeout_add_seconds() (Javier Jardón, bug 581255)
	- Fixed signal name serialization in GtkBuilder format to use '-' instead of '_' (bug 600031)
	- Disable orientation properties completely and disregard them wherever they cause breakage
	  (Federico Mena Quintero, bug 594231)
	- Now print a summery of all missing icons at startup instead of a warning for each missing icon
	- Fixed some remaining crashers introduced by recent GSEAL patches
	- Integrated GtkToolPalette as the internal implementation of Glade's palette (bug 613956).
	- Added tooltip to palette (bug 558983)
	- Revamped internal treeview support, less warnings and better refresh of workspace when
	  editing cell renderer attributes and liststores.
	- Glade now loads/saves the "swapped" <signal> attribute.
	- Signal editor revamped to now:
	   o show documentation links
	   o show warning icons for version mismatches
	   o edit "swapped" attribute
	   o edit the user-data object using an object selection dialog.
	   o now the signal editor is a proper widget-class (Johannes Schmid, bug 618020)
	- Disallow adding of non-scrollable widgets to scrolled windows (now an informative
	  popup comes up instead).
	- Fixed hangs in menu/treeview editors (Marco Diego Aurélio Mesquita, bug 609612)
	- Changed the old glade-cell-renderer-button for a new activatable pixbuf renderer
	  glade-cell-renderer-icon.[ch].
	- Added support to add GtkActions to GtkActionGroups
	- Added support to edit the <accelerator> for an action when in a group.
	- Added notebook tabs to the Glade frontend with informative labels (per open project).
	- Stop showing preferences dialog at startup time (bug 574095)
	- GladeProject now implements GtkTreeModel and GladeInspector view saves lots of code (Johannes Schmid)
	- Allow destruction of GladeApp object (Johannes Schmid, bug 618468).

===========
Glade 3.7.0
===========
	- Fixed loading state of assigned GtkTreeModels of GtkCellRendererCombo objects (bug 566928).
	- Fixed crasher while copying internal widgets (bug 595156)
	- Support silent build when using automake >= 1.11 (Javier Jardón)
	- Proper ordering of GtkAdjustment properties in glade files (bug 578484).
	- Refactoring work for GSEAL (Javier Jardón)
	- Avoid collapsing commands when a project is freshly saved (this fixes a false "unmodified" 
	  state after changing the same property before and after project save) (Marco Diego Aurélio Mesquita)
	- Allow litteral strings as column type definitions in GtkTreeStores (closes bug 597059).
	- Updated Glade GTK+ catalog info to include deprecations, new properties and signals since 2.18 and 2.20 
	  and some translatable strings (brought to you also in part by Johannes H. Jensen for some translatable
	  strings and Javier Jardón for some deprecations), some new objects this consequently adds:
	  o GtkEntryBuffer
	  o GtkSpinner
	  o GtkCellRendererSpinner
	- Fixed crasher editing some data types in the liststore data editor (bug 608011).
	- Enhanced the GtkEntry editor to allow the user to chose between the "text" and the "buffer" exclusively.

===========
Glade 3.6.7
===========
	- Sync up remaining properties at load time (fixes use-action-appearance property
	  and any other unmentioned property states at load time, also unvails broken
	  orientation default value in GTK+, bug 587256).
	- Fixed glitches with use-action-appearance at save time.
	- Make stock button labels save as non-translatable automatically (bug 352446).
	- Fixed crashes when handling GtkTextView in GtkBuilder format.
	- Fixed crashes with editable treeview column types (bug 586715).
	- Detect correct modifiers and buttons to spawn a context menu in a platform
	  independant way (bug 587128).
	- Added --enable-mac-bundle configure argument to resolve paths correctly
	  when building bundles on osx.

===========
Glade 3.6.6
===========
	- Fixed missing image dialogs for packing properties
	- Make assistant page-titles translatable (bug 503146)
	- Make GtkMessageDialog texts translatable (bug 586063)
	- Fixed obscure crash at project load time (James Liggett - bug 585860)
	- Migrated to use non-deprecated symbols from glib/GTK+ (Sam Thursfield - bug 572756) 
	- Introspect lowest GTK+ project dependancy when loading files with missing 
	  versioning info (bug 586046).
	- Fixed runtime path resolutions on osx (bug 586551).

===========
Glade 3.6.5
===========
	- Quartz build support and use ige-mac-integration to setup the menubar
	  as an optional build dependancy.
	- Fixed dissapearing dialogs on ESC (bug 582559)
	- Really fixing widget naming policies again, this time I hope it sticks (bug 580745)
	- Fixed relocated link problems with python plugin build (bug 582982, patch by Arun Raghavan)

===========
Glade 3.6.4
===========
	- Check project naming policy at add_object() time (bug 580745).
	- Fixed bug loading and saving icon sources (Juan Pablo Ugarte)
	- Fixed sizes of fixed/layout children at load time (bug 584334).
	- Enabled popup menus via Apple key for osx (lame but functional).

===========
Glade 3.6.3
===========
	- Maintain current widget selection during commits of related-action
	  (was causing crashes when the selection changed as a result of a commit, bug 578869)
	- GtkButton only accepts real stock *items* and not icons (to use an icon, use a GtkImage
	  with an unrestricted stock icon)
	- Added documentation on integrating Python widgets (Juan Pablo Ugarte)
	- Fixed output format for GtkLabel attributes (bug 579793, patch by Davyd Madeley).
	- Removed hard coded size request to palette (Bug 579624).
	- Made Atk proxy objects always have unique names (bug 579565).
	- Removed buggy query dialog from notebook creation (bug 578727).

===========
Glade 3.6.2
===========
	- Fixed missing properties/attributes when serializing GtkWindows (bug 578211)
	- Fixed loading state of cellrenderer attributes (whether to use attribute or property
	  directly, bug 566928).

New and updated translations
============================
	- Goran Rakic (sr, sr@latin)
	- Jorge Gonzalez (es)

===========
Glade 3.6.1
===========
	- Fixed win32 crasher (bug 575206)
	- Fixed crasher on internal widget selection
	- Fixed libglade regression (libglade needs specific
	  ordering of properties, atk props, signals and accelerators)
	- Fixed MSYS/MinGW build (Bug 576851 – Damon Register)
	- Disable loading and displaying of 'data' property on GtkTreeStore
	  (only GtkListStore understands the 'data' construct).
	- Properly initialize a GValue on stack (bug 577822 - Felix Riemann)

New and updated translations
============================
	-  Petr Kovar, Andre Klapper (cs)
	-  Djihed Afifi (ar)

===========
Glade 3.6.0
===========
	- Fixed bugs 574260, 573513, 573453, 574706, 567809 (Juan Pablo Ugarte, Ryu Jinno, myself)

New and updated translations
============================
	- Kostas Papadimas (el)
	- Claude Paroz (fr)
	- Kenneth Nielsen (da)
	- Ani Peter (ml)
	- Ignacio Casal Quinteiro (gl)
	- Krishnababu K (te)
	- Gintautas Miliauskas (lt)
	- Duarte Loreto (pt)
	- Manoj Kumar Giri (or)
	- Petr Kovar (cs)
	- Milo Casagrande (it)
	- Theppitak Karoonboonyanan (th)
	- Philip Withnall (en_GB)
	- Daniel Nylander (sv)
	- Nickolay V. Shmyrev (ru)
	- Ilkka Tuohela (fi)
	- Christian Kirbach, Hendrik Richter (de)
	- Baris Cicek (tr)
	- Philip Withnall (en_GB)
	- Raivis Dejus (lv)
	- Changwoo Ryu (ko)
	- Jorge Gonzalez (es)
	- Daniel Nylander (sv)
	- Kenneth Nielsen (da)
	- Gabor Kelemen (hu)
	- Inaki Larranaga Murgoitio (eu)
 	- Clytie Siddall (vi)
	- Og Maciel, Jonh Wendell (pt_BR)
	- Claude Paroz (fr)

===========
Glade 3.5.7
===========
	- Added GladeDesignLayout::widget-event signal. Patch by Pavel Kostyuchenko (bug 542337).
	- GObjectify signal editor and allow custom signal editors. by Pavel Kostyuchenko (bug 540691).
	- Make virtual properties in GTK+ 2.16 in order to support running from GTK+ 2.14 and targetting 2.16
	- New activatable editor to handle activatable properties in smart ways.
	- Fix markup in confirm close dialog, patch by Felix Riemann (bug 567450).
	- Marked use-stock property from imagemenuitem to be save-always (bug 568064).

New and updated translations
============================
	- Updated de: Andre Klapper, Hendrik Richter
	- Updated es: Jorge Gonzalez, Jorge González
	- Updated fi: Ilkka Tuohela
	- Updated he: Yair Hershkovitz, yairhr@gmail.com
	- Updated ko: Changwoo Ryu
	- Updated pt_BR: Jonh Wendell

===========
Glade 3.5.6
===========
	- Handling of new entry properties (bug 567454)
	- Added filechooser dialog to pixbuf properties

New and updated translations
============================
	- Updated es: Jorge Gonzalez, Jorge González
	- Updated nb: Kjartan Maraas
	- Updated pt_BR: Og Maciel, Igor Pires Soares

===========
Glade 3.5.5
===========

	- Model data editor improvments (sequential editing mode, better key navigation)
	- Treeview editor revamp, few crashers fixed
	- Few crashers fixed #525839, #522542
	- Expand inspector treeview by default
	- Many more bug fixes including #533471

New and updated translations
============================
	- Updated es: Jorge González, Jorge Gonzalez  <jorgegonz@svn.gnome.org>

===========
Glade 3.5.4
===========
	- Added short readable versions of new enum/flag values
	- Fixed a crasher in the store editor
	- Focus always stays in the store editor when editing cells get cancelled
	- Better resizing in editors (property names/warnings expand, inputs dont)
	- Cleaned up gtk+ includes (Maxim Ermilov - bug 561260)
	- Some code now available under LGPL

===========
Glade 3.5.3
===========
	- Support for GtkIconFactory
	- Support for GtkAccelGroup
	- Support for GtkSizeGroup
	- Support for GtkListStore/GtkTreeStore (some code by Juan Pablo Ugarte)
	- Support for GtkTreeViewColumn, GtkTreeView, GtkIconView and GtkComboBox as GtkCellLayout.
	- Support for GtkCellRenderer derivatives
	- GtkBuilder support for GtkMenu hierarchies
	- New all in one treeview editor, for treeviews combo boxes and icon views
	- Properties and widgets now show warnings in the editor when they have mismatched versions
	- Palette items are insensitive when widgets are unavailable and show warnings when they are deprecated.
	- Text wrapping in property labels (Pavel Kostyuchenko)
	- Editor widget beefed up with icon and class header.
	- Simplified accelerator editor
	- Save window pane positions in session (Juan Pablo Ugarte)
	- New pango attributes editor for GtkLabel:attributes
	- All widgets/properties in glade files are now saved in the same order
	  (GtkTable part: bug 422823 - Pavel Kostyuchenko, and bug 422823)
	- Fixed core to permit working with non GtkWindow toplevel objects/widgets (bug 532636 - Pavel Kostyuchenko)
	- Palette now allows doc searches
	- Notebooks switch pages to display the selected widget
	- Added undoable project conversion routines implemented by catalog plugins
	- Object selection dialogs can now create widgets when a type is specified by the catalog
	- Support GtkBuilder "context" attribute for i18n data (translatable properties)
	- Support for naming your widgets unique across the project or unique across toplevels.
	- Now you can add menus inline inside the toolbar editor.
	- No more copying resource files around, now you can set your local resource path in
	  project preferences and use relative/fullpaths in resource properties (i.e. GdkPixbuf properties
	  and the like). 
	- No more context help mode with buttons, you can get property level help (and clear value) with a context menu  
	- Optimized load routine significantly.
	- Added GladeEditable interface to layout custom pages for property editors, implemented many
	  custom editor layouts.
	- Now you can edit widgets separately from the rest of the project
	- menu/toolbar/treeview editor no longer a modal dialog.
	- Added <search widgets> entry with completion/filter to the inspector widget.
	- Added most of the new needed icons (Mike Gratton - bug 561979, Juan Pablo Ugarte).
	- Simplified and improved stock-id properties to allow use of custom icons from factories.	
	- Fixed input dialog crasher (Juan Pablo Ugarte - bug 543314)
	- Commands now collapse to nothing - Pavel Kostyuchenko
	- Fixed boxed value comparisons by way of comparing unique strings
	  from the plugin (Juan Pablo Ugarte - bug 528511)
	- Fixed project modified state flag glitches (Pavel Kostyuchenko - bug 532017).
	- Prevent hangs in anjuta (Pavel Kostyuchenko - bug 531585).
	- Fixed boldness/italicness in varios treeviews
	- Objects and resource property fields are updated correctly (bug 542335 - fix by Pavel Kostyuchenko)
	- Update loaded assistant pages properly (bug 540531 - fix by Antti Kaijanmäki)
	- Silently ignore unrecognized signals in glade file instead of aborting 
	  (bug 533728 - fix by Pavel Kostyuchenko)
	- Worked around special child type naming discrepencies between formats from the plugin side 
	  (bug 533217 - fix by Pavel Kostyuchenko)
	- response-id now only available for buttons that are in the action area of dialogs (bug 464502)
	- Fixed displayable values (bug 556452), now they are available in the plugin too.
	- Misc bugfixed by Richard Hult, Andreas Henriksson, Vincent Geddes, Claude Paroz, Pavel Kostyuchenko, 
	  Eli Collins, Christian Persch, Theppitak Karoonboonyanan, Kjartan Maraas, Michael Gratton and me.

New and updated translations
============================
	- ar: Anas Afif Emad, Djihed Afifi
	- bg: Yavor Doganov, Alexander Shopov
	- da: Ask Hjorth Larsen
	- de: Christian Kirbach
	- en_GB: David Lodge, Philip Withnall
	- es: Jorge González, Jorge Gonzalez
	- et: Ivar Smolin
	- fi: Ilkka Tuohela
	- fr: Robert-André Mauchin
	- gl: Ignacio Casal Quinteiro
	- gu: Sweta Kothari
	- he: yairhr@gmail.com, Yair Hershkovitz
	- hi: Rajesh Ranjan
	- hu: Gabor Kelemen
	- it: Andrea Zagli
	- ko: Changwoo Ryu
	- ml: Hari Vishnu
	- mr: Sandeep Shedmake
	- nl: Vincent van Adrighem
	- oc: Yannig Marchegay, Yannig Marchegay (Kokoyaya)
	- pl: Tomasz Dominikowski
	- pt: Duarte Loreto
	- pt_BR: Igor Pires Soares, Fabrício Godoy
	- ru: Yuriy Penkin
	- sr.po, sr@latin: Goran Rakić
	- sv: Daniel Nylander
	- th: Theppitak Karoonboonyanan
	- tr: Baris Cicek
	- vi: Clytie Siddall
	- zh_HK: Chao-Hsiung Liao
	- zh_TW: Chao-Hsiung Liao, Abel Cheung

===========
Glade 3.5.2
===========
	- oops, was parsing booleans as doubles, fixed bugs with 
	  builder-unsupported and deprecated.

===========
Glade 3.5.1
===========
	- Added versioning support, you can always chose the target version of
	  your project starting with gtk+ 2.8 - a project preferences dialog has
	  been added where you can switch your format, switch your target version
	  and test for incompatabilities. incompatability error dialogs are also
	  launched on save as. Target versions are saved to the glade file; 
	  TODO: patch GtkBuilder to test the required gtk+ version from
	  <requires lib="gtk+" version="2.8"> and at least warn, also let
	  third party widget developers test thier own versions using builder
	  (all new catalog tags and properties are also documented).

===========
Glade 3.5.0
===========
	- Resurrected GtkScaleButton and GtkVolumeButton
	- We finally have Vincent Geddes's icon choser dialog 
	  (was skipped before because of string changes)
	- Not allowed to have duplicate widget names anymore (bug 442860)
	- Now the first widget in a project shows up automatically
	  when opening the project.
	- Old parser was trashed and rewritten from the ground up.
	- New plugin support for read_widget() and write_widget(), also
	  create_eprop() which allows the plugin to create widgets to
	  edit properties in the editor (accelerators are edited from
	  the plugin now for instance).
	- Dual file format support available, its a beginning, you dont
	  get any of the GObjects that GtkBuilder supports but all widgets
	  you were formerly using with glade can now be loaded/saved in 
	  builder format.
	- Api reference docs for embedders and widget authors ressurected
	  after 2 years, concerning integrating widgets, the docs are
	  practically rewritten.

New and updated translations
============================
	- Priit Laes (et)
	- Laurent Dhima (sq)
	- Baris Cicek (tr)
	- Alexander Shopov (bg)

===========
Glade 3.4.3
===========
	- Backed out GtkScaleButton and GtkVolumeButton since
	  they introduced strings.


===========
Glade 3.4.2
===========
	- Port to gtk 2.12 tooltips API. Bug #500947. - Christian Persch
	- Atk Relations bug fix
	- Added GtkVolumeButton and GtkScaleButton widgets (Ross Burton)
	- Misc fixes 477025, 509128, 388869, 504603, 495853, 506713, 511651,
	  472555, 493418 by Cosimo Cecchi, Yang Hong, Ivan Baldo, Vincent Geddes, 
          Juan Pablo Ugarte, Tristan Van Berkom

New and updated translations
============================
	- Kjartan Maraas (nb)
	- Yuri Kozlov (ru)
	- Stéphane Raimbault (fr)
	- Gintautas Miliauskas (lt)
	- Jovan Naumovski (mk)
	- Luca Ferretti (it)
	- Gabor Kelemen (hu)
	- Claude Paroz (fr)
	- Jonh Wendell (pt_BR)
	- David Lodge (en_GB)
	- Ignacio Casal Quinteiro (gl)
	- Gil Forcada (ca)
	- Ilkka Tuohela (fi)
	- Hendrik Brandt (de)
	- Duarte Loreto (pt)
	- Theppitak Karoonboonyanan (th)
	- Maxim Dziumanenko (uk)
	- Yair Hershkovitz (he)
	- Baris Cicek (tr)
	- Clytie Siddall (vi)
	- Yannig Marchegay (oc)
	- Daniel Nylander (sv)
	- Djihed Afifi (ar)
	- Jorge Gonzalez (es)
	- Takeshi AIHANA (ja)


===========
Glade 3.4.1
===========

	- Crash in Glade Interface Designer: Clicked the GtkInputDial... (bug 480495) - Juan Pablo Ugarte
	- Glade3 hangs when loading certain projects containing GtkAssistants (bug 495057) - J. Ali Harlow
	- Fix options context summary (bug 500940) - Christian Persch
	- Use gtk_widget_get_action (bug 500943) - Christian Persch
	- Icon Theme search path is incorrect for win32 (bug 469854) - Martin Schlemmer
	- Doesn't build on ia64 (bug 499623) - Josselin Mouette
	- Activating "Add Parent" on an internal widget component causes crah (bug 503955) - Juan Pablo Ugarte
	- GtkImage/GdkPixbuf porps misc fixes - Juan Pablo Ugarte

New and updated translations
============================
	- Kjartan Maraas (nb)
	- Matej Urbančič (sl)
	- Ivar Smolin (et)
	- Djihed Afifi (ar)
	- Baris Cicek (tr)
	- Ignacio Casal Quinteiro (gl)
	- Urbančič Matej (sl)
	- Ivar Smolin (et)
	- Changwoo Ryu  (ko)
	- Takeshi AIHANA (ja)
	- Leonardo Ferreira Fontenelle (pt_BR)

===========
Glade 3.4.0
===========

New and updated translations
============================
    - Priit Laes (et)
    - Jorge Gonzalez (es)
    - Ilkka Tuohela (fi)
    - Ignacio Casal Quinteiro (gl)
    - Daniel Nylander (sv)
    - Adam Weinberger (en_CA)
    - Takeshi AIHANA (ja)
    - Raphael Higino (pt_BR)
    - Theppitak Karoonboonyanan (th)
    - Gabor Kelemen (hu)
    - Duarte Loreto (pt)
    - Kenneth Nielsen (da)
    - Clytie Siddall (vi)
    - Alexander Shopov (bg)
    - Gintautas Miliauskas (lt)
    - Jovan Naumovski (mk)
    - Kjartan Maraas (nb)
    - Maxim Dziumanenko (uk)
    - Alessio Frusciante (it)
    - Hendrik Richter (de)
    - Danishka Navin (si)
    - Jamil Ahmed (bn)
    - Claude Paroz (fr)
    - Djihed Afifi (ar)
    - David Lodge (en_GB)
    - Nickolay V. Shmyrev (ru)
    - Artur Flinta (pl)
    - Gil Forcada (ca)

===========
Glade 3.3.4
===========
    - Moved all gtk-doc stuff outside of the template files (now documentations is
      entirely in the source) - Juan Pablo Ugarte
    - Fixed compilation with gcc 2.95 (bug 461923) - Jens Granseuer
    - Sort the stock icon list alphabetically by locale (bug 454003) - Olivier Delhomme
    - Made glade window not maximized by default (bug 462111) reported by Frédéric Bellaiche
    - Added "expand" and "homogeneous" packing properties to toolbar 
      children in the toolbar editor (bug 429409) - Tristan Van Berkom
    - Clipped the signal editor texts to simply say "<type here>" (bug 464505) - Tristan Van Berkom
    - Now saves/restores session data about docking attached state & 
      undocked window sizes/positions - Yevgen Muntyan
    - Added themed icon chooser (currently disabled awaiting freeze break approval)
      (bug 359640) - Vincent Geddes
    - Made toolbar-style an "optional" property and fixed glitches around this property
      (bug 382785) - Vincent Geddes

New and updated translations
============================
    - Daniel Nylander (sv)
    - Theppitak Karoonboonyanan (th)
    - Jorge Gonzalez (es)
    - Leonardo Ferreira Fontenelle (pt_BR)
    - Ilkka Tuohela (fi)
    - Sunil Mohan Adapa (te)
    - Takeshi AIHANA (ja)
    - Adam Weinberger (en_CA)
    - Jovan Naumovski (mk)
    - Duarte Loreto (pt)
    - Priit Laes (et)


===========
Glade 3.3.3
===========
    - Add tab labels by default to notebook pages (bug 345438) - Tristan Van Berkom
    - Now child menu items are selectable (fixed event handling for widgets that are
      not in the logical hierarchy, in 3.3.2 this was a crash actually) - Tristan Van Berkom
    - Now we draw selection in g_signal_connect_after (..."expose-event"...) instead
      of queuing an idle timeout.  - Tristan Van Berkom
    - Fixed the UI to be insensitive when no projects are loaded (some widgets were
      sensitive and causing errors) - Tristan Van Berkom
    - Made it possible to declare a widget class in the catalog without giving a real type, 
      only automatically derive from a type specified in the catalog (bug 352714) - Yevgen Muntyan
    - Defined environment variables GLADE_MODULE_PATH & GLADE_CATALOG_PATH, catalogs will be
      searched in GLADE_CATALOG_PATH and widget libraries/support modules in GLADE_MODULE_PATH. - Tristan Van Berkom
    - Disable Add/Remove parent actions on GtkToolItem, GtkMenu and GtkMenuItem - Tristan Van Berkom
    - misc bugfixes 459953 460272

New and updated translations
============================
    - Jorge Gonzalez (es)
    - Takeshi AIHANA (ja)
    - Daniel Nylander (sv)
    - Clytie Siddall, Nguyễn Thái Ngọc Duy (vi)
    - Ilkka Tuohela (fi)
    - Artur Flinta (pl)
    - Runa Bhattacharjee (bn_IN)
    - Gabor Kelemen (hu)
    - Matic Žgur (sl)

===========
Glade 3.3.2
===========
    - Bindings work has been moved out into a branch
    - Added toolbar item for "Drag/Resize" mode - Tristan Van Berkom
    - Added history lists to undo/redo buttons - Tristan Van Berkom
    - Current notebook page is more consistant (bug 394382) - Tristan Van Berkom
    - Use gnome-common macros in configure.ac/Makefiles (bug 399134) - Christian Persch
    - Fixed lots of compiler warnings from new macros - Vincent Geddes
    - Added a bunch of translatable/displayable values for new enumerations/values - Juan Pablo Ugarte
    - Display some specially marked backend actions in the toolbar - Juan Pablo Ugarte
    - Attempt to reload an open project if the user tries to open it again (bug 450483) - Vincent Geddes
    - Monitor and update project saved state wrt undo (bug 392324) - Vincent Geddes
    - Properly handle dgettext() operations (bug 453105) - Christian Persch)
    - Fixed some hangups (bug 453253) - Juan Pablo Ugarte
    - Remove user name and host from comment in glade file (bug 453174) - Vincent Geddes
    - Now the palette/inspector and property editor are "dockable" (just 
      dock/undock via view menu, nothing fancy) - Tristan Van Berkom
    - Warn about missing displayable values for enums/flags - Juan Pablo Ugarte
    - Fixed glitch with changing notebook pages (bug 456013) - Tristan Van Berkom
    - Implemented "Add/Remove Parent" context menu items for all widgets (bug 343786) - Tristan Van Berkom
    - Added "Remove Slot" action for placeholders inside GtkBoxes (closes bug 387963) - Tristan Van Berkom
    - Markup & mnemonics in labels load properly now (bug 396446) - Tristan Van Berkom
    - Context menu for placeholders now have actions that apply to the widget they are in,
      while "paste" remains contextual to the placeholder in question - Tristan Van Berkom
    - Misc bug fixes 453105 453107 453111 453110 406039 457224 457222... 


===========
Glade 3.3.1
===========
    - Insert before/after & Remove page context menu actions for GtkNotebook (bug 438881) - Juan Pablo Ugarte
    - Remove row/column context menu actions for GtkTable - Juan Pablo Ugarte
    - Fix C89 compilation (bug 444045) - Jens Granseuer
    - Fixed win32 build (bug 444605) - Juan Pablo Ugarte
    - Allow child contextual actions to work on placeholders - Juan Pablo Ugarte
    - Remove 'm4' from EXTRA_DIST (bug 445028) - Vincent Geddes
    - Some misc. win32 build fixes - Vincent Geddes
    - Fixed cut/paste glitches inside notebooks - Tristan Van Berkom
    - Fixed incorrectly loaded stock icons (bug 444959) - Juan Pablo Ugarte
    - Spelling/Translation fixes (bug 419979, 429736) - Vincent Geddes
    - Fixed console warnings (bug 424509) - Vincent Geddes

===========
Glade 3.3.0
===========
    - Allow plugin authors to add context menu items for thier widgets
      (one entry point to act upon a widget, and another to operate on
      a widget's child). - Juan Pablo Ugarte
    - Insert before/after context menu actions for GtkBox & GtkTable (bug 438881) - Juan Pablo Ugarte

===========
Glade 3.2.2
===========
    - Allow properties to be marked "save-always" in the catalog - Juan Pablo Ugarte
    - Set "save-always" on these properties:
      o GtkDialog's "type-hint" - Juan Pablo Ugarte
      o GtkScrolledWindow's "can-focus" - Juan Pablo Ugarte
      o GtkPaned's "resize" and "shrink" (bug 364215) - Tristan Van Berkom
      o GtkButton's "response-id" (bug 410272) -Tristan Van Berkom
    - Now list all activatable signals in the Accelerator key dialog.

New and updated translations
============================
    - Theppitak Karoonboonyanan (th)


===========
Glade 3.2.1
===========
    - Some win32 build issues fixed - Olivier Delhomme
    - Add "GNOME" to Categories (love bug 417618) - Bruno Boaventura
    - Property ordering fixed (bug 396436) - Juan Pablo Ugarte/Christian Persch
    - "label" property of GtkToolButton now translatable - Tristan Van Berkom
    - dont use sscanf in (de)serialization (bug 424547) - Christian Persch/Ivan Baldo
    - workaround "hierarchy-changed" signal crashes in filechooserdialog (bug 415021) - Juan Pablo Ugarte
    - unichar property charachers now properly displayed - Juan Pablo Ugarte
    - Cut/Pasted widgets now behave as expected (bug 432519) - Tristan Van Berkom
    - Inspector expands/scrolls to position upon selections (bug 392225) - Vincent Geddes
    - Negative integer properties work properly now (bug 434207) - Jeff Westerinen
    - Workaround for inputdialog crashes (bug 433975) - Juan Pablo Ugarte
    - Fixed some irrelevent runtime warnings - Juan Pablo Ugarte

New and updated translations
============================
    - Leonardo Ferreira Fontenelle (pt_BR)
    - Ilkka Tuohela (fi)
    - Simos Xenitellis, Nikos Charonitakis (el)
    - Abel Cheung (zh_HK, zh_TW)
    - Daniel Nylander (sv)
    - Maxim Dziumanenko (uk)
    - Luca Ferretti (it)
    - Djihed Afifi (ar)
    - Ani Peter (ml)
    - Takeshi AIHANA (ja)
    - Nickolay V. Shmyrev (ru)
    - Jovan Naumovski (mk)
    - Alexander Shopov (bg)
    - David Lodge (en_GB)
    - Gabor Kelemen (hu)
    - Duarte Loreto (pt)
    - Gintautas Miliauskas (lt)
    - Stéphane Raimbault (fr)
    - Laurent Dhima (sq)
    - Pema Geyleg (dz)
    - Jorge Gonzalez, Claudio Saavedra (es)
    - Kjartan Maraas (nb)
    - Peter Bach (da)


===========
Glade 3.2.0
===========
    - Fixed sources to build with gcc 2.95 (bug 406504) - Jens Granseuer
    - Fixed the imfamous: "Not able to set label and stock separately 
      in GtkImageMenuItems" (bug 397043) - Juan Pablo Ugarte
    - Added remaining missing icons - Vincent Geddes
    - Use locale independent integer and float parsing routines (bug 396433) - Christian Persch
    - Save some properties unconditionally, fixes (bug 412848) - Tristan Van Berkom
    - Revived accelerator & atk relationset properties (bug 383121) - Tristan Van Berkom
    - other bug fixes by Nickolay V. Shmyrev, Christian Persch, Vincent Geddes, Halton Huo

New and updated translations
============================
    - Duarte Loreto (pt)
    - Djihed Afifi (ar)
    - David Lodge (en_GB)
    - Daniel Nylander (sv)
    - Nguyễn Thái Ngọc Duy (vi)
    - Artur Flinta (pl)
    - Stéphane Raimbault (fr)
    - Takeshi AIHANA (ja)
    - Ilkka Tuohela (fi)
    - Nickolay V. Shmyrev (ru)
    - Changwoo Ryu (ko)
    - Ignacio Casal Quinteiro (gl)
    - Kjartan Maraas (nb)
    - Duarte Loreto (pt)
    - Ole Laursen (da)
    - Hendrik Brandt (de)
    - Jovan Naumovski (mk)
    - Raphael Higino, Leonardo Ferreira Fontenelle (pt_BR)
    - Theppitak Karoonboonyanan (th)
    - Gabor Kelemen (hu)
    - Gintautas Miliauskas, Žygimantas Beručka (lt)
    - Josep Puigdemont i Casamajó (ca)
    - Alexander Shopov (bg)
    - Ani Peter (ml)
    - Luca Ferretti (it)
    - Maxim Dziumanenko (uk)
    - Abel Cheung (zh_HK, zh_TW)
    - Nikos Charonitakis, Simos Xenitellis (el)
    - Ilkka Tuohela (fi)

===========
Glade 3.1.5
===========

New features and fixes
======================
    - Fixed build problem with autoconf 2.60 wrt. datarootdir (bug 392379) - Christian Persch
    - Added version to bugzilla info in the .desktop file  (bug 392395) - Christian Persch
    - Bind the gettext domain (bug 397429) - Christian Persch
    - Setup online manual - Vincent Geddes
    - use xmlSubstituteEntitiesDefault() when loading/saving glade files (bug 396311) - anonymous
      patch submitter
    - Use standard "translator-credits" property the standard way in the about dialog - Vincent Geddes
    - GladeCommand refactoring work, allows for multiple paste commands now (bug 345603) - Jeff Westerinen
    - Reorganized package directory structure and adapted makefiles - Vincent Geddes
    - Renamed some things to fit more with the HIG - Vincent Geddes
    - Fixed obnoxious startup errors (bug 399178) - Tristan Van Berkom
    - Implement concept of "use-placeholders" for container adaptors to distinguish
      whether they use placehodlers for thier children (the core handles them
      differently), note that menuitems,fixed,toolbar etc dont use placeholders 
      for thier children - Tristan Van Berkom
    - Fixed packing defaults (a menubar in a HBox is initially expand = False) - Tristan Van Berkom
    - Fixed the layout to not touch default-width/default-height implicitly when resizing the toplevel inside
      the workspace, this required some refactoring too - Tristan Van Berkom
    - Completely reworked event handling, considerably reduced lines of code involved and
      improved stability, also now drag/resize is only available with the SHIFT modifier active, 
      as a side effect, you can now also interact with project widgets in the workspace much
      better. - Tristan Van Berkom
    - Implemented undo/redo for i18n property metadata (bug 352454) - Jeff Westerinen
    - Fixed translations of strings from the catalog and some strings in the about 
      dialog (bug 404917) - Tristan Van Berkom
    - Added the new glade icon - Andreas Nilsson
    - Fixed compilation of python code - Paul
    - Call GNOME_DOC_INIT unconditionally (Bug 392411) - Christian Persch
    - Improved configure check for python - Vincent Geddes

New and updated translations
============================
    - Daniel Nylander (sv)
    - David Lodge (en_GB)
    - Clytie Siddall (vi)
    - Ignacio Casal Quinteiro (gl)
    - Gabor Kelemen (hu)
    - Djihed Afifi (ar)
    - Hendrik Richter (de)
    - A S Alam (pa)
    - Takeshi AIHANA (ja)
    - Duarte Loreto (pt)
    - Jonathan Ernst, Claude Paroz and Stéphane Raimbault (fr)
    - Supranee Thirawatthanasuk, Theppitak Karoonboonyanan (th)
    - Jordi Mas (ca)

===========
Glade 3.1.4
===========

New features and fixes
======================
    - Fixed notebook tabs, frame/expander labels, was all screwed up (bug 373251)
    - Fixed expander interaction (bug 386352)

===========
Glade 3.1.3
===========

New features and fixes
======================
    - Added gtk+ 2.10 widget classes: GtkAssistant, GtkLinkButton, GtkPageSetupUnixDialog,
      GtkPrintUnixDialog, GtkRecentChooserWidget and GtkRecentChooserDialog (Juan Pablo Ugarte)
    - Added user documentation using gnome-doc-utils (Vincent Geddes)
    - Fixed assumption "GtkButton" --> "gtk_button_get_type ()" when loading types from
      the catalog (bug 377435) (Jeff Westerinen)
    - Now there's only one pkg-config file (the original libgladeui-1.0.pc) (Vincent Geddes)
    - Escape strings properly when saving to the xml file (bug 360586 Juan Pablo Ugarte)
      (Merged from stable branch)
    - Fixed saved "gtk-broken-image" stock being saved in all GtkImages (bug 353126) 
      (with help from Jeff Westerinen) (Merged from stable branch)
    - Changed alot of keywords and forward declarations for C++ compilation against glade headers
      (Oliver Nittka)
    - Detect file changes on disk before saving (Vincent Geddes)
    - Fixed a couple of crashers (bug 386563 & 385920).

New and updated translations
============================
    - Djihed Afifi (ar)  (Ported in from stable branch)
    - Ignacio Casal Quinteiro (gl)  (Ported in from stable branch)

===========
Glade 3.1.2
===========

New features and fixes
======================
    - Make the tarball ship translations again by building with intltool 0.35

===========
Glade 3.1.1
===========

New features and fixes
======================
    - Use GtkRecent and removed manual recent project handling (Vincent Geddes)
    - Refactoring of UI frontend & palette code (Vincent Geddes)
    - Selector button from the palette is now hidden and one is placed on the 
      toolbar instead (Vincent Geddes)
    - Refactoring of core/plugin interface, now the plugin derives an adaptor
      type to interface with the core.
    - New bindings framework, this includes a bindings core module and an initial
      implementation of the python binding (Juan Pablo Ugarte)
    - Added core support for plugins to implement actions on the context menu,
      AND support for scripted context menu actions (Juan Pablo Ugarte)
    - Cleanup of gnome catalog code (Juan Pable Ugarte)
    - Misc bugfixes by Vincent, Juan Pablo, Andreas Köhler and myself.

New and updated translations
============================
    - Josep Puigdemont i Casamajó (ca)


===========
Glade 3.1.0
===========

New features and fixes
======================

    - Embedded toplevel widgets - phase one (Vincent Geddes)
    - Integrated one window application layout - phase one (Vincent Geddes)
    - Architechtural change, GladeWidgetClass structures now swapped for
      a GladeWidgetAdaptor object, classes are then generated while reading the
      catalog (thus deffering all the OO mechanics to the GType system).
    - Fixed "-"/"_" mangling in translatable string comments (bug 363598) (Jonas Berlin)

New and updated translations
============================
    - Abel Cheung (zh_HK, zh_TW)
    - Francisco Javier F. Serrador (es)

===========
Glade 3.0.3
===========

New features and fixes
======================
    - Fixed "-" / "_" mangling in translatable string comments (bug 363598) (Jonas Berlin)
    - Fixed "&amp in a label with markup enable saves as an &" (bug 360586) (Juan Pablo Ugarte)
    - Fixed saved "gtk-broken-image" stock being saved in all GtkImages (bug 353126) (Jeff Westerinen & myself)

New and updated translations
============================
    - Abel Cheung (zh_HK, zh_TW)
    - Francisco Javier F. Serrador (es)
    - Ignacio Casal Quinteiro (gl)
    - Josep Puigdemont i Casamajó (ca)
    - Djihed Afifi (ar)

===========
Glade 3.0.2
===========

New features and fixes
======================
    - Fixed some properties to be translatable (reported by Olivier Rolland)
    - Now use non-locale specific functions to write out double values to 
      glade files, revert to use floating precision in adjustments.
    - Signal editor UI improved (bug 127149) (Juan Pablo Ugarte)
    - Reimplemented file drag and drop (bug 352458) (Vincent Geddes)
    - Fixed accelerator dialog segfaults (bug 352825) (Juan Pablo Ugarte)
    - Improved GtkPaned support (bug 345075) (Juan Pablo Ugarte)
    - Backing out multiple consecutive pastes (reopening bug 345603)
      (this fixes menu editor segfaults among other things)
    - Fixed ComboBoxEntry crash (bug 354716) (Juan Pablo Ugarte)
    - Ordering of properties in the editor window 
      (bug 345893) (Juan Pablo Ugarte)
    - Allow a dynamic user-editable comment prepended to the 
      glade file (Bug 342889) (Juan Pablo Ugarte)
    - Added new stock listing that includes the stock "images" (which
      are not gtk+ stock "items"), and enabled them for GtkImage and
      GtkToolItem. (bug 353522)
    - GtkImage now defaults to an initial "gtk-broken-image" stock type.
    - Ignore "enable-grid-lines" 2.10 property on treeview since it causes 
      crashes on load (fixes bug 353611)
    - Added displayable values for "enable-grid-lines" 2.10 property
    - Set some HIG-ish defaults on dialogs
    - Fixed lost icons on images (bug 353126) (Juan Pablo Ugarte)
    - Namespace issues with libglade initial fix (Juan Pablo Ugarte)
    - Few more misc fixes by Juan Pablo and myself.

New and updated translations
============================
    - Changwoo Ryu (ko)
    - David Lodge (en_GB)
    - Francisco Javier F. Serrador (es)

===========
Glade 3.0.1
===========

New features and fixes
======================
    - Pasting a widget does not paste the packing options (bug 345604) (Juan Pablo Ugarte)
    - Now you can paste widgets to your hearts content (bug 345603)
    - Fixed expander widgets (they were missing placeholders).
    - Adjustments are saved witout floating point precision in the glade file (reports of
      glade-- code generator disliking the decimal points).
    - Fixed an embaressing segfault when removing items using the menu/toolbar editor (Juan Pablo)
    - Interface signals are now properly introspected + alphabetically sorted (Juan Pablo)
    - Removed some properties on children internal to composite widgets, properties that
      we're controlled by style properties on the GtkDialog widget (bug 352018).
    - Enhancements to the "Projects" menu + minor UI enhancements (Vincent Geddes)
    - Palette items can be locked down with CNTL-click matching glade-2 behaviour (bug 303679)


===========
Glade 3.0.0
===========

New features and fixes
======================
    - DevHelp integration for a contextual help system
    - GnomeUI and GnomeCanvas plugin (Juan Pablo Ugarte)
    - New "Editor skeleton" provided by the core to ease the plugin's creation
      of custom editors for toolbars and menus and such. (Juan Pablo Ugarte)
    - Toolbar and popup menu support (Juan Pablo Ugarte)
    - Added accelerators property dialog
    - Drag/Resize support extended to GtkTable and GtkBox subclasses 
      (and GnomeCanvas) from only GtkFixed and GtkLayout.
    - Reverted "View" menu to match the Glade 2 style (Yevgen Muntyan)
    - Now glade has 2 icon sets (16x16 & 22x22), all icons available (Vincent Geddes)
    - New awesome palette (Vincent Geddes)
    - Cute cursor when adding widgets (Vincent Geddes)
    - General UI enhancements and desktop integration work (Vincent Geddes)
    - Duplicated widgets id's are unique (Yevgen Muntyan)
    - Spelling mistake fixes from Thierry Moisan and Clytie Siddall
    - Many Many Many misc fixes by Juan Pablo Ugarte, Vincent Geddes, 
      Yevgen Muntyan and myself.
    - Much core/gtk+ backend refactoring done by Juan Pablo and myself.

New and updated translations
============================
    - Funda Wang (zh_CN)
    - Francisco Javier F. Serrador (es)
    - Adam Weinberger (en_CA)
    - Kjartan Maraas (nb, no)
    - Raphael Higino (pt_BR)
    - Clytie Siddall (vi)
    - Jordi Mas (ca)
    - Vincent van Adrighem (nl)
    - Daniel Nylander (sv)
    - Valek Filippov (ru)

==============
glade-3 2.91.1
==============

New features and fixes
======================
    - Full atk property support.
    - Added full documentation with gtk-doc, imported adding-widgets.txt to sgml files.
    - GtkTable packing properties now work seemlessly (Juan Pablo Ugarte)
    - Misc fixes on menu editor (Juan Pablo Ugarte)
    - Filtered out cut/copy/paste accelerators from the editor window (fixing bug 324389)
    - Implemented "Custom widgets" (glade-2 file support)
    - GladeEPropFlags now shows treeview directly in editor (Mikael Hermansson)
    - Added generic object list type to the glade builtin types (currenty used for
      atk relation properties)
    - Added packing property recording mechianism to Create/Delete commands
      (was only there for Cut/Paste)
    - Added file filters "All Files" and "Glade Files" to FileChooser Dialog (Vincent Geddes)
    - Initialize FileChooser to use project->name as loaded filename (Vincent Geddes)
    - Lots of irrelevent properties disabled (Juan Pablo Ugarte)
    - Rewrite of project list menu in glade-project-window (Vincent Geddes)
    - Indicate whether projects have unsaved changes  (Vincent Geddes)
    - Open leafs & scrolled-window position restored on the project view
      when switching projects
    - Added glade-3.pc for module packages to find out where to install
      their modules/catalogs/pixmaps (Yevgen Muntyan)
    - Implemented Adjustments glade-2 style for now (Juan Pablo Ugarte)
    - Manage the sensitivities of all the ui actions in the project window (Vincent Geddes)
    - Removed popt dependancy in favor of glib mechanism (Vincent Geddes)
    - Detect read-only state of projects (Vincent Geddes)
    - Implemented GtkDialog button children layout to match what glade-2 / libglade supports
    - Changed GtkButton editing to support button "label" and "use-underline" properties.
    - Many many misc bug fixes by Juan Pablo Ugarte, Yevgen Muntyan, Vincent Geddes,
      Johannes Schmid and myself.

New and updated translations
============================
    - Adam Weinberger (en_CA)
    - Francisco Javier F. Serrador (es)
    - Clytie Siddall (vi)
    - Jordi Mas (ca)
    - Raphael Higino (pt_BR)
    - Vincent van Adrighem (nl)
    - Daniel Nylander (sv)


==============
glade-3 2.91.0
==============

New features and fixes
======================
   - The amazing new menu editor is here ! (Juan Pablo Ugarte)
   - Added GladeEditorProperty objects, a GtkWidget descendant
     capable of editing properties (one subclass available for
     every method of editing properties).
   - GladeProjectView displays internal widget descriptors and
     special-child-type descriptors
   - Project menu item glitch fixed.
   - Fixed "paste" using keyboard shortcuts
   - Show "save as" dialog on save when previous save failed
   - Added widgets GtkCombo, GtkList, GtkCList, ComboBox & ComboBoxEntry
   - Delete in property editor not to delete project widgets (only text
     in entries).
   - Text properties now scroll (bugzilla 316232)
   - Translate strings from catalog files (this includes translating
     the gtk+.xml.in using intltool & using dgettext on strings parsed
     from the catalog).
   - Implemented command groups (for undo/redo actions on a complex
     series of glade commands), used by the new editor.
   - Undo/Redo buttons now display action content in tooltips.
   - Added GladeEPropObject, generic support for object type properties.
   - Updated plugin writer documentation (widgets/adding-widgets.txt)
   - All project paths are now absolute canonical paths
   - Added GladeEPropResource for resource file type properties,
     glade will try to always keep a copy of all project resources
     in the same directory as the glade file.
   - Fixed signal loading (bug 326715)
   - Fixed persisting i18n metadata (bug 325628)
   - Implemented <requires> functionality in glade files
     (save required plugins and gracefully display errors if
     the requested catalog isnt available).
   - Multiple projects with the same name now supported.
   - Misc bugfixes and code improvements from myself Juan Pablo Ugarte and
     Lluis Sanchez Gual


New and updated translations
============================

   - Funda Wang (zh_CN)
   - Francisco Javier F. Serrador (es)
   - Adam Weinberger (en_CA)
   - Kjartan Maraas (nb, no)
   - Raphael Higino (pt_BR)



What is new in glade-3 2.90.0
=============================

    Everything about glade-3 is definitly new in this first ever
development snapshot, so I give you here a list of all the 
all star players that helped up to this point to make it happen
(anyone I have any kind of record of should be here).

So welcome all to the new, unfinished glade-3, I hope you all enjoy.

Contributors:
=============
 o Chema Celorio
 o Jonathan Blandford
 o Carlos Perello Marin
 o Archit Baweja
 o Ravi Pratap
 o Shane Butler
 o Joe Shaw
 o Kjartan Maraas
 o Michael Meeks
 o James Willcox
 o Joaquín Cuenca Abela
 o Paolo Borelli
 o Tommi Komulainen
 o Damon Chaplin
 o David Hoover
 o Morten Welinder
 o Tristan Van Berkom
 o Ivan, Wong Yat Cheung
 o Gustavo Noronha Silva
 o Richard Hult
 o Mikael Hallendal
 o Naba Kumar
 o Philip Van Hoof
 o Juan Pablo Ugarte

Translators:
============
 o Fatih Demir
 o Christian Rose
 o Pablo Saratxaga
 o Duarte Loreto
 o Zbigniew Chyla
 o Hasbullah Bin Pit
 o Takeshi AIHANA