summary refs log tree commit diff stats
path: root/src/common/hexchat.c
AgeCommit message (Expand)Author
2014-12-31Don't return 0 in place of NULLTingPing
2014-12-31Fix some possible null-deref warningsTingPing
2014-12-30Rewrite identdTingPing
2014-12-28Remove option to use socks5 libraryTingPing
2014-12-28Remove option to disable ipv6TingPing
2014-12-28Remove MSProxy supportTingPing
2014-12-28Fix building as c89TingPing
2014-12-28Use glib for all allocationsTingPing
2014-12-10Fix chanopts not saving if /quit before exitleeter
2014-12-04Fix some obvious type warnings.Arnavion
2014-11-29Fix handling --cfgdirTingPing
2014-11-05ssl: Don't use global openssl contextTingPing
2014-06-21Remove broken debug codeTingPing
2014-06-04Use glib to parse and launch commands for util_execTingPing
2014-04-02Add marker-line functionality for scrollback, instant seek.RichardHitt
2014-01-27Fixed lag meter getting stuck.Diogo Sousa
2014-01-26Show error when you lack write permissions to configdirTingPing
2014-01-20Actually call commands sent with --commandTingPing
2014-01-03Change url-handler example to firefox -new-windowTingPing
2013-12-23Only return channel sessions from find_channel()TingPing
2013-07-01Handle extraneous cli args as urlsTingPing
2013-06-08Now the default configuration tries to set the language from the systemDiogo Sousa
2013-06-06Add chanopt for stripping colorsTingPing
2013-06-04fix loading startup.txt automaticallyTingPing
2013-05-24Merge pull request #590 from orium/run-as-root-589-504TingPing
2013-05-17Add omsg user commandTingPing
2013-05-13Restructured a fair bit of cfgfiles.c. Besides making the code cleaner this a...Diogo Sousa
2013-05-12Forget to put an empty line after a function definitionDiogo Sousa
2013-05-12Factored locale related code in main() to a new function.Diogo Sousa
2013-05-12Now hexchat doesn't abnormally terminal when started as root.Diogo Sousa
2013-05-09Add option to support away tracking regardless of channel sizeHeiki Ojasild
2013-05-04Replace g_strdup_printf with g_build_filename where possibleBerke Viktor
2013-04-27Don't include if unusedBerke Viktor
2013-04-27Some crucial cosmeticsBerke Viktor
2013-04-27Fix compiler warningBerke Viktor
2013-04-24Early on, call g_type_init() unless deprecatedRichardHitt
2013-04-17typoTingPing
2013-04-17Use more useful example for url handlerTingPing
2013-04-09Don't send ping's to the server if we are still waiting for a pong.Diogo Sousa
2013-04-08fix issue #491 - opt-in/opt-out of scrollback per channelmisdre
2013-04-03Merge pull request #448 from TingPing/awaynotify2TingPing
2013-04-02Remove most of HexTray and one instanceBerke Viktor
2013-03-12Clean up away-notify patchTingPing
2013-03-12Add away-notify supportTingPing
2013-01-07Merge pull request #341 from TingPing/lastactRichardHitt
2013-01-07Simplification of new code -- eliminate member lastact_elemRichard Hitt
2012-12-28Add wi shortcut for whoisDan Mashal
2012-12-25Add last activity keybinding from fedoraTingPing
2012-12-23fix incorrect FSF addressDan Mashal
2012-11-11Disable one instance code coz it's really buggyBerke Viktor
t/src/fe-gtk/search.c?h=feature/tls-srp&id=4a6ceffb98a0b785494f680d3776c4bfc4052f9e'>4a6ceffb ^
51ae33cb ^
7403dfa9 ^
a6cc734b ^




51ae33cb ^
7403dfa9 ^
a6cc734b ^




51ae33cb ^
7403dfa9 ^
a6cc734b ^
4a6ceffb ^





8752861b ^
4a6ceffb ^
a6cc734b ^




e57659e6 ^
a6cc734b ^
4a6ceffb ^


a6cc734b ^
4a6ceffb ^



c4713880 ^
8752861b ^
c4713880 ^
5701ba28 ^
8752861b ^




4a6ceffb ^

c4713880 ^

4a6ceffb ^



a6cc734b ^







4a6ceffb ^
51ae33cb ^
4a6ceffb ^

5701ba28 ^
4a6ceffb ^

a6cc734b ^
4a6ceffb ^
51ae33cb ^
4a6ceffb ^

5701ba28 ^
a6cc734b ^



51ae33cb ^
a6cc734b ^

5701ba28 ^
4a6ceffb ^

a6cc734b ^

51ae33cb ^
a6cc734b ^

5701ba28 ^
a6cc734b ^


4a6ceffb ^



a6cc734b ^
4a6ceffb ^
5701ba28 ^
a6cc734b ^

5701ba28 ^
4a6ceffb ^
a6cc734b ^
ecdcc992 ^
4a6ceffb ^
a6cc734b ^

4a6ceffb ^

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