about summary refs log tree commit diff stats
path: root/src/command/command.c
Commit message (Expand)AuthorAgeFilesLines
...
* Use freetext parser for /whoJames Booth2013-06-021-1/+1
* Added group argument to /whoJames Booth2013-06-021-12/+52
* Added 'any' to /who commandJames Booth2013-06-021-3/+5
* Added group add and group remove to /roster commandJames Booth2013-06-021-1/+59
* Updated help for /roster commandJames Booth2013-06-021-6/+13
* Added autocomplete for /roster removeJames Booth2013-06-021-0/+2
* Added /roster remove commandJames Booth2013-06-021-0/+17
* Added /roster add commandJames Booth2013-06-011-25/+43
* Added roster list when using /roster with no argsJames Booth2013-06-011-21/+35
* Added autocomplete to /sub denyJames Booth2013-06-011-0/+14
* Added /leave commandJames Booth2013-05-301-0/+33
* Use nickname to jid mapping when sending room invitesJames Booth2013-05-301-1/+5
* Fixed #174James Booth2013-05-221-0/+3
* Refactored roster push handlingJames Booth2013-05-211-7/+7
* Renamed roster_change_handle -> roster_change_nameJames Booth2013-05-211-4/+4
* Renamed roster_barejid_from_handle -> roster_barejid_from_nameJames Booth2013-05-211-3/+3
* Renamed roster_jid_from_handle -> roster_barejid_from_handleJames Booth2013-05-211-3/+3
* Finished handle usageJames Booth2013-05-201-1/+12
* Added jid autocompleter for /roster nick commandJames Booth2013-05-201-1/+1
* Pass jid when creating new window for /msg with no messageJames Booth2013-05-201-1/+1
* Use handle for /info commandJames Booth2013-05-191-1/+6
* Use handle in /msg commandJames Booth2013-05-191-3/+4
* Changing roster handle with no argument clears handleJames Booth2013-05-191-4/+6
* Added /roster autocompleteJames Booth2013-05-191-0/+18
* Added sub to /notify preferences outputJames Booth2013-05-191-1/+0
* Added /roster command with nick option to change handleJames Booth2013-05-191-0/+40
* Added "tidy" and "prune" options to /wins commandJames Booth2013-05-171-33/+28
* Show how many windows closed with /close all and /close readJames Booth2013-05-161-3/+17
* Show correct message when closing window 0James Booth2013-05-161-1/+1
* Use 0 not 10 on window close messageJames Booth2013-05-161-1/+5
* Added autocompleter for /close commandJames Booth2013-05-161-0/+8
* Added "read" parameter to /closeJames Booth2013-05-161-3/+15
* Added parameter to /closeJames Booth2013-05-121-26/+69
* Removed contact_list, moved roster logic to xmpp/roster moduleJames Booth2013-05-061-1/+0
* Renamed contact_list_ functions to roster_James Booth2013-05-061-12/+12
* Autocomplete "/sub allow" parameter from subscription requestsJames Booth2013-05-051-1/+30
* Added /duck command to perform searches using duckduckgo chat botJames Booth2013-05-051-0/+62
* Added groupchat logsJames Booth2013-05-051-0/+22
* Fixed bug where /msg not logging chatJames Booth2013-04-281-1/+1
* Added desktop notification option for subscription requestsJames Booth2013-04-271-1/+46
* Moved display logic for subscriptions to console moduleJames Booth2013-04-271-27/+2
* Support for XEP-0249 Direct MUC InvitationsJames Booth2013-04-241-0/+47
* Added desktop notifications for chat room invitesJames Booth2013-04-221-1/+17
* Renamed remaining win_ functionsJames Booth2013-04-211-53/+53
* Renamed win_current_get_recipient -> ui_current_win_recipientJames Booth2013-04-211-22/+22
* Replace window type functions with single function returning typeJames Booth2013-04-211-78/+143
* Renamed clear and close functions in uiJames Booth2013-04-211-2/+2
* Renamed cons_bad_show -> cons_show_errorJames Booth2013-04-211-5/+5
* Removed cons_bad_command()James Booth2013-04-211-1/+1
* Moved cons_about() to console moduleJames Booth2013-04-201-0/+7
=1076f2b6b3d3751d5d5db6fcb9ac8c247e04e893'>1076f2b
439e15d ^
1076f2b
39677ec ^



439e15d ^










8a8b795 ^
439e15d ^



16c67f3 ^

439e15d ^


1076f2b

439e15d ^
586f663 ^












439e15d ^

1076f2b




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