about summary refs log tree commit diff stats
path: root/src/ui/chatwin.c
Commit message (Expand)AuthorAgeFilesLines
* Adapt to new g_string_free() usageMichael Vetter2023-03-231-4/+1
* Fix quote and url autocompletion for MAM and historyMarcoPolo-PasTonMolo2023-02-131-5/+7
* Update copyright yearMichael Vetter2023-01-101-1/+1
* Merge MAM improvements from #1724Michael Vetter2022-10-211-10/+49
|\
| * Don't notify on MAM messagesMarcoPolo-PasTonMolo2022-08-201-7/+10
| * Handle late deliveryMarcoPolo-PasTonMolo2022-08-201-6/+4
| * Handle MAM when chatwin gets created from incoming messageMarcoPolo-PasTonMolo2022-07-101-1/+4
| * Have ability to scroll through history even without MAMMarcoPolo-PasTonMolo2022-07-101-2/+2
| * Handle scrolling down when buffer fills upMarcoPolo-PasTonMolo2022-07-101-5/+13
| * CleanupMarcoPolo-PasTonMolo2022-07-051-5/+2
| * Add loading history message on initial MAM requestMarcoPolo-PasTonMolo2022-07-051-0/+1
| * Fix initial MAM not displayingMarcoPolo-PasTonMolo2022-07-051-6/+9
| * Get messages from history when scrolling up.MarcoPolo-PasTonMolo2022-07-031-2/+28
* | Exit *_incoming_msg functions when plain message is emptyMichael Vetter2022-07-041-0/+6
* | Fix build without omemoMarcoPolo-PasTonMolo2022-06-171-0/+2
* | Don't forget encryption status for OX and PGP.MarcoPolo-PasTonMolo2022-06-171-7/+53
|/
* Update copyright yearMichael Vetter2022-05-091-1/+1
* Add quote autocompletion for previous messagesMarcoPolo-PasTonMolo2022-03-211-0/+4
* auto-formatSteffen Jaeckel2022-02-011-5/+5
* Format code correctlyMichael Vetter2021-10-051-2/+2
* chatwin: fix memory leak when load historyDmitry Podgorny2021-07-201-0/+4
* Apply pre_chat_message_display hook to historyDustin Lagoy2021-04-271-0/+1
* OMEMO: Remove duplicate session initalisationMaximilian Wuttke2021-04-081-2/+12
* Update copyrightMichael Vetter2021-01-081-1/+1
* Remove not needed initialization in chatwin_new()Michael Vetter2020-12-101-4/+0
* Cast chat/muc window to correct type and refactor cmd_sendfileWilliam Wennerström2020-12-091-0/+2
* Pass window to functions so we dont have to call twiceMichael Vetter2020-07-091-1/+1
* Dont hilight console once all messages have been readMichael Vetter2020-07-091-1/+1
* Apply coding styleMichael Vetter2020-07-071-92/+92
* Revert "Apply coding style"Michael Vetter2020-07-071-101/+101
* Apply coding styleMichael Vetter2020-07-071-101/+101
* Feature request - XEP-0373: OpenPGP for XMPP (OX)DebXWoody2020-06-291-0/+5
* Add and use connection_get_barejid()Michael Vetter2020-05-251-3/+3
* Build URL ac upon printing of message in windowMichael Vetter2020-05-201-1/+3
* 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
'#n43'>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