Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add url support (downloading) to `/plugins install` | John Hernandez | 2023-05-16 | 1 | -0/+2 |
| | | | | Additional changes include code refactoring. | ||||
* | Fix duplicate download IDs. | IsaacM88 | 2023-03-09 | 1 | -0/+1 |
| | | | | | | | | | | Fixes https://github.com/profanity-im/profanity/issues/1794 Explanation The problem is the download's identifier. Downloads are given an ID so they can be referenced later when their progress changes. Currently, the download's ID is the download's URL. When you download the same file twice, you have two downloads with the same ID. Download progress updates are shown on the first of both downloads with the same ID. Solution Change the download's ID from its URL to a random number. A random ID is generated when get_random_string() is called from cmd_funcs.c. Several other functions are updated to cope with the new ID format. | ||||
* | Move unique_filename_from_url functions to common | William Wennerström | 2020-12-04 | 1 | -0/+9 |
| | |||||
* | Fix stubs and move some tests to http_common | William Wennerström | 2020-11-16 | 1 | -5/+0 |
| | |||||
* | Add stubs | William Wennerström | 2020-11-16 | 1 | -2/+0 |
| | |||||
* | Run make format on rebase | William Wennerström | 2020-11-16 | 1 | -11/+11 |
| | |||||
* | Infer filename from content-disposition or URL | William Wennerström | 2020-11-16 | 1 | -0/+28 |
The Content-Disposition inferring is probably a bad idea security wise, so I am going to remove it. |