about summary refs log tree commit diff stats
path: root/src/command/command.c
Commit message (Collapse)AuthorAgeFilesLines
* Mouse handling disabled by default.James Booth2013-03-191-1/+3
|
* Use domain part of current jid when no jid passed to /discoJames Booth2013-03-141-4/+16
|
* Added /disco commandJames Booth2013-03-141-4/+50
|
* Added basic /rooms command to get chat room listJames Booth2013-03-131-0/+37
|
* Handle dependent settingsJames Booth2013-03-101-4/+38
| | | | | /history requires /chlog /outtype and /gone require /states
* Updated online helpJames Booth2013-03-101-31/+51
|
* Added /clear command to clear current windowJames Booth2013-03-021-0/+16
|
* Show available resources for current account with "/account"James Booth2013-02-181-4/+13
|
* Colour connected account in "/account list" according ot presenceJames Booth2013-02-181-13/+2
|
* Fixed invalid resource errorJames Booth2013-02-171-2/+10
|
* Tidied help on /info, /caps and /softwareJames Booth2013-02-171-10/+14
|
* Colour title on /caps and /software outputJames Booth2013-02-171-38/+23
|
* Added /software command handling to chat rooms and private chatJames Booth2013-02-171-10/+35
|
* Added autocomplete for /software commandJames Booth2013-02-171-0/+33
|
* Added /caps commandJames Booth2013-02-171-0/+78
|
* Show all resources ordered by priority with /info commandJames Booth2013-02-171-17/+21
|
* Dealing with mulitple contact resources, work in progressJames Booth2013-02-141-14/+17
|
* Added resource_presence_t and contact_presence_tJames Booth2013-02-101-44/+23
|
* Removed presence from jabber_connJames Booth2013-02-101-5/+5
|
* Renamed jabber_presence_t->presence_tJames Booth2013-02-101-5/+5
|
* Renamed contact property jid->barejidJames Booth2013-02-091-1/+1
|
* Refactored string preferencesJames Booth2013-02-031-4/+4
|
* Refactored setting boolean preferencesJames Booth2013-02-031-23/+21
|
* Refactored getting boolean preferencesJames Booth2013-02-031-4/+4
|
* Added config dir to sourceJames Booth2013-02-021-3/+3
|
* Added command and tools subdirs to sourceJames Booth2013-02-021-0/+2671
hut@lavabit.com> 2010-10-08 20:28:56 +0200 core.loader: use signals with CommandLoader' href='/akspecs/ranger/commit/ranger/core/loader.py?h=v1.9.0b1&id=085934209cdfe195b7621a6e722c5688da3d7c1c'>08593420 ^
35b72f66 ^
996d96d1 ^
37ea434a ^
2e9365cf ^

996d96d1 ^
af2c87a8 ^
584fa6be ^
42ae9500 ^
584fa6be ^
2e9365cf ^

37ea434a ^

6ccd4598 ^
37ea434a ^
0d8898f1 ^
2e9365cf ^




37ea434a ^


2e9365cf ^
37ea434a ^
2e9365cf ^
eaed2443 ^

a835c49a ^
755e7df1 ^
eaed2443 ^



a835c49a ^
755e7df1 ^
eaed2443 ^

37ea434a ^
6ccd4598 ^
dcd610f7 ^

a835c49a ^
755e7df1 ^
dcd610f7 ^

a835c49a ^

755e7df1 ^
a835c49a ^
584fa6be ^
35b72f66 ^
2e9365cf ^
996d96d1 ^
35b72f66 ^

2e9365cf ^



35b72f66 ^
2e9365cf ^
35b72f66 ^


2e9365cf ^



35b72f66 ^
2e9365cf ^
35b72f66 ^
42ae9500 ^
2e9365cf ^
42ae9500 ^


996d96d1 ^
755e7df1 ^









c8d84d00 ^
7687dd8d ^
6615467c ^
d35bac82 ^
fa704bab ^



6615467c ^
fa704bab ^
0115ab10 ^
ea87d005 ^
fa704bab ^
d35bac82 ^

6615467c ^


ea87d005 ^
fa704bab ^
d35bac82 ^



0115ab10 ^


ea87d005 ^
586f0006 ^









35b72f66 ^

586f0006 ^



ea87d005 ^
586f0006 ^

bf6fd637 ^
586f0006 ^










35b72f66 ^
586f0006 ^
fa704bab ^

d35bac82 ^



fd39b80a ^









fa704bab ^

0115ab10 ^
35b72f66 ^

0115ab10 ^
35b72f66 ^
fa704bab ^
d35bac82 ^

fa704bab ^
fa704bab ^
0115ab10 ^
fa704bab ^
0115ab10 ^
8e327137 ^
c8d84d00 ^
a986e2bd ^
ea87d005 ^
0115ab10 ^
d35bac82 ^
0115ab10 ^
42ae9500 ^



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