-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.pre-2-23
4754 lines (3121 loc) · 155 KB
/
ChangeLog.pre-2-23
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
2008-05-30 Olav Vitters <olav@bkor.dhs.org>
* src/keybinding-editor.glade: Horizontally fill
disable-mnemonics-checkbutton, otherwise it will centre when the
keybindings window is made bigger.
2008-05-05 Wouter Bolsterlee <wbolster@svn.gnome.org>
* src/terminal-window.c (help_about_callback): Fixup
names in about dialog to correctly list the current
maintainers.
2008-03-26 Kjartan Maraas <kmaraas@gnome.org>
* src/terminal-profile.c: (terminal_profile_create):
Patch from chantra at debuntu.com to fix the exit action.
Closes bug #518184.
2008-03-19 Christian Persch <chpe@gnome.org>
* src/terminal.c: (terminal_app_new_terminal): Fix DetachTab action.
Bug #521193, regression from bug #353775.
2008-03-16 Kjartan Maraas <kmaraas@gnome.org>
* src/skey/btoe.c: (extract):
* src/skey/md5.c:
* src/skey/sha1.c:
* src/terminal-widget-vte.c: (terminal_widget_set_pango_font):
* src/terminal.c: (slowly_and_stupidly_obtain_timestamp):
Fix compiler warnings. Closes bug #521417.
2008-03-10 Behdad Esfahbod <behdad@gnome.org>
* NEWS:
* configure.in:
=== Release 2.22.0 ===
2008-02-26 Olav Vitters <olav@bkor.dhs.org>
* configure.in: Post-release bump to 2.21.93.
=== Release 2.21.92 ===
2008-02-26 Olav Vitters <olav@bkor.dhs.org>
* NEWS: Update for 2.21.92.
2008-02-25 Christian Persch <chpe@gnome.org>
Bug 516778 – Menu items not drawn at startup if use-mnemonics==false
* src/terminal-window.c: (terminal_window_init): Force rebuilding the
toplevel menuitem labels, so they don't end up empty when
use-mnemonics is false. Bug #516778.
2008-02-23 Christian Persch <chpe@gnome.org>
* src/gnome-terminal.glade2: Strip the invisible_char properties,
again. Glade2 sucks. Bug #518282.
2008-02-12 Christian Persch <chpe@gnome.org>
=== Release 2.21.91.1 ===
* configure.in: Update for 2.21.91.1
* src/terminal-screen.c: (terminal_screen_finalize): Initialise
variable.
2008-02-11 Christian Persch <chpe@gnome.org>
=== Release 2.21.91 ===
2008-01-30 Andre Klapper <a9016009@gmx.de>
Bug 511700 – port to gio
* configure.in:
* src/profile-editor.c:
* src/terminal-screen.c: Port to gio, cleanup.
2008-02-10 Behdad Esfahbod <behdad@gnome.org>
Bug 515587 – Use of explicit suffix in 'Icon' field of application
launcher
* gnome-terminal.desktop.in.in: Drop the png extension from icon name.
2008-02-05 Behdad Esfahbod <behdad@gnome.org>
Bug 514661 – crash launching g-t with specific args
* src/terminal.c (option_command_callback): Set err to NULL before
calling into GError-taking API.
2008-02-05 Christian Persch <chpe@gnome.org>
* src/terminal-screen.c: (terminal_screen_class_init),
(terminal_screen_dispose), (terminal_screen_finalize): Disconnect from
the settings notify on dispose instead of finalise. Possibly fixes the
crash in bug #514318.
2008-02-04 Christian Persch <chpe@gnome.org>
* gnome-terminal.desktop.in.in: Direct bug-buddy bugs to the BBB component.
2008-01-30 Christian Persch <chpe@gnome.org>
* src/Makefile.am: Don't dist the generated schemas file.
2008-01-30 Christian Persch <chpe@gnome.org>
=== Release 2.21.90 ===
2008-01-28 Christian Persch <chpe@gnome.org>
* src/terminal.c: (terminal_util_set_atk_name_description):
Use G_STRFUNC instead of the deprecated G_GNUC_FUNCTION.
2008-01-20 Christian Persch <chpe@gnome.org>
* src/gnome-terminal.glade2: Remove extra frame from profile editor.
2008-01-20 Christian Persch <chpe@gnome.org>
* src/gnome-terminal.glade2:
* src/gnome-terminal.schemas.in:
* src/profile-editor.c: (profile_changed), (terminal_profile_edit),
(profile_editor_update_sensitivity):
* src/terminal-profile.c: (terminal_profile_init),
(terminal_profile_update), (profile_change_notify),
(terminal_profile_create):
* src/terminal-profile.h:
* src/terminal-screen.c: (terminal_screen_sync_settings),
(terminal_screen_screen_changed), (terminal_screen_class_init),
(terminal_screen_finalize), (terminal_screen_reread_profile): Use the
gtk-cursor-blink setting, and remove the profile option. Bug #342921,
based on a patch by Mariano Suárez-Alvarez.
2008-01-15 Christian Persch <chpe@gnome.org>
=== Release 2.21.5 ===
* NEWS:
* configure.in:
2008-01-15 Christian Persch <chpe@gnome.org>
* src/profile-editor.c: (terminal_profile_edit):
* src/terminal-window.c: (terminal_window_init): Remove last uses of
old tooltips API.
2008-01-15 Christian Persch <chpe@gnome.org>
* src/terminal-window.c: (terminal_window_class_init),
(sync_tab_label), (tab_label_style_set_cb), (contruct_tab_label):
Update to gtk 2.12 tooltips API, and fix cropping of close buttons with
gnome-icon-theme svn.
2008-01-05 Badral Sanlig <badral@openmn.org>
* po/mn.po: Updated Mongolian translation.
2008-01-05 Christian Persch <chpe@gnome.org>
* src/terminal.c: (main), (get_goption_context): The GnomeProgram
adopts the GOptionContext, don't free it twice.
2008-01-02 Behdad Esfahbod <behdad@gnome.org>
Bug 336155 – [patch] port gnome-terminal to goption
Based on patch from Christian Kirbach
* src/terminal.c: Migrate from popt to GOption, and clean up.
* configure.in: Rquire glib-2 >= 2.12.0, libgnome-2 >= 2.14.0
2007-12-28 Behdad Esfahbod <behdad@gnome.org>
* MAINTAINERS: Removed Guilherme, added chpe.
2007-12-20 Christian Persch <chpe@gnome.org>
* src/skey/md5.c: (MD5Keycrunch), (MD5SKey):
* src/skey/sha1.c: (SHA1Keycrunch), (SHA1SKey): Adapt to new API
for g_checksum_get_digest.
2007-12-17 Behdad Esfahbod <behdad@gnome.org>
* NEWS:
* configure.in: Released 2.21.4
2007-12-08 Christian Persch <chpe@gnome.org>
* configure.in:
* src/skey/md5.c: (MD5Keycrunch), (MD5SKey):
* src/skey/md5.h:
* src/skey/sha1.c: (SHA1Keycrunch), (SHA1SKey):
* src/skey/sha1.h:
* src/skey/skey.c:
* src/skey/skeyutil.c: Use GChecksum instead of our own MD5 and SHA1
implementations. Bug #501667.
2007-12-05 Behdad Esfahbod <behdad@gnome.org>
Bug 501635 – crash in Terminal: running gnome-session-sa...
* src/terminal.c (terminal_app_get_clone_command): NULL-terminate the
array.
2007-12-04 Behdad Esfahbod <behdad@gnome.org>
Bug 501665 – Remove simple-x-font-selector
* src/Makefile.am:
* src/profile-editor.c (profile_changed), (terminal_profile_edit),
(profile_editor_update_sensitivity), (profile_editor_update_font):
* src/simple-x-font-selector.c:
* src/simple-x-font-selector.h:
* src/terminal-profile.c (terminal_profile_init),
(terminal_profile_finalize), (terminal_profile_update),
(profile_change_notify), (terminal_profile_create):
* src/terminal-profile.h:
* src/terminal-screen.c (terminal_screen_set_font),
(terminal_screen_update_scrollbar):
* src/terminal-widget-vte.c:
Remove simple-x-font-selector:
Makefile.am | 2
profile-editor.c | 155 ----
simple-x-font-selector.c | 1730
-----------------------------------------------
simple-x-font-selector.h | 180 ----
terminal-profile.c | 61 -
terminal-profile.h | 4
terminal-screen.c | 314 --------
terminal-widget-vte.c | 6
8 files changed, 41 insertions(+), 2411 deletions(-)
2007-12-04 Behdad Esfahbod <behdad@gnome.org>
* src/encoding.c (terminal_encoding_free),
(terminal_encoding_copy), (terminal_encoding_init):
* src/profile-editor.c (color_scheme_changed),
(palette_scheme_changed),
(profile_editor_update_color_scheme_menu),
(profile_editor_update_palette), (profile_editor_update_x_font),
(profile_editor_update_background_type):
* src/skey/btoe.c (btoe), (extract):
* src/skey/skey.c (skey_test):
* src/skey/skeyutil.c:
* src/terminal-accels.c:
* src/terminal-profile.c:
* src/terminal-screen.c (terminal_screen_set_font):
* src/terminal-window.c (terminal_window_realized_callback):
* src/terminal.c (slowly_and_stupidly_obtain_timestamp), (main),
(terminal_app_new_terminal):
Fix bunch of compiler warnings.
2007-12-04 Behdad Esfahbod <behdad@gnome.org>
Bug 144000 – encodings other than the current encoding are not listed
in gnome-terminal on Solaris.
* src/encoding.c: Fix typo in the name of three encoding.
2007-12-04 Behdad Esfahbod <behdad@gnome.org>
Bug 144000 – encodings other than the current encoding are not listed
in gnome-terminal on Solaris.
* src/encoding.c (terminal_encoding_init): Fix encoding sanity check.
2007-12-03 Behdad Esfahbod <behdad@gnome.org>
* NEWS:
* configure.in: Released 2.21.3 (synch with GNOME release number)
2007-12-01 Behdad Esfahbod <behdad@gnome.org>
Bug 499877 – Update terminal_app_get_clone_command() to use g_array
Patch from Dubon
* src/terminal.c (terminal_app_get_clone_command): Use GPtrArray to
simplify code.
2007-11-27 Christian Persch <chpe@gnome.org>
* src/terminal.c: Revert accidental whitespace changes from commit
2289.
2007-11-27 Christian Persch <chpe@gnome.org>
R src/terminal-notebook.c:
R src/terminal-notebook.h: And remove the obsolete files.
2007-11-26 Behdad Esfahbod <behdad@gnome.org>
Bug 499588 – remove menu icons handling code
Patch from Christian Persch
* src/terminal-window.c (append_menuitem_common),
(append_menuitem), (append_stock_menuitem), (terminal_window_init):
Gtk is taking care of the menus-have-icons setting itself. Remove this
totally crufty code to check the gconf setting and remove/re-add the
menu icons!
2007-11-26 Behdad Esfahbod <behdad@gnome.org>
Bug 353775 – Use GtkNotebook instead of TerminalNotebook
Patch from Christian Persch and Mariano Suárez-Alvarez
* src/Makefile.am:
* src/terminal-screen.c:
* src/terminal-window.h:
* src/terminal.c:
* src/terminal.h:
Do that.
2007-11-26 Behdad Esfahbod <behdad@gnome.org>
Bug 441618 – Message-ID/news-Link crashes gnome-terminal
* src/terminal-widget-vte.c (terminal_widget_check_match),
(terminal_widget_skey_check_match): Return flavor as flavor,
not tag as flavor.
2007-11-26 Behdad Esfahbod <behdad@gnome.org>
* NEWS:
* configure.in: Released 2.18.3
2007-11-12 Chris Wilson <chris@chris-wilson.co.uk>
Bug 494828 – crash in Terminal: Using elinks in a termin...
* src/terminal.c (terminal_util_show_error_dialog):
We were passing an unescaped tainted string as the format to
printf via gtk_message_dialog_new()...
2007-11-26 Behdad Esfahbod <behdad@gnome.org>
Bug 499797 – crash in Terminal: Creating a new profile b...
* src/terminal-profile.c (terminal_profile_update):
Return on NULL parameter.
* src/terminal-profile.c (alphabetic_cmp): Compare
profile names if visual names are equal.
* src/terminal-profile.h:
* src/terminal-profile.c (terminal_profile_create):
Return actual name used.
* src/terminal.c (new_profile_response_callback):
Use actual name returned by terminal_profile_create() to avoid
crashing if profile with dup name is created.
2007-11-09 Takao Fujiwara <takao.fujiwara@sun.com>
Bug 471700 – gnome-terminal has an unlocalized license text.
* src/terminal-window.c: Add N_ macro in license.
2007-09-17 Behdad Esfahbod <behdad@gnome.org>
* NEWS:
* configure.in: Released 2.18.2
2007-08-07 Behdad Esfahbod <behdad@gnome.org>
* MAINTAINERS: Add Userid field.
2007-08-07 Behdad Esfahbod <behdad@gnome.org>
Bug 464410 – license confusion
"gnome-terminal states that it is GPL, and COPYING is the GPL,
but every single source file seems to have a LGPL header."
* src/eggaccelerators.c:
* src/eggcellrendererkeys.c:
* src/encoding.c:
* src/profile-editor.c:
* src/simple-x-font-selector.c:
* src/skey-popup.c:
* src/terminal-accels.c:
* src/terminal-notebook.c:
* src/terminal-profile.c:
* src/terminal-screen.c:
* src/terminal-widget-vte.c:
* src/terminal-window.c:
* src/terminal.c:
Replace LPGL header with GPL header.
Note that LPGL allows conversion to GPL, so this change is legal
anyway.
2007-08-02 Wouter Bolsterlee <wbolster@svn.gnome.org>
* ChangeLog: Fix encodings and formatting.
2007-07-30 Jan Arne Petersen <jpetersen@jpetersen.org>
* configure.in: Remove help/de/Makefile from AC_CONFIG_FILES due to
gnome-doc-utils migration.
2007-07-21 Wouter Bolsterlee <wbolster@svn.gnome.org>
* src/gnome-terminal.schemas.in:
* src/profile-editor.c:
* src/terminal-profile.c:
Use Tango terminal color scheme by default.
Fixes bug #458115.
2007-07-15 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal-window.c (about_callback): fixed the wrong mention
of Nautilus on the license notice.
2007-07-10 Changwoo Ryu <cwryu@debian.org>
* configure.in: Removed help/ko/Makefile from AC_CONFIG_FILES for
gnome-doc-utils migration.
2007-06-18 Behdad Esfahbod <behdad@gnome.org>
* NEWS:
* configure.in: Released 2.18.1
2007-06-14 Behdad Esfahbod <behdad@gnome.org>
Bug 353632 – crash on Terminal
* src/profile-editor.c (profile_editor_update_background_image):
Don't call gtk_file_chooser_set_filename() if file name is empty
string.
2007-05-28 Behdad Esfahbod <behdad@gnome.org>
Bug 428825 – Wrong copyright info in the about dialog
* src/terminal-window.c (about_callback): Update copyright info.
2007-05-16 Christian Persch <chpe@gnome.org>
* src/profile-editor.c: (create_preview_pixbuf): Don't crash when we
cannot determine the mime type of the profile image. Bug #434109.
2007-03-12 Vincent Untz <vuntz@gnome.org>
* configure.in: post-release bump to 2.18.1.
==================== 2.18.0 ====================
2007-03-12 Vincent Untz <vuntz@gnome.org>
* NEWS:
* configure.in: version 2.18.0
2007-03-12 Vincent Untz <vuntz@gnome.org>
* configure.in: remove creation of help/uk/Makefile
2007-03-09 Mariano Suárez-Alvarez <mariano@gnome.org>
* gnome-terminal.desktop.in.in: remove the non existente Application
category.
2007-02-27 Behdad Esfahbod <behdad@gnome.org>
Bug 412733 – fix build with C89 compilers
Patch from Jens Granseuer
* src/skey-popup.c (extract_hash_seq_and_seed): Fix C89 build.
2007-02-27 Mariano Suárez-Alvarez <mariano@gnome.org>
* NEWS: updated
* configure.in: release 2.17.92.
2007-02-21 Behdad Esfahbod <behdad@gnome.org>
Bug 410286 – discards qualifiers from pointer target type
Patch from Kouhei Sutou
* src/skey-popup.c (extract_hash_seq_and_seed):
* src/terminal-screen.c (cook_title):
s/gchar/const gchar/
2007-02-21 Behdad Esfahbod <behdad@gnome.org>
Bug 410281 – gcc: -lXrender -lX11 : linker input file unused because
linking not done
Patch from Kouhei Sutou
* configure.in: Move linker flags to the right place.
2007-02-11 Mariano Suárez-Alvarez <mariano@gnome.org>
* NEWS: updated.
* configure.in: bump vte requirement to 0.15.3 and release 2.17.91.
2007-02-11 Mariano Suárez-Alvarez <mariano@gnome.org>
* po/POTFILES.skip: list gnome-terminal.desktop.in to please intltool at distcheck
time.
2007-02-10 Mariano Suárez-Alvarez <mariano@gnome.org>
Bug 402796 – reordering tabs disable key bindings for 1 time
* src/terminal-window.c(notebook_tab_removed_callback): update the tab menuitems
sensitivities too when tabs are reordered.
2007-01-23 Mariano Suárez-Alvarez <mariano@gnome.org>
Bug 402051 – Memleak from callers of terminal_profile_get_list()
* src/terminal-window.c(fill_in_config_picker_submenu,
fill_in_new_term_submenu_real): free the list of profiles in all cases.
Patch from Chris Wilson.
2007-01-23 Mariano Suárez-Alvarez <mariano@gnome.org>
* HACKING: add a link to release instructions.
2007-01-22 Mariano Suárez-Alvarez <mariano@gnome.org>
* NEWS: updated
* configure.in: release 2.17.90.
2007-01-22 Behdad Esfahbod <behdad@gnome.org>
Bug 125364 – vte screens are black when initially shown
Patch from Mariano Suárez-Alvarez
* src/terminal-screen.c (terminal_screen_reread_profile),
(update_color_scheme): Update the color scheme earlier in the show.
2007-01-19 Mariano Suárez-Alvarez <mariano@gnome.org>
Bug 385519 – configure script doesn't recognize old GConf
* configure.in: require gconf 2.14.0
Also fix my email in the last few changlog entries...
2007-01-15 Christian Persch <chpe@svn.gnome.org>
* configure.in: Remove help/it/Makefile from configure to fix the
build.
2006-11-23 Mariano Suárez-Alvarez <mariano@gnome.org>
Bug 335946 – tab menu needs to be shortened
* src/terminal-window (title_changed_callback, reset_tab_menuitems):
Ellipsise the tab titles when putting them in the menubar menuitem.
Based on the patch attached on the bug by Diego Escalante Urrelo
2006-11-23 Mariano Suárez-Alvarez <mariano@gnome.org>
Bug 378243 – crash in Terminal: Copy item activated on a destroyed
window popup.
* src/terminal_screen.c (terminal_screen_class_init,
terminal_screen_unrealize): override GtkWidget:unrealize so we
destroy the popup upon unrealizing, just as GtkEntry, say, does.
2006-11-23 Mariano Suárez-Alvarez <mariano@gnome.org>
* configure.in: the last commit left behind one instance of
CFLAGS which should have been CPPFLAGS.
2006-11-23 Mariano Suárez-Alvarez <mariano@gnome.org>
Bug 362256 – configure kills CPPFLAGS set on configure command line
* configure.in: add TERM_CFLAGS to CPPFLAGS, not CFLAGS.
2006-11-23 Mariano Suárez-Alvarez <mariano@gnome.org>
* configure.in: use GNOME_COMPILE_WARNINGS instead of out own check.
2006-11-23 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
* src/terminal.c (terminal_app_new_terminal): put the focus on a new
screen when we create a tab.
2006-11-16 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
Bug 322709 – respect show-input-method-menu setting
Patch from Matthias Clasen.
* src/terminal-screen.c (popup_clipboard_request_callback):
Respect the show-input-method-menu setting.
2006-10-17 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
Bug 354234 – Don't ignore terminal default sizes, and copy zoom to
new terminals
* src/terminal-window.c (notebook_tab_added_callback): do not hardcode
the 80x24 size but use the default provided by vte (which could be
changed in vte's termcap) Also, move the copy-zoom-from-active-terminal
handling from new_tab_callback to here.
2006-10-17 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
Bug 338613 – "Detach Tab" menu item is missing a mnemonic
* src/terminal-window (terminal_window_init): add a mnemonic to the
Detach Tab menu option. Patch by Dennis Cranston.
2006-10-17 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
* src/terminal-window.c (confirm_close_window): be slightly less verbose
in the confirmation dialog. Induced by Wouter Bolsterlee's bug 340940.
2006-10-17 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
Bug 160455 – Change "system terminal font" to "system monospace font"
* src/gnome-terminal.glade2: s/terminal font/fixed width font/ in the
profile editor dialog, so that out language matches
gnome-font-properties'.
2006-10-17 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
Bug 79326 – When making things insensitive, doesn't catch their label
* src/profile-editor.c (profile_editor_update_sensitivity):
when changing the sensibility of a widget, do the same for its menmonic
label. Essentially the patch by Michael Terry.
2006-10-12 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
Bug 362159 – es doc to gnome-doc-utils
* configure.in: remove help/es/Makefile from AC_CONFIG_FILES,
because it is no longer there after the g-u-d-ization of help/es.
2006-10-12 Wouter Bolsterlee <wbolster@gnome.org>
* src/terminal-window.c (terminal_window_set_active),
(notebook_page_selected_callback):
Hopefully fix the annoying window resizing bug triggered
by switching between multiple tabs. Fixes bug #95316,
patch by Eric Anderson.
2006-10-12 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
Bug 360385 – Context menu has two uses for "c" key
* src/terminal-screen.c (popup_clipboard_request_callback): don't have
clashing shortcuts for Close and Copy when there is only one tab.
2006-10-12 Mariano Suárez-Alvarez <msuarezalvarez@arnet.com.ar>
Bug 358267 – set_palette() compares uninitialized memory
Bug 124417 – Use of uninitialized value of size 4
* src/terminal-profile.c: do not compare GdkColors using memcmp,
as the pixel thingie gets in the way. I officially owe Mark Schreiber
a beer.
2006-10-06 Wouter Bolsterlee <wbolster@gnome.org>
* src/terminal-window.c: (new_tab_callback):
Remember zoom setting for new tabs. Fixes bug #335200 .
2006-10-06 Wouter Bolsterlee <wbolster@gnome.org>
* src/profile-editor.c:
* src/terminal-profile.c:
* src/terminal-profile.h:
Include Tango color scheme. Fixes bug #356389.
2006-10-02 Guilherme de S. Pastore <gpastore@gnome.org>
* NEWS: updated.
* configure.in: release 2.16.1.
2006-10-02 Behdad Esfahbod <behdad@gnome.org>
Bug 342531 – --title option does nothing
Patch from Owen Swerkstrom
* src/terminal-screen.c (terminal_screen_init),
(terminal_screen_finalize, cook_title),
(terminal_screen_set_dynamic_icon_title),
(terminal_screen_set_title):
* src/terminal-screen.h:
* src/terminal.c (terminal_app_new_terminal): Honor --title.
2006-09-22 Guilherme de S. Pastore <gpastore@gnome.org>
Bug 353732 – patch from Mariano Suárez-Alvarez
* src/terminal-notebook.c: do not leak tooltips and recycle
GtkRcStyle.
2006-09-22 Guilherme de S. Pastore <gpastore@gnome.org>
Bug 353553 – list leak in notebook::sync_label
Patch from Paolo Borelli
* src/terminal-notebook.c (sync_label): free the results of
gtk_container_get_children.
2006-09-04 Behdad Esfahbod <behdad@gnome.org>
* NEWS: updated.
* configure.in: released 2.16.0.
2006-09-02 Behdad Esfahbod <behdad@gnome.org>
Bug 354056 – Build broken: missing help/fr/Makefile.am
* configure.in: Remove help/fr/Makefile and help/sv/Makefile
from output files as they are moved to gnome-doc-utils (geer)
* help/sv/Makefile.am: Remove this as it's not used anymore.
2006-08-31 Behdad Esfahbod <behdad@gnome.org>
Bug 351319 – crash on Terminal
Patch from Mariano Suárez-Alvarez
* src/terminal-window.c (terminal_window_destroy): Don't remove
screens, let the container take care of them.
2006-08-28 Behdad Esfahbod <behdad@gnome.org>
Part of Bug 352873 – crash in Terminal: Edit current profile aft...
Patch from Mariano Suárez-Alvarez
* src/profile-editor.c (background_image_changed): Return if filename
is NULL.
2006-08-26 Behdad Esfahbod <behdad@gnome.org>
Bug 353020 – Detaching a tab does not preserve the size
Patch from Mariano Suárez-Alvarez
* src/terminal-window.c (new_window): Preserve geometry.
2006-08-26 Behdad Esfahbod <behdad@gnome.org>
Bug 336943 – Critical warning and crash in gnome-terminal
Patch from Mariano Suárez-Alvarez
* src/terminal-window.c (fill_in_config_picker_submenu),
(fill_in_new_term_submenu_real), (fill_in_encoding_menu):
Use gtk_menu_item_remove_submenu() instead of passing NULL to
gtk_menuitem_set_submenu().
2006-08-15 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Fix intltool req.
2006-08-05 Bastien Nocera <hadess@hadess.net>
* src/terminal-window.c: (accel_event_key_match):
Only send Previous tab/Next tab key events to the terminal if there's
no tab, and not when we reach the boundary with multiple tabs,
and ignore NumLock as well (Closes: #138609)
2006-07-31 Behdad Esfahbod <behdad@gnome.org>
* NEWS: updated.
* configure.in: released 2.15.4.
2006-07-31 Behdad Esfahbod <behdad@gnome.org>
Bug 349459 – does not assert dependency on gdk 2.10
* configure.in: Require Gtk+ 2.10 as we use the new API for composite
detection.
2006-07-30 Behdad Esfahbod <behdad@gnome.org>
Bug 85926 – dnd'd filenames should be escaped
Patch from Thomas Folz-Donahue
* src/terminal-screen.c (drag_data_received): Quote filenames.
2006-07-24 Behdad Esfahbod <behdad@gnome.org>
* NEWS: updated.
* configure.in: released 2.15.3.
2006-07-24 Behdad Esfahbod <behdad@gnome.org>
Bug 324426 – Open/close tab adds row to terminal
Patch from Eric Anderson
* src/terminal-window.c (notebook_tab_removed_callback): Reset size
if only one tab remaining.
2006-07-24 Behdad Esfahbod <behdad@gnome.org>
Bug 336947 – [patch] Redundant vte_terminal_set_font_full() calls
Patch from Aivars Kalvans
* src/terminal-screen.c (style_set_callback),
(terminal_screen_reread_profile), (monospace_font_change_notify),
(terminal_screen_set_font), (terminal_screen_update_on_realize),
(terminal_screen_change_font), (terminal_screen_set_font_scale):
* src/terminal-screen.h:
* src/terminal.c (terminal_app_new_terminal):
AVoid redundant set_font_full and invalidate_all calls.
* configure.in: Require vte >= 0.13.4 that has the bits needed for
this change to work.
2006-07-10 Behdad Esfahbod <behdad@gnome.org>
* NEWS: updated.
* configure.in: released 2.15.2.
2006-07-10 Behdad Esfahbod <behdad@gnome.org>
Bug 345378 – real transparency
Patch from Kristian Høgsberg <krh redhat.com>
* src/terminal-screen.c (terminal_screen_reread_profile),
(profile_changed_callback), (terminal_screen_set_profile):
* src/terminal-screen.h:
* src/terminal-widget-vte.c
(terminal_widget_set_background_transparent),
(terminal_widget_set_background_darkness),
(terminal_widget_set_background_opacity):
* src/terminal-widget.h:
* src/terminal-window.c (initialize_alpha_mode),
(terminal_window_uses_argb_visual), (terminal_window_init):
* src/terminal-window.h:
* src/terminal.c (terminal_app_new_terminal):
Use real transparency when the X server supports it.
* configure.in: Require vte-0.13.3 that has the necessary bits
(vte_terminal_set_opacity)
2006-06-17 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal-window.c: applied patch to improve the
dialog to ask for confirmation when closing a window
with more than one tab open. Closes bug #345166.
2006-05-17 Behdad Esfahbod <behdad@gnome.org>
* NEWS: updated.
* configure.in: released 2.15.1.
* configure.in: Remove m4 macro dir directive.
2006-05-16 Guilherme de S. Pastore <gpastore@gnome.org>
* configure.in: bumped dependency on intltool to 0.35.
2006-05-14 Guilherme de S. Pastore <gpastore@gnome.org>
* NEWS: updated.
* configure.in: released 2.15.0.
2006-05-14 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal-screen.c: improved proxy settings exporting,
which now includes authentication. Closes bug #339134.
2006-05-07 Guilherme de S. Pastore <gpastore@gnome.org>
* configure.in: applied patch from Brian Cameron to allow
recognition of Xrender on Solaris. Closes bug #339979.
2006-04-29 Behdad Esfahbod <behdad@gnome.org>
* configure.in, po/LINGUAS: Use new intltool syntax.
(#337904)
2006-04-17 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Remove obsolete entry for no_NO
* po/no.po: And the translation.
2006-04-05 Tommi Vainikainen <thv@iki.fi>
* .cvsignore, Makefile.am, autogen.sh, configure.in,
m4/.cvsignore: Migrated to gnome-doc-utils. Autoconf+Automake
adjustments.
* acconfig.h: Removed in migration.
* po/.cvsignore, src/skey/.cvsignore: Added missing generated
files.
2006-04-02 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal-screen.c: include the final slash if there
is one on URL highlighting. Closes bug #329003.
2006-04-02 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal.c (terminal_app_get_clone_command): store
the full geometry (including window position) on session
save. Closes bug #336910.
2006-04-01 Behdad Esfahbod <behdad@gnome.org>
* src/terminal-window.c (terminal_window_set_size_force_grid):
Remove the old hack that was causing superfluous resize when a tab is
drag-n-dropped to a separate window. We'll see if regressions happen.
Closes bug #336325 (may open new ones ;).
2006-04-01 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal-window.c: applied patch to fix the close button
of the about dialog after changes in GTK+. Closes bug #335945.
* src/terminal-window.c: marked the license text for translation.
2006-03-26 Tommi Vainikainen <thv@iki.fi>
* configure.in (ALL_LINGUAS): Added Dzongkha (dz).
2006-03-20 Vladimer Sichinava <vlsichinava@gmail.com>
* configure.in: Added "ka" (Georgian) to ALL_LINGUAS
2006-03-12 Guilherme de S. Pastore <gpastore@gnome.org>
* NEWS: updated.
* configure.in: release 2.14.0.
2006-03-04 Guilherme de S. Pastore <gpastore@gnome.org>
* NEWS: updated.
* configure.in: release 2.13.93 so we get broader testing
for the latest changes.
2006-03-04 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal-window.c: applied patch from Tony Tsui to fix a
serious freeze when detaching a tab right after changing its
position. Closes bug #330246.
2006-03-04 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal.c: applied patch from jeff@ratsite.com to fix
a crash in case too many terminals were started too quickly.
Closes bug #318797.
2006-03-04 Guilherme de S. Pastore <gpastore@gnome.org>
* NEWS: updated.
* configure.in: release 2.13.92.
2006-03-03 Guilherme de S. Pastore <gpastore@gnome.org>
* configure.in: fix a build failure. Closes bug #333292.
2006-02-18 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal-window.c: made the licensing information not be
translatable on Danilo Šegan's request.
2006-02-17 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal-window.c: added licensing information to the about
dialog. Closes bug #330875.
2006-02-12 Guilherme de S. Pastore <gpastore@gnome.org>
* NEWS: updated.
* configure.in: 2.13.91!
2006-02-02 Guilherme de S. Pastore <gpastore@gnome.org>
* src/terminal-screen.c: removed an unused variable.
* src/terminal-screen.c: fix lack of items in the context menu
for highlighted URLs. Closes bug #329553.
2006-02-01 Guilherme de S. Pastore <gpastore@gnome.org>
* src/gnome-terminal.glade2: removed invisible_char, as it was set
to '*', which is the default, for no good reason. Bug #329294.
2006-01-30 Guilherme de S. Pastore <gpastore@gnome.org>
* NEWS: updated.