about summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Fix old chlog reference in helpMichael Vetter2021-01-171-7/+7
| | | | Fixes https://github.com/profanity-im/profanity/issues/1470
* Update copyrightMichael Vetter2021-01-0833-35/+35
|
* Add `/executable (urlsave|urlopen)` migrationsWilliam Wennerström2020-12-183-10/+36
|
* Remove not needed includeMichael Vetter2020-12-161-1/+0
|
* Merge pull request #1459 from wstrm/issue-1359Michael Vetter2020-12-153-91/+57
|\ | | | | Restore old behavior when executing eval_password command
| * Do not inherit stdin of main processWilliam Wennerström2020-12-151-1/+1
| | | | | | | | I see no reason to inherit the stdin, so let's have it disabled.
| * Use popen for eval_password (reintroduce old behavior)William Wennerström2020-12-151-20/+35
| | | | | | | | | | Old commit that implemented the old behavior: bc9e6b79cdc246f7e97f6ddff7ea81474a698b05
| * Refactor call_externalWilliam Wennerström2020-12-113-91/+42
| |
* | Set input window size to max window sizekaffeekanne2020-12-111-2/+2
| | | | | | | | Input window size was one cell off, therefore terminal themes with background color set were rendered incorrectly, fixes #1458
* | Remove blank line after trackbarkaffeekanne2020-12-111-2/+0
| | | | | | | | Remove added blank line after trackbar, introduced by 606c1e51e688cb111b9837579a35460508324b63
* | Remove old TODOMichael Vetter2020-12-111-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | It was added in f7fe87dd4e7e14112fbcb0ae8794d90ffee64f2f when I rewrote window functions to include more infos (not just char* but whole jid struct I think). The same todo was added to win_print_outgoing_muc() but removed in f3d9de133e90ed10b5b7bd61196619eab1fedb19. This TODO should have been removed in f3d9de133e90ed10b5b7bd61196619eab1fedb19 since there we added the myjid parameter.
* | Fix color for win_print_outgoing()Michael Vetter2020-12-111-1/+1
|/ | | | | | | | | | | | | Discovered by @aba-hollerer. Mistake was introduced in b6b7dd5ad497a71e250b8b3cef0bb987314b141d probably due to a wrong copy/paste. First wasn't reproducible because I had `/receipts request on` and thus win_print_outgoing_receipts() is used which has the correct THEME_TEXT_ME. Fixes https://github.com/profanity-im/profanity/issues/1441
* Adapt profanity --help outputMichael Vetter2020-12-111-1/+1
|
* Only rotate logs if user didn't specify a log fileMichael Vetter2020-12-112-2/+8
|
* Remove log_reinit()Michael Vetter2020-12-112-15/+0
| | | | Not needed anymore.
* Shared log file needs a restartMichael Vetter2020-12-112-2/+2
| | | | Tell user about this change.
* Use whole path as logfile when defined via -fMichael Vetter2020-12-111-8/+14
| | | | | | | | | `profanity -f my` created ~/.local/share/profanity/logs/my.log`. It would be nicer if one could define the actual path, so one can choose another directory or even use /dev/null. Fixes https://github.com/profanity-im/profanity/issues/1442
* Fix deadlock on error before HTTP download has begunWilliam Wennerström2020-12-101-4/+6
|
* Create download directory under XDG data pathWilliam Wennerström2020-12-101-9/+26
| | | | | * If the downloads directory does not exist, create it. * Change some cons_show to cons_show_error (because they log errors).
* Set default color for trackbarMichael Vetter2020-12-101-0/+1
| | | | Fix https://github.com/profanity-im/profanity/issues/1453
* Remove empty lineMichael Vetter2020-12-101-1/+0
|
* Remove not needed initialization in chatwin_new()Michael Vetter2020-12-101-4/+0
| | | | | | | | | | | | | | 00dbc1ba7c66c3bb6898aed26922bf5295768bb1 attempted to fix https://github.com/profanity-im/profanity/issues/1449. Here we revert the part about initializing is_omemo in chatwin_new() since this is done in win_create_chat() already. The actual mistake was the wrong cast of the muc window which is fixed by the same commit. The mistake was introduced in in 3370418d71de255c832da97113543e554ec0e86b. While being at it we also remove the is_ox initialization since this is handled in win_create_chat()/win_create_muc() too.
* Fix various typosMichael Vetter2020-12-1011-20/+20
|
* Merge pull request #1450 from wstrm/issue-1449Michael Vetter2020-12-103-30/+41
|\ | | | | Cast chat/muc window to correct type and refactor cmd_sendfile
| * Fix build failure (unused variable)William Wennerström2020-12-091-2/+2
| |
| * Remove stray +2 for path string in get_expanded_pathWilliam Wennerström2020-12-091-6/+6
| |
| * Cast chat/muc window to correct type and refactor cmd_sendfileWilliam Wennerström2020-12-092-24/+35
| | | | | | | | Fixes #1449
* | Merge pull request #1451 from timgates42/bugfix_typo_certainMichael Vetter2020-12-101-1/+1
|\ \ | | | | | | docs: fix simple typo, certian -> certain
| * | docs: fix simple typo, certian -> certainTim Gates2020-12-101-1/+1
| |/ | | | | | | | | | | There is a small typo in src/config/theme.c. Should read `certain` rather than `certian`.
* | Merge pull request #1446 from profanity-im/fix/1439-chatlogsMichael Vetter2020-12-101-14/+19
|\ \ | |/ |/| Fix chatlogs for outgoing carbons
| * Log incoming carbons if they are no MUCPMMichael Vetter2020-12-091-4/+9
| | | | | | | | Regards https://github.com/profanity-im/profanity/pull/1446
| * Fix chatlogs for outgoing carbonsMichael Vetter2020-12-081-10/+10
| | | | | | | | | | | | Doesn't make sense to log if plain is not set in all cases. Regards https://github.com/profanity-im/profanity/issues/1439
* | Allocate memory for realpath in both casesMichael Vetter2020-12-091-1/+1
| | | | | | | | Forgot about that :(
* | Simplify notify()Michael Vetter2020-12-091-2/+2
| |
* | Expand trackbar to whole lineMichael Vetter2020-12-091-1/+1
| | | | | | | | Fix https://github.com/profanity-im/profanity/issues/1448
* | Purge omemo sendfile from configMichael Vetter2020-12-091-0/+5
| | | | | | | | | | | | | | | | | | | | https://github.com/profanity-im/profanity/pull/1375 added omemo media sharing support. Thus the protection (https://github.com/profanity-im/profanity/pull/1270) to sending files plainly in an omemo chat isn't needed anymore and got removed. Lets clean it from the config file.
* | Use get_expanded_path() in cmd_senfile()Michael Vetter2020-12-092-8/+3
| |
* | Expand ~ in unique_filename_from_url()Michael Vetter2020-12-091-3/+27
| | | | | | | | | | | | | | | | unique_filename_from_url() is used for `/url save`. It doesn't recognize ~ by itself, we need to expand it first. Mentioned in https://github.com/profanity-im/profanity/pull/1375#pullrequestreview-547892462
* | Merge pull request #1375 from wstrm/feature/omemo-sendfileMichael Vetter2020-12-0924-423/+1497
|\ \ | |/ |/| Send and retrieve encrypted files when using OMEMO
| * Remove scheme and filetype matching for url (save|open)William Wennerström2020-12-085-66/+88
| |
| * Fix segfault for urlopen[1]William Wennerström2020-12-071-1/+1
| |
| * Fix wrong order of arguments for _url_http_methodWilliam Wennerström2020-12-071-2/+2
| |
| * Remove cmd_tiny, empty files and link nonce with IVWilliam Wennerström2020-12-075-4/+3
| |
| * Add tests for format_call_external_argvWilliam Wennerström2020-12-072-17/+30
| |
| * Fix bad order of parameters for url saveWilliam Wennerström2020-12-073-3/+16
| |
| * Rework url to filenameWilliam Wennerström2020-12-064-38/+42
| |
| * Move unique_filename_from_url functions to commonWilliam Wennerström2020-12-046-85/+84
| |
| * Refactor for threaded external executable for built-in download methodsWilliam Wennerström2020-12-0314-231/+201
| |
| * Fix stubs and move some tests to http_commonWilliam Wennerström2020-11-162-18/+12
| |
| * Add stubsWilliam Wennerström2020-11-161-8/+14
| |
j5@gmail.com> 2014-01-05 01:17:11 +0000 committer James Booth <boothj5@gmail.com> 2014-01-05 01:17:11 +0000 Added contact tests' href='/danisanti/profani-tty/commit/tests/test_contact.c?id=5898da963a254294ce5dd24b8a9534256f7efd45'>5898da96 ^
a2726b6a ^
5898da96 ^





a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^
a2726b6a ^



5898da96 ^




a2726b6a ^
5898da96 ^





a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^
a2726b6a ^


5898da96 ^



a2726b6a ^
5898da96 ^





a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^
a2726b6a ^

5898da96 ^


a2726b6a ^
5898da96 ^





a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^
a2726b6a ^
5898da96 ^

a2726b6a ^
5898da96 ^





a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^







a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^

80acfdae ^
5898da96 ^




a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^







a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^







a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^







a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^
a2726b6a ^




5898da96 ^












a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^
a2726b6a ^




5898da96 ^












a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^
a2726b6a ^




5898da96 ^












a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^
a2726b6a ^




5898da96 ^












a2726b6a ^

5898da96 ^

a2726b6a ^
5898da96 ^
a2726b6a ^




5898da96 ^










80acfdae ^
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431