about summary refs log tree commit diff stats
path: root/src/ui/chatwin.c
Commit message (Expand)AuthorAgeFilesLines
* Only print chathistory if regular chat messageMichael Vetter2020-04-131-1/+4
* Add hidden MAM setting and trigger MAM retrievel when opening new windowMichael Vetter2020-04-121-8/+13
* MAM: Correctly display incoming MAM chat messageMichael Vetter2020-04-111-3/+10
* Add to_jid field to ProfMessage structMichael Vetter2020-04-111-3/+3
* Quick and dirty display of MAM messagesMichael Vetter2020-04-111-3/+6
* Retrieve message type from databaseMichael Vetter2020-04-081-1/+1
* db: Fix memleaksMichael Vetter2020-04-061-2/+1
* Adapt win_print_history() to work with muc tooMichael Vetter2020-04-061-2/+1
* Remove chat_log_get_previous()Michael Vetter2020-04-061-7/+3
* Get regular chat history out of sql backendMichael Vetter2020-04-061-19/+8
* Allow utf8 symbols as omemo/pgp/otr indicator charMichael Vetter2020-02-201-21/+29
* Refactor win_print_history()Michael Vetter2020-02-171-1/+1
* Refactor win_print_outgoing()Michael Vetter2020-02-171-2/+2
* xep-0308: enable for carbon copied messagesMichael Vetter2020-02-141-1/+0
* xep-0308: enable correction in outgoing messages with delivery receiptsMichael Vetter2020-02-141-2/+1
* Rename win_print_with_receipt() -> win_print_outgoing_with_receipt()Michael Vetter2020-02-141-1/+1
* Add myself to copyrightMichael Vetter2020-02-141-0/+1
* xep-0308: update the UI upon sending a corrected messageMichael Vetter2020-02-111-8/+10
* xep-0308: Implement `/correct` to correct the last send messageMichael Vetter2020-02-101-0/+16
* Initial work on last-read-position featureMichael Vetter2019-12-131-0/+1
* Add vim modelineMichael Vetter2019-11-131-0/+1
* Make sure date vars are initializedMichael Vetter2019-10-211-3/+3
* Properly display chatwin historyMichael Vetter2019-10-211-4/+10
* Fix handling of encrypted carbonsPaul Fariello2019-06-211-4/+4
* Rename prof_message_t into ProfMessagePaul Fariello2019-06-201-1/+1
* Add prof_message_t to wrap all message attributesPaul Fariello2019-06-201-14/+16
* Add OMEMO policyPaul Fariello2019-04-171-0/+10
* Ensure encrypted carbon of own message are marked as encryptedPaul Fariello2019-04-101-0/+2
* Add OMEMO message encryption and decryptionPaul Fariello2019-04-101-0/+2
* Update copyright to include 2019Michael Vetter2019-01-221-1/+1
* Add preferences for tab displayJames Booth2018-03-091-4/+4
* Show name in statusbar tabs WIPJames Booth2018-03-081-6/+8
* Update copyrightJames Booth2018-01-211-1/+1
* Update CopyrightJames Booth2017-01-281-1/+1
* Allow chat prefix char to be set by pluginsJames Booth2017-01-201-1/+39
* Add titlebar encryption text to plugins apiJames Booth2017-01-191-0/+18
* Add win_print_historyJames Booth2016-10-151-1/+1
* Use win_print_outgoing for carbonsJames Booth2016-10-151-1/+1
* Rename win_print_incoming_message -> win_print_incomingJames Booth2016-10-151-2/+2
* Add win_print_outgoingJames Booth2016-10-151-1/+1
* Add win_printJames Booth2016-10-151-19/+19
* Remove win_vprintln_chJames Booth2016-10-151-12/+12
* Use win_printf_line where appropriateJames Booth2016-10-151-6/+6
* Add ch arg to win_printf_lineJames Booth2016-10-151-1/+1
* Use THEME_DEFAULTJames Booth2016-10-141-1/+1
* Add win_printf_lineJames Booth2016-10-141-1/+1
* Always use string format in win_printfJames Booth2016-10-121-4/+4
* Remove args from win_print_with_receiptJames Booth2016-10-111-1/+1
* Remove win_print, use win_printf insteadJames Booth2016-10-111-9/+9
* Rename win_vprint -> win_printfJames Booth2016-10-111-1/+1
da9f1e8e4b45293'>4c13e1f2 ^
f07bb12f ^





4c13e1f2 ^
f07bb12f ^






4c13e1f2 ^
f07bb12f ^








f07bb12f ^



4c13e1f2 ^
f07bb12f ^







4c13e1f2 ^
f07bb12f ^
4c13e1f2 ^

f07bb12f ^



f07bb12f ^















4c13e1f2 ^

f07bb12f ^
4c13e1f2 ^
f07bb12f ^
4c13e1f2 ^
f07bb12f ^
4c13e1f2 ^
f07bb12f ^
4c13e1f2 ^
f07bb12f ^

4c13e1f2 ^
4e9450f9 ^
4c13e1f2 ^

f07bb12f ^
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