about summary refs log tree commit diff stats
path: root/src/command
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' into readlineJames Booth2015-02-101-15/+20
|\
| * Free roster listJames Booth2015-02-101-16/+20
| * Free contact listJames Booth2015-02-101-0/+1
* | Merge branch 'master' into readlineJames Booth2015-02-091-0/+5
|\|
| * Free filtered lists for who commandJames Booth2015-02-091-0/+5
* | Merge branch 'master' into readlineJames Booth2015-02-091-5/+6
|\|
| * Free theme list after useJames Booth2015-02-091-5/+6
* | Merge branch 'master' into readlineJames Booth2015-02-081-2/+10
|\|
| * Moved quote stripper to common, added testsJames Booth2015-02-081-26/+3
| * Merge remote-tracking branch 'peterlvilim/quote-chars'James Booth2015-02-081-3/+34
| |\
| | * Strip quote chars from name autocompletePeter Vilim2015-01-141-0/+23
* | | Merge branch 'master' into readlineJames Booth2015-02-082-0/+55
|\| |
| * | Added code to generate HTML command reference for websiteJames Booth2015-02-082-0/+55
* | | Merge branch 'master' into readlineJames Booth2015-02-061-4/+0
|\| |
| * | Removed duplicate time_acJames Booth2015-02-061-4/+0
* | | Merge branch 'master' into readlineJames Booth2015-02-012-3/+7
|\| |
| * | Updated /wrap helpJames Booth2015-01-281-1/+1
| * | Renamed command group presence->presences to avoid clashJames Booth2015-01-282-2/+2
| * | Strip only trailing newline from eval_passwordJames Booth2015-01-281-1/+4
| * | Strip leading/trailing whitespace from result of eval_passwordJames Booth2015-01-281-0/+1
* | | Removed history and various key handlersJames Booth2015-01-301-5/+0
|/ /
* | Simplified autocompleters and command historyJames Booth2015-01-164-360/+201
* | Moved input line to inputwinJames Booth2015-01-151-3/+4
* | Moved process_input to cmd_process_inputJames Booth2015-01-152-12/+58
|/
* Merge remote-tracking branch 'incertia/fixleak'James Booth2015-01-141-1/+1
|\
| * fix yet another potential leakWill Song2015-01-141-1/+1
* | Don't free default account name until it has been lowercasedJames Booth2015-01-141-2/+2
|/
* fix the fix (memory leak)Simon Effenberg2015-01-141-1/+3
* Fixed segfault on eval_password due to moving popen callJames Booth2015-01-141-0/+8
* fix a potential leakWill Song2015-01-121-3/+3
* add a memory check just in caseWill Song2015-01-121-0/+4
* fix testsWill Song2015-01-121-1/+1
* eval_password code is now in cmd_connect so that it can be changedWill Song2015-01-121-1/+14
* Merge remote-tracking branch 'peterlvilim/keyring'James Booth2015-01-132-4/+23
|\
| * Add support for evaluated passwordPeter Vilim2015-01-072-4/+23
* | Merge remote-tracking branch 'savar/dynamic_input_block'James Booth2015-01-122-13/+72
|\ \
| * | adding preference option for dynamic input blockingSimon Effenberg2015-01-122-12/+45
| * | trying to block (and save cpu power) more dynamicallySimon Effenberg2015-01-121-1/+1
|/ /
* | Merge remote-tracking branch 'incertia/exit-title'James Booth2015-01-123-7/+19
|\ \
| * | add exit title preference to group and add command for setting the preferenceWill Song2015-01-083-2/+22
| |/
* | Renamed titlebar preferenceJames Booth2015-01-122-8/+33
* | Only show UI events for chat states when in sessionJames Booth2015-01-111-0/+4
* | Added resource override for chat sessionsJames Booth2015-01-101-11/+2
* | Added preferences for showing resource in titlebar and messagesJames Booth2015-01-102-11/+42
* | Renamed resource -> resource_overrideJames Booth2015-01-101-2/+2
* | Refactored chat session handling on sending messageJames Booth2015-01-042-118/+22
* | Use resource in chat sessionsJames Booth2015-01-042-22/+104
|/
* Merge remote-tracking branch 'incertia/connect-default'James Booth2014-12-292-8/+76
|\
| * added warning about options not being usedWill Song2014-12-211-2/+4
| * removing the account connected to the default account removes the default acc...Will Song2014-11-271-0/+6
rtik/mu/commit/html/001help.cc.html?h=main&id=a654e4ecace2d506d1b10f1dde2c287ebe84ef37'>a654e4ec ^
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