about summary refs log tree commit diff stats
path: root/src/event
Commit message (Expand)AuthorAgeFilesLines
* Added C plugin code from plugins branchJames Booth2016-02-142-65/+103
* Fix memory leaksJames Booth2016-02-141-0/+1
* Highlight room trigger termsJames Booth2016-02-131-1/+1
* Don't show notification reminders for messages the user does not want notific...James Booth2016-02-041-23/+15
* Tidy notify_room_message()James Booth2016-02-041-15/+4
* Handle self leaving room in private winsJames Booth2016-02-031-0/+2
* Handle occupant nick change in private winsJames Booth2016-02-021-0/+2
* Handle occupant kicked/banned in private chat winsJames Booth2016-02-021-0/+16
* Show message in private windows when user offlineJames Booth2016-02-022-2/+22
* Colour private chats by presence in roster panelJames Booth2016-01-311-0/+7
* Added themes for roster room mention and triggersJames Booth2016-01-251-0/+7
* Show console messages for room mention and triggersJames Booth2016-01-241-7/+6
* Tidy handling room mention and room triggersJames Booth2016-01-241-7/+18
* Added private chat to roster roomsJames Booth2016-01-241-0/+1
* Added roster contact themesJames Booth2016-01-141-0/+4
* End OTR sessions on lost server connectionJames Booth2016-01-081-0/+17
* Destroy roster after updating UI in server disconnectJames Booth2016-01-081-1/+1
* Merge branch 'master' into roster-structJames Booth2016-01-051-2/+2
|\
| * Call UI disconnect functions before disconnecting with /disconnectJames Booth2016-01-051-2/+2
* | Added roster struct, create and destroy roster on connect/disconnectJames Booth2016-01-052-4/+5
|/
* Add cl_ev_disconnectJames Booth2016-01-033-0/+23
* Fixed compilation without libotrJames Booth2016-01-031-0/+2
* End OTR session when recipient goes offlineJames Booth2016-01-031-0/+6
* Sort roster roomsJames Booth2016-01-021-2/+2
* Show rooms in roster panelJames Booth2016-01-021-0/+4
* Added /console commandJames Booth2015-12-291-0/+1
* Added console MUC message preferenceJames Booth2015-12-291-1/+6
* Don't compile pgp code with --disable-pgpDmitry Podgorny2015-12-211-0/+2
* Added cons_show_incoming_room_message()James Booth2015-12-201-5/+58
* Fixed PGP error messageJames Booth2015-12-191-1/+1
* Show PGP error stringsJames Booth2015-12-151-3/+13
* Moved sending of initial presence to sv_ev_roster_receivedJames Booth2015-12-141-0/+31
* Allow /quit during TLS certificate verification promptJames Booth2015-11-101-7/+16
* Show current TLS certificateJames Booth2015-11-102-53/+7
* Added /tls cert to show current certificate fingerprintJames Booth2015-11-091-0/+1
* Store current TLS certificate fingerpint in memory for reconnectJames Booth2015-11-091-0/+8
* Renamed MUC private window functionsJames Booth2015-11-082-3/+3
* ui_incoming_private_msg takes ProfPrivateWin, added assertsJames Booth2015-11-081-7/+17
* mucwin_broadcast takes ProfMucWinJames Booth2015-11-021-3/+6
* mucwin_subject takes ProfMucWinJames Booth2015-11-021-4/+5
* mucwin_requires_config takes ProfMucWinJames Booth2015-11-021-1/+3
* mucwin_message takes ProfMucWinJames Booth2015-11-021-1/+4
* mucwin_history takes ProfMucWinJames Booth2015-11-021-1/+4
* mucwin_nick_change takes ProfMucWinJames Booth2015-11-021-1/+4
* mucwin_occupant_nick_change takes ProfMucWinJames Booth2015-11-021-1/+4
* mucwin_occupant_presence takes ProfMucWinJames Booth2015-11-021-2/+3
* mucwin_occupant_online takes ProfMucWinJames Booth2015-11-011-2/+3
* mucwin_occupant_banned takes ProfMucWinJames Booth2015-11-011-1/+4
* mucwin_occupant_kicked takes ProfMucWinJames Booth2015-11-011-1/+4
* mucwin_occupant_offline takes ProfMucWinJames Booth2015-11-011-2/+3
5:39 -0700 3392' href='/akkartik/mu/commit/018type_abbreviations.cc?h=hlt&id=59085fca6083a08f67911a35c02f012c19d7df48'>59085fca ^
c442a5ad ^
6c96a437 ^
cdf0f349 ^
c442a5ad ^
6c96a437 ^
cdf0f349 ^
c442a5ad ^
cdf0f349 ^
6c96a437 ^
cdf0f349 ^
c442a5ad ^
cdf0f349 ^

59e47aca ^
cdf0f349 ^











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