~ubuntu-branches/ubuntu/utopic/terminal.app/utopic-proposed

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
2012-04-03 Riccardo Mottola <rm@gnu.org>

	* TerminalView.m
	Fix GNU/HURD includes.

2012-03-28 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
	
	* TerminalView.m
	Fix warnings on 64Bit systems, cast from integer to pointer of different size

2012-03-27 Riccardo Mottola <rm@gnu.org>

	* TerminalView.m
	Fix OpenBSD includes.

2012-03-26 Riccardo Mottola <rm@gnu.org>

	* PreferencesWindowController.m
	Use NSUInteger as Index.

2012-03-26 Riccardo Mottola <rm@gnu.org>

	* PreferencesWindowController.[h,m]
	Clean up imports

2012-03-07 Riccardo Mottola <rm@gnu.org>

	* GNUmakefile:
	Use TOOL_LIBS instead of LDFLAGS to link the framework library.

2011-12-04 Riccardo Mottola <rm@gnu.org>

	* TerminalParser_Linux.m
	* TerminalViewPrefs.h
	* TerminalViewPrefs.m
	Add Alt is not Meta option, to enable the usage of AltGr, when left Alt is command.

2011-05-07 Riccardo Mottola <rm@gnu.org>

	* Terminal.tiff
	* cursor_filled.tiff
	* cursor_inverted.tiff
	* cursor_line.tiff
	* cursor_stroked.tiff
	Set resolution to 72 dpi screen.

2010-12-14 Riccardo Mottola

	* main.m: hide ordered out quit panel from windows menu

2010-05-14 04:37-EDT Gregory John Casamento <greg_casamento@yahoo.com>

	* TerminalView.m: Correct sign issues with some pointer casts.

2010-05-14 Riccardo Mottola <rmottola@users.sf.net>

	* ServicesPrefs.m:
	Added missing import
	* TerminalView.m: initialize to avoid warnings.

2010-03-26 Riccardo Mottola <rmottola@users.sf.net>

	* ServicesPrefs.m,
	TerminalParser_Linux.m,
	TerminalParser_LinuxPrefs.m,
	TerminalViewPrefs.m: updated imports

2010-01-16 Riccardo Mottola <rmottola@users.sf.net>

	* Italian.lproj/Localizable.strings,
	GNUMakefile: added italian translation, revised version
	of the draft provided by Guido Agostini

2009-12-24 Riccardo Mottola <rmottola@users.sf.net>

	* PreferencesWindowController.m : correct invocation signature

2009-10-24 Riccardo Mottola <rmottola@users.sf.net>

	* PreferencesWindowController.m : simplify methodSignatureForSelector
	according to David Chisnall

2009-10-20 Riccardo Mottola <rmottola@users.sf.net>

	* main.m : regenerate services plist on startup
	* TerminalViewPrefs.m : remove hack about return type no longer needed

2009-08-05 Richard Frith-Macdonald <rfm@gnu.org>
	* TerminalView.h
	* TerminalView.m
	* TerminalViewPrefs.h
	* TerminalViewPrefs.m
	Implementd Black on White text and its preference setting.

2009-05-27 Riccardo Mottola <rmottola@users.sf.net>

	* TerminalParser_Linux.m: imported a patch by Jeff Teunissen,
	Backbone: Terminal interpreted certain UTF-8 code sequences wrong,
	like e2 95 9b (U+255B, which the bug transforms into e2 95 94).
	It turns out that it's due to the Linux console emulation, which
	interprets the 0x9b character (CSI, which is ESC with the high order bit set) to begin a control command.  Change the terminal emulation to only
	switch into command scanning mode if we aren't in the middle of
	a multi-byte character (that is, if iconv says it's not done
	processing the current character 0x9b is just a byte to be consumed).
	This is the only 8-bit character that the console treats specially, so
	this should be a complete fix.

2009-05-15 17:35-EDT Gregory John Casamento <greg_casamento@yahoo.com>

	* GNUmakefile: Added plist to makefile.
	* TerminalInfo.plist: Updated information in plist.

2009-01-02 Riccardo Mottola <rmottola@users.sf.net>

	* TerminalView.m: OpenBSD portability

2009-01-01 Riccardo Mottola <rmottola@users.sf.net>

	* TerminalView.m: ForkPty and OpenPty replacements

2008-07-12 Riccardo Mottola <rmottola@users.sf.net>

	* TerminalView.m: Remove font metric hack for xlib and art backend
	(after fixes in backend, requires backend date 12 July 2008).
	Patch by Fred Kiefer <FredKiefer@gmx.de>