about summary refs log tree commit diff stats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' into pgpJames Booth2015-04-197-209/+209
|\
| * Renamed server event functionsJames Booth2015-04-197-207/+207
* | Merge branch 'master' into pgpJames Booth2015-04-198-7/+7
|\|
| * Moved server_events to event/James Booth2015-04-198-7/+7
* | Merge branch 'master' into pgpJames Booth2015-04-1212-21/+109
|\|
| * Added option to show jids in occupants panelJames Booth2015-04-1212-21/+109
* | Merge branch 'master' into pgpJames Booth2015-04-113-9/+29
|\|
| * Autogenerate room name with UUID for /join with no argsJames Booth2015-04-113-9/+29
* | Fixed message sending when not PGP key foundJames Booth2015-04-051-0/+2
* | Merge branch 'master' into pgpJames Booth2015-03-296-10/+40
|\|
| * Use password for chat room invitesJames Booth2015-03-296-10/+40
* | Merge branch 'master' into pgpJames Booth2015-03-293-4/+10
|\|
| * Added password to direct invitesJames Booth2015-03-293-4/+10
* | Merge branch 'master' into pgpJames Booth2015-03-2910-29/+195
|\|
| * Add callback data to room disco info response handlerJames Booth2015-03-295-34/+102
| * Set members only property when getting room featuresJames Booth2015-03-295-3/+25
| * Added check members only room to send mediated invitesJames Booth2015-03-286-1/+77
* | Decrypt incoming messagesJames Booth2015-03-253-5/+63
* | Send encrypted messagesJames Booth2015-03-245-19/+109
* | Added signature verification, /pgp fps commandJames Booth2015-03-246-13/+121
* | Added check for HAVE_LIBGPGME in presence.cJames Booth2015-03-231-0/+4
* | Fixed tabsJames Booth2015-03-231-13/+13
* | Fixed tabsJames Booth2015-03-231-36/+36
* | Added pgpkeyid account setting, send signed presenceJames Booth2015-03-2311-5/+166
* | Added Id and fingerprint to pgp key listJames Booth2015-03-223-5/+36
* | Added /pgp libver commandJames Booth2015-03-224-5/+28
* | Fixed whitespaceJames Booth2015-03-221-1/+1
* | Added pgp key list commandJames Booth2015-03-227-2/+179
|/
* Added individual options to send and request delivery receiptsJames Booth2015-03-198-21/+73
* Merge remote-tracking branch 'origin/master'James Booth2015-03-181-1/+1
|\
| * Fix buffer entry freeJames Booth2015-03-171-1/+1
* | Added keybindings for rxvtJames Booth2015-03-181-6/+13
|/
* Tidy cmd_tinyJames Booth2015-03-161-33/+44
* Added static function for sending otr tagged messagesJames Booth2015-03-161-17/+20
* Added otr_tag_message, removed commands.c dependency on libotrJames Booth2015-03-163-10/+17
* Use static functions in cmd_msgJames Booth2015-03-161-21/+8
* Removed window checks before logging in cmd_msgJames Booth2015-03-161-9/+3
* Added static functions to commands.c for sending messagesJames Booth2015-03-162-31/+35
* Moved _strtoi to common, strtoi_rangeJames Booth2015-03-163-39/+39
* Removed console dependency from strtoiJames Booth2015-03-161-63/+123
* Moved default and alias command executionJames Booth2015-03-163-112/+113
* Fix for chat loggingJames Booth2015-03-151-68/+64
* Move common chat logging code to log.cJames Booth2015-03-155-172/+159
* Tidied helpJames Booth2015-03-152-14/+16
* Added /receipts commandJames Booth2015-03-155-1/+28
* Added receipt.sent theme settingJames Booth2015-03-153-65/+70
* Fixed mergeJames Booth2015-03-151-1/+1
* Merge branch 'master' into xep-0184James Booth2015-03-153-6/+64
|\
| * Added OTR error messagesJames Booth2015-03-153-6/+64
* | Return after message receiptJames Booth2015-03-141-1/+1
;id=b55b15a920a3f367688579d946a83deb13855df8'>b55b15a9 ^
02909fec ^






49620728 ^

b55b15a9 ^



02909fec ^


192d59d3 ^
02909fec ^
192d59d3 ^
02909fec ^



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