-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
1335 lines (1064 loc) · 38.9 KB
/
NEWS
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
GtkHTML-3.24.4 2009-01-30
-------------------------
Updated Translations:
Hendrik Richter (de)
Bug Fixes:
#464064 (BNC) : Evolution crashed - pressing ctrl+z (undo) in composer window (Bharath)
#465432 (BNC) : Evolution: Deleting Text In Table Deletes To End Of String (Bharath)
#532165 : Do not crash when factory gone. (Milan Crha)
#565491 : when in the editing mode, otherwise strip it as before. (Milan Crha)
GtkHTML-3.24.3 2009-01-12
-------------------------
Bug Fixes:
#553995: evolution crashed with SIGSEGV in gtkhtml_editor_set_changed() (Paul Bolle)
#555388: Undo table create locked up client (Milan Crha)
#562323: Evolution inserts a link incorrectly (Matthew Barnes)
#565491: Don't strip leading whitespace when inserting text (Matthew Barnes)
#565493: Formatting destroyed when marking text with keyboard (Matthew Barnes)
#566014: Evolution does not use selected background color inside table in mail message (Matthew Barnes)
#567130: glade GUI is not localized with evolution (Takao Fujiwara)
GtkHTML-3.24.2 2008-11-24
-------------------------
Bug Fixes:
#472517: Always update the pop-up menu before showing it, whether we're clicking in a selection or not (Matthew Barnes)
GtkHTML-3.24.1.1 2008-11-07
-------------------------
Bug Fixes:
#338921: crash dislaying a mail (Milan Crha)
Updated Translations:
Maxim Dziumanenko (uk)
GtkHTML-3.24.1 2008-10-20
-------------------------
Bug Fixes:
#546155: Composer crash after pasting text and deleting parts of it (Milan Crha)
#548540: Spellchecker reports possessive plurals (e.g. "horses'") as misspelled (Matthew Barnes)
#554326: Critical warning when opening new composer and have preset a signature (Milan Crha)
#554424: Spellchecker breaks after enabling more languages (Matthew Barnes)
#554849: Unlocalized strings in Compose mail dialog (Takao Fujiwara)
#556239: Inline spell-check not redone after changing the language (Matthew Barnes)
Updated Translations:
Djihed Afifi (ar)
Pema Geyleg (dz)
Gil Forcada (ca)
Takeshi AIHANA (ja)
GtkHTML-3.24.0 2008-09-22
-------------------------
Bug Fixes:
#423395: Ensure cursor at the right position even when first time focusing to the widget (Milan Crha)
#549232: Revise the translator comments to reference GtkComboBox, from which the "popup-shown" property and associated descriptions are taken (Matthew Barnes)
Updated Translations:
Gintautas Miliauskas (lt)
Lucas Lommer (cs)
Ask H. Larsen (da)
Hendrik Richter (de)
Inaki Larrañaga Murgoitio (eu)
Ilkka Tuohela (fi)
Chao-Hsiung Liao (zh_HK, zh_TW)
Djihed Afifi (ar)
Gabor Kelemen (hu)
Sandeep Shedmake (mr)
Tirumurthi Vasudevan (ta)
Milo Casagrande (it)
Leonardo Ferreira Fontenelle (pt_BR)
Changwoo Ryu (ko)
Yavor Doganov (bg)
Ivar Smolin (et)
Shankar Prasad (kn)
Philip Withnall (en_GB)
Åsmund Skjæveland (nn)
Funda Wang (zh_CN)
GtkHTML-3.23.92 2008-09-08
--------------------------
Bug Fixes:
#516680: Remember focus object same as in other functions (Milan Crha)
Updated Translations:
Philip Withnall (en_GB)
Rodrigo Marques Flores (pt_BR)
Sweta Kothari (gu)
Daniel Nylander (sv)
GtkHTML-3.23.91 2008-09-01
--------------------------
Updated Translations:
Og Maciel (pt_BR)
Sweta Kothari (gu)
Shankar Prasad (kn)
Daniel Nylander (sv)
Lucas Hermann Negri (pt_BR)
Inaki Larranaga Murgoitio (eu)
Ivar Smolin (et)
GtkHTML-3.23.90 2008-08-16
--------------------------
Bug Fixes:
#540794: Sanitize HTMLENGINE by checking whether we have a HTMLEngine (Tobias Mueller)
#543318: Force the codeset to UTF-8 (Pascal Terjan)
Other Contributors:
Fix compiler warnings (Matthew Barnes)
Updated Translations:
Harivishnu (ml)
Takeshi AIHANA (ja)
Duarte Loreto (pt)
Ilkka Tuohela (fi)
Yair Hershkovitz (he)
Chao-Hsiung Liao (zh_HK)
Chao-Hsiung Liao (zh_TW)
Youssef Chahibi (ar)
GtkHTML-3.23.6 2008-08-04
--------------------------
Bug Fixes:
#545559: Respect Gnome settings regarding cursor blinking (Milan Crha)
Updated Translations:
Ivar Smolin (et)
Youssef Chahibi (ar)
Vladimir Melo (pt_BR)
Bruno Brouard (fr)
GtkHTML-3.23.5 2008-07-21
--------------------------
Bug Fixes:
#244888: Add accelerators for "justify-left" (Ctrl+L), "justify-center" (Ctrl+E) and "justify-right" (Ctrl+R). Change the "word-wrap" accelerator from Ctrl+L to Ctrl+Backslash (Matthew Barnes)
#408707: Implements the first of several suggested UI improvements in the bug (Matthew Barnes)
#423395: New API to let GtkHTML know where to place cursor on the first focus event, based on the anchor name (Milan Crha)
#446894: Use the widget style's font rather than a hardcoded font (Matthew Barnes)
#493783: Restore last scrollbar position when done with substreams (Milan Crha)
#538703: Delay loading of all dictionaries to improve performance (Wang Xin)
#539289: Don't use deprecated gtk type macros (Christian Persch)
#540342: Fix a security vulnerability (Milan Crha)
#540929: Stop expanding columns as soon as there were no columns expanded during the cycle (Milan Crha)
#542567: Correct the shortcuts for increasing and decreasing indents (B S Srinidhi)
Updated Translations:
Luca Ferretti (it)
Andre Klapper (de)
Ignacio Casal Quinteiro (gl)
Daniel Nylander (sv)
Matej Urbanči (sl)
Theppitak Karoonboonyanan (th)
Kjartan Maraas (nb)
Jorge Gonzalez (es)
Yannig Marchegay (oc)
GtkHTML-3.23.4 2008-06-16
--------------------------
Bug Fixes:
#533741: Don't insert BOM into UTF-8 text when copying to clipboard; filter it out when pasting from clipboard (Vaclav Slavik)
#536635: Allow gtkhtml to build with G_DISABLE_SINGLE_INCLUDES and GTK_DISABLE_SINGLE_INCLUDES defined (Matthew Barnes)
#537397: Fix a duplicate mnemonic (Matthew Barnes)
Updated Translations:
Ivar Smolin (et)
Theppitak Karoonboonyanan (th)
Khaled Hosny (ar)
Ignacio Casal Quinteiro (gl)
GtkHTML-3.23.3 2008-06-02
--------------------------
Bug Fixes:
#524338: Reverting the fix for bug #342659 which caused the fickering (Srinivasa Ragavan)
Updated Translations:
Máté Őry (hu)
Clytie Siddall (vi)
Khaled Hosny (ar)
GtkHTML-3.23.2 2008-05-12
--------------------------
Bug Fixes:
#525996: Look for data files in our own installation prefix, to make running local builds easier (Matthew Barnes)
Other Contributors:
Don't translate a bunch of useless widget labels. (Kjartan Maraas)
Updated Translations:
Yair Hershkovitz (he)
Kjartan Maraas (nb)
Jorge Gonzalez (es)
GtkHTML-3.23.1 2008-04-21
--------------------------
Bug Fixes:
#266206: Bunch of input method fixes (Owen Taylor, Matthew Barnes)
#339093: Skip ZOOM commands only when in non-editing mode and when not invoked by key bindings. (Milan Crha)
#458369: Merge two similar translated strings. (Matthew Barnes)
#483745: Add tooltip for text color combo. (Milan Crha)
#512046: Gtkhtml freezes when backward searching in e-mail editing window (Takao Fujiwara)
#520711: Fix runtime critical warnings (Milan Crha)
#525977: Add a --with-glade-catalog option for installing Glade 3 catalog files (for maintainers only). Defaults to 'no'. (Matthew Barnes)
#526152: Defer management of spell check languages and color to the editor component. (Matthew Barnes)
Updated Translations:
Kjartan Maraas (nb)
Jorge Gonzalez (es)
Eskild Hustvedt (nn)
GtkHTML-3.17.93 2008-03-10
--------------------------
Updated Translations:
Gabor Kelemen (hu)
Vasiliy Faronov (ru)
Runa Bhattacharjee (bn_IN)
Maxim Dziumanenko (uk)
Philip Withnall (en_GB)
Sandeep Shedmake (mr)
Kenneth Nielsen (da)
GtkHTML-3.17.92 2008-02-25
--------------------------
Other Contributors:
Updated Translations:
Yair Hershkovitz (he)
Claude Paroz (fr)
Wouter Bolsterlee (nl)
Gil Forcada (ca)
Pawan Chitrakar (ne)
Ilkka Tuohela (fi)
Lucas Lommer (cs)
Pedro de Medeiros (pt_BR)
Chao-Hsiung Liao (zh_HK)
Chao-Hsiung Liao (zh_TW)
Luca Ferretti (it)
Takeshi AIHANA (ja)
Bug Fixes:
#391730: Fix cut/paste oddities in the composer window (Milan Crha)
GtkHTML-3.17.91 2008-02-11
--------------------------
Other Contributors:
Build fix for G_STRFUNC (Srinivasa Ragavan)
Warning fix (Matthew Barnes)
Updated Translations:
Duarte Loreto (pt)
Theppitak Karoonboonyanan (th)
Artur Flinta (pl)
Arangel Angov (mk)
Andre Klapper (de)
Ignacio Casal Quinteiro (gl)
Leonardo Ferreira Fontenelle (pt_BR)
Jorge Gonzalez (es)
Khaled Hosny (ar)
Djihed Afifi (ar)
Yannig Marchegay (oc)
GtkHTML-3.17.90 2008-01-28
--------------------------
New in 2.21.90:
Support for Anchors (Frame/IFRAME) (Milan Crha)
Bug Fixes:
#371011: crash in undo_or_redo (Matthew Barnes/Johnny)
#431190: Look for anchors in FRAME and IFRAME too (Milan Crha)
#447122: Move to next character when searching forward also when found as first character of paragraph (Milan Crha)
#489456: evolution crashed when changing image alignment (Bharath Acharya)
#491210: The GtkHTMLSearchDialog was being accessed after destroying it (Bharath Acharya)
#505819: We should not unref ourself (Milan Crha)
Other Contributors:
libsoup updates (Dan Winship)
Build changes (Tor Lillqvist)
Updated Translations:
Ivar Smolin (et)
GtkHTML-3.17.5 2008-01-14
-------------------------
Bug Fixes:
#317823: Save inline pictures embedded into HTML Mails (Milan Crha)
#447122: Move to next character when searching forward (Milan Crha)
#467791: Do not crash on html messages that use "shape" without "map" (Andre Klapper)
#493709: Remove deprecated GTK+ symbols (Matthew Barnes)
#498089: Fix mnemonics issues (Alex Kloss)
#504051: Do not load from file if url starts with "cid:" (Milan Crha)
Updated Translations:
Changwoo Ryu (ko)
Yannig Marchegay (oc)
Ivar Smolin (et)
Djihed Afifi (ar)
GtkHTML-3.17.4 2007-12-17
-------------------------
Bug Fixes:
#501724: Add FontSizeFour to Format->Font Size menu. (Juan Pizarro)
Updated Translations:
Kjartan Maraas (nb)
Matej Urbanči (sl)
Jorge Gonzalez (es)
GtkHTML-3.17.3 2007-12-03
-------------------------
Bug Fixes:
#271551: File manager used during composer should remember last directory. (Milan Crha)
#435620: Do not recalculate size of the object (Milan Crha)
#494170: Accept spaces between element name and end of tag when looking for end of style/script tag (Milan Crha)
#495073: Ignore duplicate SpellError objects (Matthew Barnes)
#500398: Composer dropdown menu items not displayed translated (Milan Crha)
GtkHTML-3.17.2 2007-11-12
-------------------------
Bug Fixes:
#318592: Allow UI notification of links inserted in composer (Milan Crha)
#334675: Extending API to get selection as plain-text (Milan Crha)
#431606: Use stock icons when converting an emoticon to an image (Matthew Barnes)
#478670: Remove dead files from source control (Matthew Barnes)
GtkHTML-3.17.1 2007-10-27
-------------------------
Bug Fixes:
#258374: Clipboard contents are not lost anymore on mail close (Hiroyuki Ikezoe)
#349046: Candidate window shows far down when editor scrolls (Hiroyuki Ikezoe)
#434631: Focus automatically switches to message widget after selecting paragraph format (Milan Crha)
#485700: Always unescape amps when returning complete urls (Milan Crha)
#487841: Plug memory leaks (Milan Crha)
#488167: Change focused object only when not focused before (Milan Crha)
Updated Translations:
Djihed Afifi (ar)
Matej Urbanči (sl)
GtkHTML-3.16.0 2007-09-17
-------------------------
Updated Translations:
Inaki Larranaga Murgoitio (eu)
Nickolay V. Shmyrev (ru)
GNOME PL Team (pl)
Mugurel Tudor (ro)
Gabor Kelemen (hu)
Maxim Dziumanenko (uk)
Goran Raki (sr)
Ani Peter (ml)
Kenneth Nielsen (da)
GtkHTML-3.15.92 2007-09-03
--------------------------
Bug Fixes:
#470451: Update FSF address in header comments (Tobias Mueller)
Updated Translations:
Tirumurthi Vasudevan (ta)
Funda Wang (zh_CN)
Duarte Loreto (pt)
Jovan Naumovski (mk)
GtkHTML-3.15.91 2007-08-27
--------------------------
Bug Fixes:
#262907: Incorrect cursor navigation & deletion for composite
glyphs in indic languages (Akira TAGOH)
#270487: autourlified URLs not html-escaped (Rohini S)
#343994: User can not delete more than 1 line/column in message
composer (Irene Huang)
#346004: It is impossible to insert plain rule with length
specified in pixels (Irene Huang)
#419350:> Solves the problem of incorrect/inappropriate
emoticons display (Rashmi)
Updated Translations:
Stéphane Raimbault (fr)
Daniel Nylander (sv)
Takeshi AIHANA (ja)
Ivar Smolin (et)
Theppitak Karoonboonyanan (th)
Ankit Patel (gu)
Hendrik Richter (de)
Kjartan Maraas (nb)
Vladimir Melo (pt_BR)
GtkHTML-3.15.90 2007-08-13
--------------------------
Bug Fixes:
#352646 - Crash while inserting image (Hiroyuki Ikezoe)
#373648 - Fix for Error loading file (in composer): invalid byte-sequence in conversions-input
#394182 - Crashes while composing mails due to popups and spellchecks (Milan Crha)
#407365 - Added mnemonic for 'Insert Link' (Naresh)
#426496 - Crash in Evolution while viewing mails (Milan Crha)
#432914 - evolution crashed with SIGSEGV in html_text_get_text (Srini)
#455799 - Remove all .cvsignore and update svn:ignore porperty in whole directories. (Hiroyuki Ikezoe)
Updated Translations:
Runa Bhattacharjee (bn_IN)
Ankit Patel (gu)
Tirumurthi Vasudevan (ta)
Lucas Rocha (nb)
Takeshi AIHANA (ja)
Inaki Larranaga Murgoitio (eu)
Kjartan Maraas (nb)
GtkHTML-3.15.6 2007-07-30
-------------------------
Bug fixes:
#380534: Collect all the required package versions in one place
(Matthew Barnes)
#455444: Fixed unlocalized strings in 'Find'&'Replace' window in
composer (Jeff Cai)
Updated Translations:
Theppitak Karoonboonyanan (th)
Hendrik Richter (de)
Daniel Nylander (sv)
Ilkka Tuohela (fi)
Priit Laes (et)
GtkHTML-3.15.5 2007-07-09
-------------------------
Bug fixes:
#347347: Emit correct signal when moving caret in composer window
(Yi Jin)
#438945: Emit correct signal when using Ctrl+Backspace in composer
window (Yi Jin)
#446894: Clean up printing in Evolution's Mailer (Matthew Barnes)
#449995: Glade data should not get deleted when running "make
distclean" (Yi Jin)
#453320: Emit correct signal when deleting text (Li Yuan)
Updated Translations:
Jorge Gonzalez (es)
I. Felix (si)
GtkHTML-3.15.4 2007-06-18
-------------------------
New in 3.15.4:
Added support for magic spacebar to browse till end of the document
and return status if end is reached. (Srinivasa Ragavan)
Bug fixes:
#443219: Crash when definding frames with out inner frames (Milan Crha)
#444104: Removed space after trailing slash, fixes build problem
with automake 1.6. (Nickolay V. Shmyrev)
Updated Translations:
Pema Geyleg (dz)
Jakub Friedl (cs)
GtkHTML-3.15.3 2007-05-14
-------------------------
Release updates
GtkHTML-3.15.2 2007-05-14
-------------------------
Bug fixes:
#407363: Added mnemonic for paste quotation menuitem (Bharathi
Gauthaman)
Other contributors:
Fix filenames in CLEANFILES and other cleanups.
(Matthew Barnes)
Updated Translations:
Washington Lins (pt_BR)
Funda Wang (zh_CN)
Jakub Friedl (cs)
GtkHTML-3.15.1 2007-04-23
-------------------------
New in 3.15.1:
#347347 - Make message "object:text-caret-moved" generated when
user hits left/right key with shift key held down (Yi Jin)
#331813 - Fix URL highlighting of sip/h323 addresses (Gilles
Dartiguelongue)
#420493 - Setting the width of a rule doesn't take effect (Ebby
Wiselyn)
#349773 - Support searching UTF-8 strings. (Xiurong Simon Zheng)
#410317 - Memory leak fixes (nix)
#374869 - On Caret mode, message scrolls to the bottom of the
list. (Sankar P)
#419350 - fix emoticons use (Sebastien Bacher)
Other contributors: Christian Persch, Tor Lillqvist
Updated Translations:
Jorge Gonzalez (es)
GtkHTML-3.14.00 2007-03-12
--------------------------
Fixes since GtkHTML-3.13.92:
Harish Krishnaswamy (401970)
Updated Translations:
Takeshi AIHANA (ja)
Mugurel Tudor (ro)
Nickolay V. Shmyrev (ru)
Gintautas Miliauskas (lt)
Tino Meinen (nl)
Jovan Naumovski (mk)
Ankit Patel (gu)
Josep Puigdemont i Casamajó (ca)
Chao-Hsiung Liao (zh_HK, zh_TW)
Artur Flinta, GNOME PL Team (pl)
Ivar Smolin (et)
Gintautas Miliauskas (lt)
GtkHTML-3.13.92 2007-02-26
--------------------------
Bug Fixes:
Harish Krishnaswamy
Matthew Barnes
Gilles Dartiguelongue
Updated Translations:
Luca Ferretti (it)
Gabor Kelemen (hu)
Changwoo Ryu (ko)
Nguyễn Thái Ngọc Duy (vi)
Alexander Shopov (bg)
Leonardo Ferreira Fontenelle (pt_BR)
Artur Flinta (pl)
Maxim Dziumanenko (uk)
Hendrik Brandt (de)
Duarte Loreto (pt)
Ilkka Tuohela (fi)
Kjartan Maraas (nb)
Priit Laes (et)
GtkHTML-3.13.91 2007-02-12
--------------------------
Major Changes
- GtkPrint Migration improvements from Ebby Wisely
- Massive Code Cleanup from Matthew Barnes
Bug Fixes:
Kjartan Maraas
Matthew Barnes
Chenthill Palanisamy
Updated Translations:
Jonathan Ernst and Claude Paroz (fr)
David Lodge (en_GB)
Djihed Afifi (ar)
Daniel Nylander (sv)
Theppitak Karoonboonyanan (th)
Kjartan Maraas (nb)
Priit Laes (et)
GtkHTML-3.13.90 2007-01-22
--------------------------
GtkPrint API Migration by Ebby Wiselyn.
GtkHTML-3.13.5 2007-01-08
-------------------------
Bug fixes :
Chris Heath (360393)
GtkHTML-3.13.4 2006-12-18
-------------------------
Updated Translations :
Djihed Afifi (ar)
GtkHTML-3.13.3 2006-12-04
-------------------------
Updated Translations :
Ilkka Tuohela (fi)
Bug fixes :
Matthew Barnes (353424).
GtkHTML-3.13.2 2006-11-06
-------------------------
Updated Translations : Ivar Smolin (et)
Bug Fixes : Srinivasa Ragavan (#350981)
GtkHTML-3.13.1 2006-10-16
-------------------------
Updated Translations :
Ivar Smolin (et)
Ignacio Casal Quinteiro (gl)
David Lodge (en_GB)
GtkHTML-3.12.1 2006-10-02
-------------------------
Updated Translations :
David Lodge (en_GB)
GtkHTML-3.12.0 2006-09-04
-------------------------
GtkHTML 3.12 Stable release for GNOME 2.16.
GtkHTML-3.11.92 2006-08-21
--------------------------
Updated Translations :
Subhransu Behera (or), Alexander Shopov (bg), Satoru SATOH (ja),
Gabor Kelemen (hu), Sanlig Badrak (mn), Vladimer Sichinava (ka),
Rahul Bhalerao (mr), Baris Cicek (tr), Inaki Larranaga (eu)
Bug Fixes :
Kjartan Maraas
GtkHTML-3.11.91 2006-08-07
--------------------------
Updated Translations :
Ahmad Riza H Nst (id), Thierry Randrianiriana (mg),
Vincent van Adrighem (nl)
Bug Fixes :
Bastien Nocera, Björn Lindqvist, Nancy Cai
GtkHTML-3.11.90 2006-07-24
--------------------------
Updated Translations :
Hendrik Richter, Daniel Nylander.
Other changes:
Font rendering now with Cairo (Rajeev Ramanathan)
GtkHTML-3.11.4 2006-07-10
-------------------------
Updated Translations :
Runa Bhattacharjee, Benoît Dejean, Ilkka Tuohela,
Yair Hershkovitz, Rajesh Ranjan, Raivis Dejus,
Changwoo Ryu, Hendrik Richter.
Bug fixes : Rohini, Varadhan, Li Yuan
GtkHTML-3.11.3 2006-06-12
-------------------------
Updated translations :
Priit Laes, Kjartan Maraas, Pema Geyleg, Inaki Larranaga,
Theppitak Karoonboonyanan, Miloslav Trmac, Francisco Javier
F. Serrador.
Bug fixes : Rohini, Harish K, Sebastien Bacher.
[327841, 303634, 334814, 334873]
GNOME Goal for po/LINGUAS : Przemysław Grzegorczyk
GtkHTML-3.11.1 2006-04-24
--------------------------
First release of the 3.11 development cycle.
More bug fixes.
GtkHTML-3.9.92 2006-02-27
----------------------------
Bug fixes since last release :
http://go-evolution.org/Evo2.5.92#gtkhtml
Updated Translations:
- bg (Vladimir Petkov)
- cy (Rhys Jones)
- el (Kostas Papadimas)
- eu (Inaki Larranaga)
- hu (Gabor Kelemen)
- it (Luca Ferretti)
- lt (Žygimantas Beručka)
- nb (Kjartan Maraas)
- no (Kjartan Maraas)
- sr (Slobodan D. Sredojevic)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
GtkHTML-3.9.91 2006-02-13
----------------------------
Bug fixes since last release :
http://go-evolution.org/Evo2.5.91#gtkhtml
Updated Translations:
- ca (Josep Puigdemont i Casamajó)
- es (Francisco Javier F. Serrador)
- et (Ivar Smolin)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- ja (Takeshi AIHANA)
- lt (Žygimantas BeruÄka)
- nb, no (Kjartan Maraas)
- nl (Tino Meinen)
- pt_BR (Raphael Higino)
- sr, sr@Latn (Slobodan D. Sredojevic)
- th (Theppitak Karoonboonyanan)
- vi (Clytie Siddall)
- zh_CN (Funda Wang)
GtkHTML-3.9.90.1 2006-02-02
---------------------------
Fix for bug #329344. Required fix for Evolution
2.5.90 to be usable with Pango-1.11.3 release.
GtkHTML-3.9.90 "First look" 2006-01-30
--------------------------------------
What's new ?
Bug fixes since 3.9.5 :
http://bugzilla.gnome.org/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&classification=Desktop&product=GtkHtml&long_desc_type=substring&long_desc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=RESOLVED&resolution=FIXED&resolution=WONTFIX&resolution=DUPLICATE&resolution=NOTABUG&resolution=NOTGNOME&resolution=INCOMPLETE&resolution=INVALID&resolution=GNOME1.x&resolution=MOVED&resolution=OBSOLETE&resolution=NOTXIMIAN&emailassigned_to1=1&emailtype1=substring&email1=&emailassigned_to2=1&emailreporter2=1&emailqa_contact2=1&emailcc2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&chfieldfrom=2006-01-17&chfieldto=Now&chfield=bug_status&chfieldvalue=RESOLVED&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=
Updated Translations:
- bg (Vladimir Petkov)
- ca (Josep Puigdemont i Casamajó)
- es (Francisco Javier F. Serrador)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- nb, no (Kjartan Maraas)
- nl (Vincent van Adrighem)
- pt_BR (Evandro Fernandes Giovanini)
- zh_CN (Funda Wang)
GtkHTML-3.9.5 "Smile" 2006-01-17
------------------------------
New in this release
* Fixes URL parser doesn't properly parse trailing '.' in hostnames (Rohini)
* Fixes Adding new word (enclosed in single quotes) to dictionary does not work
* Fixes change "_Insert" mnemonic in Signature Editor Menu (Srinivasa Ragavan)
* Keyboard Accelerator changes (Srinivasa Ragavan)
* Fixes Compose a message dialog - label suggestions (Rohini)
* Win32 fixes (Tor Lillqvist)
* Updated Translations:
- ca (Josep Puigdemont i Casamajó)
- en_CA (Adam Weinberger)
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- nb (Kjartan Maraas)
- nl (Vincent van Adrighem)
- no (Kjartan Maraas)
- th (Theppitak Karoonboonyanan)
- vi (Clytie Siddall)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
GtkHTML-3.9.4 "Blossom" 2006-01-02
------------------------------
New in this release
* Fixed popup menu layout for the GtkHTML Editor (Srinivasa Ragavan)
* Updated Translations:
- lt (Žygimantas Beručka)
- vi (Clytie Siddall)
GtkHTML-3.9.3 "Stroll" 2005-12-12
------------------------------
Updated Translations:
- bg (Alexander Shopov)
- fi (Ilkka Tuohela)
- gl (Ignacio Casal Quinteiro)
- gu (Ankit Patel)
- nb, no (Kjartan Maraas)
- nl (Tino Meinen)
- th (Theppitak Karoonboonyanan)
- zh_CN (Funda Wang)
GtkHTML-3.9.2 "Adieu" 2005-11-14
------------------------------------------
New in this release
* Fix dialog stacking (Kaushal Kumar)
* Improve Link Dialog (Kaushal Kumar)
* Updated translations
- et (Priit Laes)
- ku (Erdal Ronahi)
- sk (Marcel Telka)
- es (Francisco Javier F. Serrador)
- ja (Takeshi AIHANA)
- en_CA (Adam Weinberger)
- cs (Miloslav Trmac)
GtkHTML-3.9.1 "Nightingale" 2005-10-25
------------------------------------------
New in this release
* Win32 port (Tor Lillqvist)
- Accept non-absolute filename and URIs
- Handle drive letters on Win32.
- Use g_ascii_strcasecmp instead of strcasecmp.
- Construct pathnames at run-time.
- Use g_open instead of open.
- Other Win32 related clean-ups.
* Clean generated headers of Win32 port (Kaushal Kumar).
* Clean-up of selection stack code (Owen Taylor).
* Improved print layout (Kaushal Kumar)
* C89 build fix (Jens Granseuer)
* Higify Insert file and insert rule dialogs (Jai Vikram)
* Re-designed Page properties dialog (Kaushal Kumar).
* Updated translations
- eu (Inaki Larranaga)
- pt_BR (Evandro Fernandes Giovanini)
- en_CA (Adam Weinberger)
- sv (Christian Rose)
- nl (Vincent van Adrighem)
- sk (Marcel Telka)
- et (Priit Laes)
GtkHTML-3.8.0 "Nilgiri Sunrise" 2005-09-05
------------------------------------------
New in this release
* Fix insertion of HTML Links on images (Kaushal Kumar)
* Code clean-up for link handling (Kaushal Kumar)
* Added ro for translations (Dan Damian)
* AMD (64 bit) related build, warning fixes (Not Zed)
* Fix the distclean of the .pc file (Kaushal Kumar)
* Updated translations
- Nickolay V. Shmyrev (ru)
- Zeno Ruset (ro)
- Ivar Smolin (et)
- Mohammad DAMT (id)
- Christophe Merlet (fr)
- Telsa Gwynne (cy)
- Alexander Shopov (bg)
- Hendrik Richter (de)
- Runa Bhattacharjee (bn)
gtkhtml-3.7.7 "Rose Dew" 2005-08-22
----------------------------------------
New in this release
* Punt some dependency version requirements (Kaushal)
* Fix handling of font size -2, -1 (Kaushal)
* Fix the dumps due to faulty variable list stream parsing (Kaushal)
* Clean up stream parsing (Kaushal)
* Convert an attribute function into an API for a11y (Mengjie Yu)
* Redirect commandline spew to debug log (Julien Gilli)
* Path construction using dllmain on Win32 (Tor Lillqvist)
* Fix the html List item parsing (Kaushal)
* Fetch the coordinates correctly for icon list window (S.Ragavan)
* Fix an argument evaluation order, fix warning (David Malcolm)
* Close stray file descriptor (Kaushal)
* Updated translations
- Chao-Hsiung Liao (zh_TW)
- Duarte Loreto (pt)
- Kostas Papadimas (el)
- Gabor Kelemen (hu)
- Nikos Charonitakis (el)
- Maxim Dziumanenko (uk)
- Laurent Dhima (sq)
- Xavier Conde Rueda (ca)
- Žygimantas Beručka (lt)
gtkhtml-3.7.6 "Look mom, there ain't no bizarre bugs no more!!" 2005-08-08
--------------------------------------------------------------------------
New in this release
* Fix insertion of tables over selections (Kaushal Kumar)
* Fix UI sensitivity for Text, Font, Style options (Kaushal Kumar)
* Enable all the atk attributes for text (Mengjie Yu)
* Fix handling of simple deletion of text from table (Kaushal Kumar)
* Fix infinite looping for cursor level (Kaushal Kumar)
* Updated translations
- Marcel Telka (sk)
- Priit Laes (et)
- Tino Meinen (nl)
- Ankit Patel (gu)
- Funda Wang (zh_CN)
- GNOME PL Team (pl)
- Takeshi AIHANA (ja)
- Alexander Shopov (bg)
gtkhtml-3.7.5 "White Rose" 2005-07-25
-----------------------------------------------
New in this release
* HIGification of few dialog titles and labels (H.A.Riyaz Ahmed)
* Removal of deprecated calls (Diego Gonzalez)
* Make Win32 compatible (Tor Lillqvist)
* HIGification of more strings, titles, etc.
* Fix UI issue with Page format dialog.
* Plug leaks (Kjartan Maraas)
* Updated translations (Roozbeh Pournader, Priit Laes,
Francisco Javier F. Serrador, Miloslav Trmac,
Vincent van Adrighem, Adam Weinberger, Marcel Telka,
Ankit Patel, Takeshi AIHANA, Ignacio Casal Quinteiro,
Clytie Siddall, Kjartan Maraas, Baris Cicek, Ilkka Tuohela)
gtkhtml-3.7.4 "Hare Rama" 2005-07-11
-----------------------------------------------
New in this release
* Fixed the passing of correct offsets and signal for the screen
reader (Mengjie Yu)
* Fixed the setting of offsets when start/end slave value is
not available (Mengjie Yu)
* Fixed two strings to resolve translation issues.
* Fixed the Solaris x86 Forte build failure (Damien Carbery)
* Updated translations (Vincent van Adrighem, Priit Laes,
Adam Weinberger, Francisco Javier F. Serrador, Jens Seidel).
gtkhtml-3.7.3 "Shri Ganpati" 2005-07-01
-----------------------------------------------
New in this release
* Added "cy" (Welsh) to ALL_LINGUAS (Rhys Jones)
* Updated translations (Priit Laes, Rhys Jones, Marcel Telka,
Abel Cheung)
gtkhtml-3.7.2 "Changing guards" 2005-06-06
-----------------------------------------------
New in this release
* Public API cleanup (Rodo)
* Fixed translation issues (Changwoo Ryu bug #301120)
* Fixed Find/Replace crash
* Enhaced DnD support (sragavan)
gtkhtml-3.7.1 "Changing guards" 2005-05-18
-----------------------------------------------
New in this release
* Fixed a table crash on undo
* Added visited link change of color feature.
* Cleaned up cluev and text slave code and made it more organized.
gtkhtml-3.7.0 "Changing guards" 2005-04-26
------------------------------------------------
New in this release
* a11y changes (Mengjie Yu)
* fixed crash happening when editing nested cluevs
* fixed infinite loop in cursor navigation
* fixed crash happening with invalid parsed structure