-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathChangeLog.old
3067 lines (1895 loc) · 113 KB
/
ChangeLog.old
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
------------------------------------------------------------------------
r823 | realh | 2010-08-15 21:15:43 +0100 (Sun, 15 Aug 2010) | 2 lines
Removed superfluous abort() declaration.
------------------------------------------------------------------------
r822 | realh | 2010-08-15 21:08:57 +0100 (Sun, 15 Aug 2010) | 2 lines
Force tab selection handler to be called on tabs in new windows.
------------------------------------------------------------------------
r821 | realh | 2010-08-15 20:27:16 +0100 (Sun, 15 Aug 2010) | 2 lines
Fixed issues dragging tabs to new windows.
------------------------------------------------------------------------
r820 | realh | 2010-08-15 17:16:56 +0100 (Sun, 15 Aug 2010) | 2 lines
Updated TODO.
------------------------------------------------------------------------
r817 | realh | 2010-08-15 16:42:24 +0100 (Sun, 15 Aug 2010) | 2 lines
Added TODO.
------------------------------------------------------------------------
r816 | realh | 2010-08-15 16:35:11 +0100 (Sun, 15 Aug 2010) | 2 lines
Initialise titles correctly on new windows for dragged out tabs.
------------------------------------------------------------------------
r815 | realh | 2010-08-15 16:11:30 +0100 (Sun, 15 Aug 2010) | 5 lines
Always cache/restore size when removing a tab.
There was a spurious resize even if the presence or not
of the tab bar was unchanged.
------------------------------------------------------------------------
r814 | realh | 2010-08-15 16:03:56 +0100 (Sun, 15 Aug 2010) | 2 lines
Changed wording of init_tabs profile widget label.
------------------------------------------------------------------------
r810 | realh | 2010-08-14 20:29:23 +0100 (Sat, 14 Aug 2010) | 2 lines
Updated Standards-Version.
------------------------------------------------------------------------
r805 | realh | 2010-08-13 17:08:15 +0100 (Fri, 13 Aug 2010) | 2 lines
Set geometry hints on new windows for dragged tabs.
------------------------------------------------------------------------
r804 | realh | 2010-08-13 17:03:44 +0100 (Fri, 13 Aug 2010) | 2 lines
"New Window" menu action sizes new window to match predecessor.
------------------------------------------------------------------------
r803 | realh | 2010-08-13 15:53:07 +0100 (Fri, 13 Aug 2010) | 2 lines
Reconnect window-state-event when tab moves to new window.
------------------------------------------------------------------------
r802 | realh | 2010-08-13 15:27:32 +0100 (Fri, 13 Aug 2010) | 6 lines
New windows for dragged tabs inherit settings correctly:
As reported at
<https://sourceforge.net/tracker/?func=detail&aid=2996296&group_id=124080&atid=698428>
the show menu bar and tab bar options were not correctly inherited.
------------------------------------------------------------------------
r801 | realh | 2010-08-11 23:41:35 +0100 (Wed, 11 Aug 2010) | 2 lines
Select "current" tab when restoring session.
------------------------------------------------------------------------
r800 | realh | 2010-08-11 19:02:53 +0100 (Wed, 11 Aug 2010) | 2 lines
Restored $(HELPIMGS) to EXTRA_DIST.
------------------------------------------------------------------------
r799 | realh | 2010-08-11 18:42:58 +0100 (Wed, 11 Aug 2010) | 2 lines
dch.
------------------------------------------------------------------------
r798 | realh | 2010-08-11 18:32:34 +0100 (Wed, 11 Aug 2010) | 2 lines
Resize window after font/zoom changes.
------------------------------------------------------------------------
r797 | realh | 2010-08-11 16:20:28 +0100 (Wed, 11 Aug 2010) | 2 lines
New terminal size-preserving code seems OK so far.
------------------------------------------------------------------------
r796 | realh | 2010-08-11 01:26:21 +0100 (Wed, 11 Aug 2010) | 5 lines
Major rewrite of sizing code, still needs tweaking:
Not restoring cached size when ntabs reduces to 1
and tab bar is hidden.
------------------------------------------------------------------------
r795 | realh | 2010-08-10 18:19:22 +0100 (Tue, 10 Aug 2010) | 2 lines
Select all tabs in new windows to ensure they start command.
------------------------------------------------------------------------
r794 | realh | 2010-08-10 15:28:08 +0100 (Tue, 10 Aug 2010) | 2 lines
Use translatable "ROXTerm" instead of "roxterm" as default tab name.
------------------------------------------------------------------------
r793 | realh | 2010-08-10 15:26:32 +0100 (Tue, 10 Aug 2010) | 2 lines
Initialise "Number of initial tabs" option in profile editor.
------------------------------------------------------------------------
r792 | realh | 2010-08-09 17:04:41 +0100 (Mon, 09 Aug 2010) | 2 lines
Use docdir and htmldir correctly.
------------------------------------------------------------------------
r791 | realh | 2010-07-23 13:53:37 +0100 (Fri, 23 Jul 2010) | 2 lines
Updated Standards-Version.
------------------------------------------------------------------------
r790 | realh | 2010-07-23 13:49:50 +0100 (Fri, 23 Jul 2010) | 4 lines
Added --disable-sm runtime option.
This is a workaround for Debian bug #589871.
------------------------------------------------------------------------
r789 | realh | 2010-07-22 18:53:48 +0100 (Thu, 22 Jul 2010) | 2 lines
Updated docs with details of Ubuntu PPA.
------------------------------------------------------------------------
r788 | realh | 2010-07-22 18:09:42 +0100 (Thu, 22 Jul 2010) | 2 lines
Fixed typo in INSTALL.Debian.
------------------------------------------------------------------------
r787 | realh | 2010-07-22 17:55:46 +0100 (Thu, 22 Jul 2010) | 2 lines
Correct setting of rtdbus_ok flag.
------------------------------------------------------------------------
r786 | realh | 2010-07-22 17:48:57 +0100 (Thu, 22 Jul 2010) | 2 lines
Avoid NULL colour for background tint.
------------------------------------------------------------------------
r782 | realh | 2010-06-19 19:58:44 +0100 (Sat, 19 Jun 2010) | 4 lines
Version 1.18.4.
builddeb passes args to debuild.
------------------------------------------------------------------------
r781 | realh | 2010-06-17 22:46:11 +0100 (Thu, 17 Jun 2010) | 2 lines
Reverted to override for dh_auto_build --parallel.
------------------------------------------------------------------------
r780 | realh | 2010-06-17 22:42:04 +0100 (Thu, 17 Jun 2010) | 2 lines
Retry using DH_OPTIONS for --parallel.
------------------------------------------------------------------------
r779 | realh | 2010-06-17 22:34:20 +0100 (Thu, 17 Jun 2010) | 2 lines
Override dh_auto_build to support --parallel.
------------------------------------------------------------------------
r778 | realh | 2010-06-17 22:05:29 +0100 (Thu, 17 Jun 2010) | 2 lines
Don't install README.
------------------------------------------------------------------------
r777 | realh | 2010-06-17 21:55:35 +0100 (Thu, 17 Jun 2010) | 2 lines
Fixes for Debian install rules.
------------------------------------------------------------------------
r776 | realh | 2010-06-17 21:27:30 +0100 (Thu, 17 Jun 2010) | 2 lines
Use dh 7 (initial try).
------------------------------------------------------------------------
r775 | realh | 2010-06-17 19:43:16 +0100 (Thu, 17 Jun 2010) | 2 lines
Try to avoid chain of error messages if DBUS isn't working.
------------------------------------------------------------------------
r774 | realh | 2010-06-17 19:13:20 +0100 (Thu, 17 Jun 2010) | 4 lines
Added Leandro Lucarella's patch:
Makes TERM and COLORTERM env vars configurable.
------------------------------------------------------------------------
r770 | realh | 2010-05-23 13:23:30 +0100 (Sun, 23 May 2010) | 2 lines
Removed blank line.
------------------------------------------------------------------------
r766 | realh | 2010-05-23 13:18:36 +0100 (Sun, 23 May 2010) | 2 lines
Release 1.18.3.
------------------------------------------------------------------------
r765 | realh | 2010-05-21 18:10:45 +0100 (Fri, 21 May 2010) | 2 lines
Updated manual ref editing keyboard shortcuts.
------------------------------------------------------------------------
r764 | realh | 2010-05-19 22:50:54 +0100 (Wed, 19 May 2010) | 2 lines
Use inner-border vte style property if available.
------------------------------------------------------------------------
r763 | realh | 2010-05-19 21:05:15 +0100 (Wed, 19 May 2010) | 2 lines
Disconnect window-state-changed handler for deleted roxterms.
------------------------------------------------------------------------
r762 | realh | 2010-05-16 19:34:52 +0100 (Sun, 16 May 2010) | 2 lines
Use xsltproc --novalid.
------------------------------------------------------------------------
r761 | realh | 2010-05-16 19:20:59 +0100 (Sun, 16 May 2010) | 2 lines
Apparently docbook-xml is not necessary.
------------------------------------------------------------------------
r760 | realh | 2010-05-16 18:06:20 +0100 (Sun, 16 May 2010) | 4 lines
Use debuild -uc -us if builder's $EMAIL is not maintainer's.
Also more improvements to docs.
------------------------------------------------------------------------
r759 | realh | 2010-05-16 17:57:32 +0100 (Sun, 16 May 2010) | 2 lines
Improved instructions for building debs.
------------------------------------------------------------------------
r758 | realh | 2010-05-16 17:42:09 +0100 (Sun, 16 May 2010) | 2 lines
Added override for GNOME Default Applications.
------------------------------------------------------------------------
r757 | realh | 2010-05-16 16:22:49 +0100 (Sun, 16 May 2010) | 2 lines
Allow use of xsltproc instead of xmlto.
------------------------------------------------------------------------
r756 | realh | 2010-05-16 15:50:30 +0100 (Sun, 16 May 2010) | 2 lines
ulimit -c unlimited when using --valgrind.
------------------------------------------------------------------------
r755 | realh | 2010-05-14 15:51:27 +0100 (Fri, 14 May 2010) | 2 lines
bootstrap.sh calls svn update first.
------------------------------------------------------------------------
r754 | realh | 2010-05-14 15:27:01 +0100 (Fri, 14 May 2010) | 2 lines
Tested and corrected make deb on release tarball.
------------------------------------------------------------------------
r753 | realh | 2010-05-14 15:13:47 +0100 (Fri, 14 May 2010) | 2 lines
Temporarily changed version number for testing.
------------------------------------------------------------------------
r752 | realh | 2010-05-14 15:11:51 +0100 (Fri, 14 May 2010) | 2 lines
Changed way version is generated and added made deb target.
------------------------------------------------------------------------
r751 | realh | 2010-05-11 21:03:41 +0100 (Tue, 11 May 2010) | 2 lines
Got rid of debtag script.
------------------------------------------------------------------------
r750 | realh | 2010-05-11 20:06:49 +0100 (Tue, 11 May 2010) | 2 lines
Version sync.
------------------------------------------------------------------------
r749 | realh | 2010-05-11 20:05:24 +0100 (Tue, 11 May 2010) | 2 lines
More updates for manual.
------------------------------------------------------------------------
r748 | realh | 2010-05-11 19:59:28 +0100 (Tue, 11 May 2010) | 2 lines
Added instructions for building debs.
------------------------------------------------------------------------
r747 | realh | 2010-05-11 15:40:35 +0100 (Tue, 11 May 2010) | 2 lines
Initialise current_zoom_factor.
------------------------------------------------------------------------
r746 | realh | 2010-05-11 15:26:06 +0100 (Tue, 11 May 2010) | 2 lines
Use gtk_window_present when --tab is used.
------------------------------------------------------------------------
r745 | realh | 2010-05-11 14:23:59 +0100 (Tue, 11 May 2010) | 2 lines
Update window title even if it hasn't been set by vte.
------------------------------------------------------------------------
r741 | realh | 2010-05-05 20:30:15 +0100 (Wed, 05 May 2010) | 2 lines
Release 1.18.2-1.
------------------------------------------------------------------------
r740 | realh | 2010-05-05 20:24:35 +0100 (Wed, 05 May 2010) | 2 lines
Show menubar option is inherited from other windows.
------------------------------------------------------------------------
r739 | realh | 2010-05-05 19:00:16 +0100 (Wed, 05 May 2010) | 2 lines
Fixed crash when using --tab with no existing windows.
------------------------------------------------------------------------
r738 | realh | 2010-03-23 18:57:03 +0000 (Tue, 23 Mar 2010) | 2 lines
Updated upload script.
------------------------------------------------------------------------
r734 | realh | 2010-03-23 18:22:21 +0000 (Tue, 23 Mar 2010) | 2 lines
Release 1.18.1.
------------------------------------------------------------------------
r733 | realh | 2010-03-23 18:13:50 +0000 (Tue, 23 Mar 2010) | 2 lines
Don't ellipsize single tabs.
------------------------------------------------------------------------
r732 | realh | 2010-03-22 23:01:39 +0000 (Mon, 22 Mar 2010) | 2 lines
Fixed crash when command fails.
------------------------------------------------------------------------
r731 | realh | 2010-03-18 18:46:27 +0000 (Thu, 18 Mar 2010) | 2 lines
Single tabs no longer fill available width.
------------------------------------------------------------------------
r730 | realh | 2010-03-13 13:17:33 +0000 (Sat, 13 Mar 2010) | 2 lines
Moved Always show tabs option to Appearance and made it on by default.
------------------------------------------------------------------------
r729 | realh | 2010-03-13 13:08:49 +0000 (Sat, 13 Mar 2010) | 2 lines
Use title_template for icon name.
------------------------------------------------------------------------
r728 | realh | 2010-03-04 23:03:57 +0000 (Thu, 04 Mar 2010) | 2 lines
More robust font handling.
------------------------------------------------------------------------
r727 | realh | 2010-03-04 22:45:40 +0000 (Thu, 04 Mar 2010) | 1 line
------------------------------------------------------------------------
r726 | realh | 2010-03-04 22:44:42 +0000 (Thu, 04 Mar 2010) | 2 lines
Changed ignore_size_allocate and tab ellipsis setting.
------------------------------------------------------------------------
r725 | realh | 2010-03-04 22:11:23 +0000 (Thu, 04 Mar 2010) | 4 lines
Tried to debug size allocation.
Also fixed AppRun --debug.
------------------------------------------------------------------------
r724 | realh | 2010-03-04 18:55:28 +0000 (Thu, 04 Mar 2010) | 2 lines
Make vte icon title change set icon title, not window title.
------------------------------------------------------------------------
r723 | realh | 2010-03-03 14:35:56 +0000 (Wed, 03 Mar 2010) | 2 lines
Prevent zoom being applied repeatedly to new tabs.
------------------------------------------------------------------------
r722 | realh | 2010-03-02 14:22:36 +0000 (Tue, 02 Mar 2010) | 2 lines
Updated Vcs control fields.
------------------------------------------------------------------------
r721 | realh | 2010-03-01 19:06:54 +0000 (Mon, 01 Mar 2010) | 2 lines
Revert to svn log format for ChangeLog.
------------------------------------------------------------------------
r720 | realh | 2010-03-01 19:04:37 +0000 (Mon, 01 Mar 2010) | 2 lines
Upgraded to debian source format 3.0.
------------------------------------------------------------------------
r719 | realh | 2010-02-28 19:59:04 +0000 (Sun, 28 Feb 2010) | 2 lines
Changed some wordings for clarity & consistency.
------------------------------------------------------------------------
r718 | realh | 2010-02-28 19:57:31 +0000 (Sun, 28 Feb 2010) | 2 lines
Recreated translations from scratch.
------------------------------------------------------------------------
r717 | realh | 2010-02-28 16:18:49 +0000 (Sun, 28 Feb 2010) | 2 lines
Merged in debian subdirectory.
------------------------------------------------------------------------
r715 | realh | 2010-02-28 14:33:19 +0000 (Sun, 28 Feb 2010) | 2 lines
Handle ICCM icon name separately from window title.
------------------------------------------------------------------------
r713 | realh | 2010-02-27 13:09:28 +0000 (Sat, 27 Feb 2010) | 6 lines
Changes to window roles:
* Add random number in case pid gets reused in new session.
* Don't set new role before restoring from session.
------------------------------------------------------------------------
r710 | realh | 2010-02-27 00:10:57 +0000 (Sat, 27 Feb 2010) | 2 lines
Use SM property names correctly.
------------------------------------------------------------------------
r709 | realh | 2010-02-26 20:19:35 +0000 (Fri, 26 Feb 2010) | 4 lines
Improved session property memory management.
Not that it matters, seeing as SM doesn't work as documented.
------------------------------------------------------------------------
r706 | realh | 2010-02-26 18:34:22 +0000 (Fri, 26 Feb 2010) | 4 lines
Fixed setting of session properties.
Also add svn revision to non-release version strings.
------------------------------------------------------------------------
r704 | realh | 2010-02-25 19:58:22 +0000 (Thu, 25 Feb 2010) | 2 lines
Restore tab titles with session.
------------------------------------------------------------------------
r701 | realh | 2010-02-24 20:27:48 +0000 (Wed, 24 Feb 2010) | 2 lines
Session management is provisionally complete.
------------------------------------------------------------------------
r699 | realh | 2010-02-24 00:23:57 +0000 (Wed, 24 Feb 2010) | 2 lines
Well on way to working session restore :-).
------------------------------------------------------------------------
r697 | realh | 2010-02-21 23:11:47 +0000 (Sun, 21 Feb 2010) | 5 lines
Session management is (possibly) complete...
Some changes to how profiles, fonts, sizes etc interact.
Use cursor-moved signal for fewer bogus status notifications.
------------------------------------------------------------------------
r696 | realh | 2010-02-21 20:31:19 +0000 (Sun, 21 Feb 2010) | 5 lines
Fixed profile editor bg image preview management.
Also fixed fatal bug introduced into roxterm_launch, using
roxterm_profiles before it was initialised.
------------------------------------------------------------------------
r694 | realh | 2010-02-21 17:57:33 +0000 (Sun, 21 Feb 2010) | 2 lines
Bumped version.
------------------------------------------------------------------------
r692 | realh | 2010-02-21 17:43:26 +0000 (Sun, 21 Feb 2010) | 2 lines
Debug messages in contents-changed handler.
------------------------------------------------------------------------
r691 | realh | 2010-02-17 00:32:31 +0000 (Wed, 17 Feb 2010) | 5 lines
Added roxterm_data_new.
Separates a lot of useful stuff from roxterm_launch for use with
session loading.
------------------------------------------------------------------------
r690 | realh | 2010-02-16 23:43:58 +0000 (Tue, 16 Feb 2010) | 2 lines
Set up blank window for reloaded session.
------------------------------------------------------------------------
r689 | realh | 2010-02-16 19:51:57 +0000 (Tue, 16 Feb 2010) | 2 lines
Changes to support further session loading code.
------------------------------------------------------------------------
r688 | realh | 2010-02-16 18:38:28 +0000 (Tue, 16 Feb 2010) | 2 lines
More framework for loading a session.
------------------------------------------------------------------------
r687 | realh | 2010-02-16 16:38:32 +0000 (Tue, 16 Feb 2010) | 2 lines
Added a little more session parsing code.
------------------------------------------------------------------------
r686 | realh | 2010-02-14 21:43:54 +0000 (Sun, 14 Feb 2010) | 2 lines
Started writing session XML parser.
------------------------------------------------------------------------
r685 | realh | 2010-02-12 19:26:31 +0000 (Fri, 12 Feb 2010) | 2 lines
Added --restart-/clone-session-id options (not yet implemented).
------------------------------------------------------------------------
r684 | realh | 2010-02-12 17:11:26 +0000 (Fri, 12 Feb 2010) | 2 lines
Set SM properties when saving session.
------------------------------------------------------------------------
r683 | realh | 2010-02-11 22:32:58 +0000 (Thu, 11 Feb 2010) | 2 lines
Save each tab's cwd in session.
------------------------------------------------------------------------
r682 | realh | 2010-02-11 22:29:50 +0000 (Thu, 11 Feb 2010) | 2 lines
Added "Always show tab bar" menu action.
------------------------------------------------------------------------
r681 | realh | 2010-02-11 19:55:48 +0000 (Thu, 11 Feb 2010) | 2 lines
Partially implemented session saving.
------------------------------------------------------------------------
r680 | realh | 2010-02-10 20:37:55 +0000 (Wed, 10 Feb 2010) | 2 lines
Ignore spurious "content-changed" signal when adding new tab.
------------------------------------------------------------------------
r677 | realh | 2010-02-10 18:50:34 +0000 (Wed, 10 Feb 2010) | 2 lines
Added "Restart Command" menu action (#2810001).
------------------------------------------------------------------------
r676 | realh | 2010-02-10 16:55:48 +0000 (Wed, 10 Feb 2010) | 5 lines
Close menutree etc when closing terminal.
Otherwise we could get events for terminals after they'd been
destroyed, causing a crash.
------------------------------------------------------------------------
r675 | realh | 2010-02-10 15:26:08 +0000 (Wed, 10 Feb 2010) | 2 lines
Use --without-sm instead of --disable-session-management.
------------------------------------------------------------------------
r674 | realh | 2010-02-10 00:33:56 +0000 (Wed, 10 Feb 2010) | 2 lines
Added configure tests for session management.
------------------------------------------------------------------------
r673 | realh | 2010-02-09 19:31:40 +0000 (Tue, 09 Feb 2010) | 5 lines
Updated docs: roxterm is bloated!
Also forgot to mention before that #2942755 can be considered
addressed now.
------------------------------------------------------------------------
r672 | realh | 2010-02-09 19:21:48 +0000 (Tue, 09 Feb 2010) | 2 lines
Updated translations and usage summary.
------------------------------------------------------------------------
r671 | realh | 2010-02-09 19:13:18 +0000 (Tue, 09 Feb 2010) | 2 lines
Implemented fullscreen and maximise options.
------------------------------------------------------------------------
r670 | realh | 2010-02-09 15:33:07 +0000 (Tue, 09 Feb 2010) | 2 lines
Updated/corrected translations.
------------------------------------------------------------------------
r669 | realh | 2010-02-09 01:07:28 +0000 (Tue, 09 Feb 2010) | 4 lines
Use U for Full Screen mnemonic.
F clashed with Font.
------------------------------------------------------------------------
r668 | realh | 2010-02-09 01:00:40 +0000 (Tue, 09 Feb 2010) | 2 lines
Use svn2cl for ChangeLog.
------------------------------------------------------------------------
r667 | realh | 2010-02-09 00:52:19 +0000 (Tue, 09 Feb 2010) | 2 lines
Removed spurious extra "New Tab" menu item.
------------------------------------------------------------------------
r666 | realh | 2010-02-08 22:39:22 +0000 (Mon, 08 Feb 2010) | 6 lines
Redesigned profile editor.
Maximise and full screen options made "General" page too big
so I added a new "Appearance" page, which meant there were too
many tabs so I used the list view model instead.
------------------------------------------------------------------------
r664 | realh | 2010-02-07 18:01:46 +0000 (Sun, 07 Feb 2010) | 2 lines
Added New Window/Tab With Profile menu items.
------------------------------------------------------------------------
r662 | realh | 2010-02-05 22:10:30 +0000 (Fri, 05 Feb 2010) | 2 lines
Support ssh options (#2810009).
------------------------------------------------------------------------
r659 | realh | 2010-02-05 21:11:50 +0000 (Fri, 05 Feb 2010) | 2 lines
Don't shade "Close Tab" menu item (#2944890).
------------------------------------------------------------------------
r658 | realh | 2010-02-05 20:27:54 +0000 (Fri, 05 Feb 2010) | 4 lines
Added ssh options to profilegui:
Still needs to be implemented in roxterm.c.
------------------------------------------------------------------------
r657 | realh | 2010-02-04 19:30:13 +0000 (Thu, 04 Feb 2010) | 2 lines
Make tab border smaller to compensate for bigger buttons.
------------------------------------------------------------------------
r654 | realh | 2010-02-04 18:54:12 +0000 (Thu, 04 Feb 2010) | 2 lines
Version bump.
------------------------------------------------------------------------
r653 | realh | 2010-02-04 18:52:39 +0000 (Thu, 04 Feb 2010) | 2 lines
Added option to show status in tab close buttons.
------------------------------------------------------------------------
r652 | realh | 2010-02-04 16:29:30 +0000 (Thu, 04 Feb 2010) | 2 lines
Quieter error handling for background pixbuf.
------------------------------------------------------------------------
r651 | realh | 2010-02-04 15:12:50 +0000 (Thu, 04 Feb 2010) | 2 lines
Fixed --show-/--hide-menubar options (#2942481).
------------------------------------------------------------------------
r650 | realh | 2010-01-14 23:25:32 +0000 (Thu, 14 Jan 2010) | 4 lines
Rearranged Command tab in profile.
Was going to add Directory option but changed my mind.
------------------------------------------------------------------------
r649 | realh | 2010-01-14 20:40:57 +0000 (Thu, 14 Jan 2010) | 2 lines
Fixed symbolic link hooks in AppRun.
------------------------------------------------------------------------
r648 | realh | 2010-01-14 20:38:32 +0000 (Thu, 14 Jan 2010) | 2 lines
Beep sets window urgency hint on unfocused windows.
------------------------------------------------------------------------
r647 | realh | 2010-01-14 19:48:48 +0000 (Thu, 14 Jan 2010) | 2 lines
Moved some standard files from Help to TLD.
------------------------------------------------------------------------
r642 | realh | 2010-01-02 18:23:11 +0000 (Sat, 02 Jan 2010) | 2 lines
Release 1.17.1.
------------------------------------------------------------------------
r640 | realh | 2009-12-30 23:12:21 +0000 (Wed, 30 Dec 2009) | 2 lines
Prevent tabs from losing close button when moving window.
------------------------------------------------------------------------
r639 | realh | 2009-12-30 22:47:23 +0000 (Wed, 30 Dec 2009) | 4 lines
Added always_show_tabs option.
Also removed some old debugging messages.
------------------------------------------------------------------------
r633 | realh | 2009-12-04 20:33:49 +0000 (Fri, 04 Dec 2009) | 2 lines
Close new failed terminal immediately.
------------------------------------------------------------------------
r632 | realh | 2009-12-04 20:20:38 +0000 (Fri, 04 Dec 2009) | 4 lines
Version 1.16.3.
Send DBUS reply before warning dialog etc.
------------------------------------------------------------------------
r631 | realh | 2009-12-04 19:27:42 +0000 (Fri, 04 Dec 2009) | 5 lines
Version 1.16.3.
run_via_dbus() waits for reply so it can indicate error to caller
<https://sourceforge.net/tracker/?func=detail&aid=2809991&group_id=124080&atid=698428>
------------------------------------------------------------------------
r627 | realh | 2009-12-04 16:45:17 +0000 (Fri, 04 Dec 2009) | 5 lines
Version 1.16.3.
Use PATH when launching browsers etc.
Replaced bootstrap.sh with autotools-dev's example autogen.sh.
------------------------------------------------------------------------
r619 | realh | 2009-11-27 23:09:18 +0000 (Fri, 27 Nov 2009) | 4 lines
Version 1.16.2.
Fixed man pages (DocBook XML source).
------------------------------------------------------------------------
r615 | realh | 2009-11-27 17:15:40 +0000 (Fri, 27 Nov 2009) | 4 lines
Release 1.16.1.
Makefile.am failed to include roxterm.xml in make dist.
------------------------------------------------------------------------
r608 | realh | 2009-11-27 14:33:01 +0000 (Fri, 27 Nov 2009) | 4 lines
Release 1.16.1.
(Fixed check for default colour scheme).
------------------------------------------------------------------------
r607 | realh | 2009-11-26 23:19:26 +0000 (Thu, 26 Nov 2009) | 2 lines
Default colour scheme is now "GTK".
------------------------------------------------------------------------
r606 | realh | 2009-11-26 22:20:13 +0000 (Thu, 26 Nov 2009) | 2 lines
Added support for GNOME default applications.
------------------------------------------------------------------------
r605 | realh | 2009-11-26 19:13:14 +0000 (Thu, 26 Nov 2009) | 2 lines
Updated configure.ac to get rid of warnings.
------------------------------------------------------------------------
r604 | realh | 2009-11-26 19:05:25 +0000 (Thu, 26 Nov 2009) | 4 lines
Renamed man page XML source files to ....1.xml.
This to avoid clash with roxterm.xml for GNOME preferred app.
------------------------------------------------------------------------
r603 | realh | 2009-11-26 18:56:11 +0000 (Thu, 26 Nov 2009) | 4 lines
Added ROXTERM_PID and ROXTERM_NUM environment variables.
Based on Chris Croughton's patch/request #2846976.
------------------------------------------------------------------------
r601 | realh | 2009-10-09 14:45:24 +0100 (Fri, 09 Oct 2009) | 4 lines
Applied patch from bug #2875322.
Use LIBS instead of LD_FLAGS for library tests.
------------------------------------------------------------------------
r600 | realh | 2009-09-30 17:57:50 +0100 (Wed, 30 Sep 2009) | 2 lines
Extended display handling to other dialogs etc.
------------------------------------------------------------------------
r599 | realh | 2009-09-28 14:45:01 +0100 (Mon, 28 Sep 2009) | 2 lines
Put display functions in a separate file.
------------------------------------------------------------------------
r598 | realh | 2009-09-28 14:31:53 +0100 (Mon, 28 Sep 2009) | 2 lines
Popup menus have same screen as terminal.
------------------------------------------------------------------------
r597 | realh | 2009-09-26 21:10:13 +0100 (Sat, 26 Sep 2009) | 5 lines
Changed way displays/screens are obtained.
First attempt was obviously broken so do it gnome-terminal's way,
although it could leak GdkScreen/GdkDisplay objects.
------------------------------------------------------------------------
r596 | realh | 2009-09-25 21:58:48 +0100 (Fri, 25 Sep 2009) | 2 lines
Use g_object_[sg]et_data instead of g_object_[sg]et on displays.
------------------------------------------------------------------------
r595 | realh | 2009-09-25 21:44:59 +0100 (Fri, 25 Sep 2009) | 2 lines
Use GObject ref counting as well as own for displays.
------------------------------------------------------------------------
r594 | realh | 2009-09-25 21:21:53 +0100 (Fri, 25 Sep 2009) | 5 lines
Added proper support for --display:
Untested, and still needs fixing for spwaning roxterm-config
and sundry dialog boxes.
------------------------------------------------------------------------
r593 | realh | 2009-09-25 15:36:36 +0100 (Fri, 25 Sep 2009) | 2 lines
Tab close buttons are optional.
------------------------------------------------------------------------
r592 | realh | 2009-09-24 21:00:29 +0100 (Thu, 24 Sep 2009) | 2 lines
Use xmlto to build man pages.
------------------------------------------------------------------------
r591 | realh | 2009-09-24 20:58:25 +0100 (Thu, 24 Sep 2009) | 2 lines
Made vboxes vertical in glade.
------------------------------------------------------------------------
r590 | realh | 2009-09-20 17:27:29 +0100 (Sun, 20 Sep 2009) | 2 lines
Fixed check for manpages XSL file.
------------------------------------------------------------------------
r589 | realh | 2009-09-20 16:18:50 +0100 (Sun, 20 Sep 2009) | 2 lines
Added update-locales to dist tarballs.
------------------------------------------------------------------------
r582 | realh | 2009-07-05 00:57:18 +0100 (Sun, 05 Jul 2009) | 4 lines
Release 1.15.2
More generated files are removed by make distclean.
------------------------------------------------------------------------
r581 | realh | 2009-07-05 00:23:20 +0100 (Sun, 05 Jul 2009) | 2 lines
Version 1.15.2.
------------------------------------------------------------------------
r580 | realh | 2009-07-05 00:15:05 +0100 (Sun, 05 Jul 2009) | 5 lines
Updated docs and desktop file:
Updated svn URL in manual.
Removed deprecated Encoding field from desktop file.
------------------------------------------------------------------------
r577 | realh | 2009-07-04 19:07:12 +0100 (Sat, 04 Jul 2009) | 2 lines
Replaced debian/svntag with debtag.
------------------------------------------------------------------------
r573 | realh | 2009-07-03 13:13:39 +0100 (Fri, 03 Jul 2009) | 4 lines
Release 1.15.1.
Added svn update to dist hook.
------------------------------------------------------------------------
r572 | realh | 2009-07-03 13:11:42 +0100 (Fri, 03 Jul 2009) | 2 lines
Version 1.15.1.
------------------------------------------------------------------------
r571 | realh | 2009-07-02 22:51:49 +0100 (Thu, 02 Jul 2009) | 2 lines
Added Tango to Makefile.am.
------------------------------------------------------------------------
r570 | realh | 2009-07-02 22:48:17 +0100 (Thu, 02 Jul 2009) | 4 lines
Added Tango colour scheme.
Thanks to Trustin Lee for supplying it.
------------------------------------------------------------------------
r569 | realh | 2009-07-02 22:33:48 +0100 (Thu, 02 Jul 2009) | 2 lines
Added columns and rows labels to profile editor.
------------------------------------------------------------------------
r568 | realh | 2009-07-02 22:25:10 +0100 (Thu, 02 Jul 2009) | 2 lines
Multiple tabs in one window may now have different profiles.
------------------------------------------------------------------------
r567 | realh | 2009-06-28 21:17:11 +0100 (Sun, 28 Jun 2009) | 2 lines
Added "Ask User" option for child exit action.
------------------------------------------------------------------------
r566 | realh | 2009-06-26 20:56:08 +0100 (Fri, 26 Jun 2009) | 2 lines
Added tab-name CLI option.
------------------------------------------------------------------------
r565 | realh | 2009-06-26 00:39:23 +0100 (Fri, 26 Jun 2009) | 2 lines
Fixed typo in comment.
------------------------------------------------------------------------
r564 | realh | 2009-06-25 22:01:51 +0100 (Thu, 25 Jun 2009) | 2 lines
Added bell_highlights_tab feature.
------------------------------------------------------------------------
r563 | realh | 2009-06-25 15:08:30 +0100 (Thu, 25 Jun 2009) | 2 lines
Removed futile attempt to fix #2797130.
------------------------------------------------------------------------
r561 | realh | 2009-06-25 14:56:28 +0100 (Thu, 25 Jun 2009) | 2 lines
Added cursor_shape option.
------------------------------------------------------------------------
r559 | realh | 2009-06-24 20:04:52 +0100 (Wed, 24 Jun 2009) | 2 lines
Documented use of bootstrap.sh.
------------------------------------------------------------------------
r558 | realh | 2009-06-24 20:02:21 +0100 (Wed, 24 Jun 2009) | 2 lines
Show error message if child command fails to run.
------------------------------------------------------------------------
r557 | realh | 2009-06-23 20:52:01 +0100 (Tue, 23 Jun 2009) | 4 lines
Better handling of default colours.
Also fixed roxterm_force_redraw().
------------------------------------------------------------------------
r556 | realh | 2009-06-23 18:59:37 +0100 (Tue, 23 Jun 2009) | 4 lines
Debugged recent changes.
Also removed "emulation" option.
------------------------------------------------------------------------
r555 | realh | 2009-06-23 13:12:13 +0100 (Tue, 23 Jun 2009) | 2 lines
Use a shorter popup menu when menu bar is visible (untested).
------------------------------------------------------------------------
r554 | realh | 2009-06-18 17:24:06 +0100 (Thu, 18 Jun 2009) | 2 lines