Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Have separate settings for intype | Michael Vetter | 2021-05-08 | 1 | -1/+8 |
| | | | | | | | | | | Old: `/intype on|of` Typing information is printed in console and titlebar. New: `/intype titlebar|console on|off` Typing information can be configured in more detail. Regards https://github.com/profanity-im/profanity/issues/1516 | ||||
* | OMEMO - trust mode (#1506) | Stefan | 2021-04-17 | 1 | -0/+31 |
| | | | | | | | Add OMEMO trust mode capabilities. * ToFu / first usage * blind trust * manual | ||||
* | editor: make editor configurable via /executable | Michael Vetter | 2021-04-16 | 1 | -0/+15 |
| | | | | | | `/executable set editor /full/path/to/edit`. Regards https://github.com/profanity-im/profanity/issues/1521 | ||||
* | editor: Save temp files as .md | Michael Vetter | 2021-04-16 | 1 | -2/+2 |
| | | | | | Probably many people render text in their head to markdown automatically. | ||||
* | Editor: improve error messages | Michael Vetter | 2021-04-16 | 1 | -6/+6 |
| | |||||
* | editor: Use g_strdup_printf() instead of g_string_new() | Michael Vetter | 2021-04-16 | 1 | -11/+4 |
| | |||||
* | Run clang-format on new editor code | Michael Vetter | 2021-04-16 | 1 | -17/+17 |
| | |||||
* | Editor: Fix redisplay | Stefan | 2021-04-16 | 1 | -1/+4 |
| | |||||
* | Editor: Use _exit() instead of exit() | Stefan | 2021-04-16 | 1 | -1/+1 |
| | |||||
* | Editor: Using preferences compose.editor | Stefan | 2021-04-16 | 1 | -9/+19 |
| | | | | compose.editor is the path to the executable ( default /usr/bin/vim ) | ||||
* | Editor command: filename / sensible-editor | Stefan | 2021-04-16 | 1 | -9/+50 |
| | | | | | | | | * Generating a unique file name in tmp_dir folder * Changed exec of vim to exec of sensible-editor * Test file exists and create file with "private" rights * Send a preview of the message in the window * Delete temp file | ||||
* | Add new editor command | Stefan | 2021-04-16 | 1 | -0/+40 |
| | | | | Goal is to launch an external editor (eg vim) to edit the text there. | ||||
* | OMEMO: Fail if message keys couldn't be encrypted for any recipient device | Maximilian Wuttke | 2021-04-08 | 1 | -8/+7 |
| | | | | | | | | | If the message (key) can't be encrypted for any device, sending the message is refused and an informative error message is presented to the user. Also, don't encrypt for the same device, since the OMEMO XEP disallows this. | ||||
* | OMEMO: Remove duplicate session initalisation | Maximilian Wuttke | 2021-04-08 | 1 | -16/+8 |
| | | | | | | The function `omemo_start_session` was effectively called twice in the `/msg` command: Once in `chatwin_new` and afterwards in `cmd_msg`. I've removed the second call. | ||||
* | Get rid of asprintf and _GNU_SOURCE define | Michael Vetter | 2021-03-30 | 1 | -5/+3 |
| | | | | | | | _GNU_SOURCE was even in some files where it was not needed at all (http*). Let's replace asprintf() with g_strdup_printf(). | ||||
* | Fix segfault in cmd_autoaway() | Michael Vetter | 2021-03-29 | 1 | -9/+12 |
| | | | | | | | | | Two mistakes were here: * `/autoaway time away` without a time argument segfaulted * `/autoaway message away` without a mesage set to (null). We have `/autoaway message off to set it off. Also use g_strcmp0() instead of strcmp(). | ||||
* | Add support to register with a room | Michael Vetter | 2021-03-25 | 1 | -0/+5 |
| | | | | | | | | | | `/affiliation register` can now be used to register a nickname with a MUC. Tested with a server without forms. Couldn't find a server which supports forms yet. Implements https://github.com/profanity-im/profanity/issues/1210 | ||||
* | MUC: Add voice request | Thorben Günther | 2021-03-12 | 1 | -0/+5 |
| | | | | closes https://github.com/profanity-im/profanity/issues/1211 | ||||
* | Dont build paths manually in cmd_funcs.c | Michael Vetter | 2021-03-12 | 1 | -36/+13 |
| | | | | | Some time ago we introduced get_expanded_path(). No need to build paths manually anymore to get ~. | ||||
* | Add command to change password of logged in user | Thorben Günther | 2021-03-11 | 1 | -0/+27 |
| | |||||
* | Update ui_ask_password to support confirmation | Thorben Günther | 2021-03-11 | 1 | -2/+2 |
| | | | | | Just prints a different string to console. Useful for changing passwords or account registration. | ||||
* | MUC: Show offline members in sidebar | Thorben Günther | 2021-03-08 | 1 | -0/+12 |
| | |||||
* | Add /mam command | Michael Vetter | 2021-01-28 | 1 | -0/+8 |
| | | | | Regards https://github.com/profanity-im/profanity/issues/660 | ||||
* | Dont reload theme when disconnecting on purpose | Michael Vetter | 2021-01-22 | 1 | -21/+0 |
| | | | | | | | | I don't see why would need to. Also this only happens upon `/disconnect` not on a network outage or server related disconnect. Fixes https://github.com/profanity-im/profanity/issues/1472 | ||||
* | Fix old chlog reference in help | Michael Vetter | 2021-01-17 | 1 | -7/+7 |
| | | | | Fixes https://github.com/profanity-im/profanity/issues/1470 | ||||
* | Add `/executable (urlsave|urlopen)` migrations | William Wennerström | 2020-12-18 | 1 | -2/+2 |
| | |||||
* | Shared log file needs a restart | Michael Vetter | 2020-12-11 | 1 | -1/+1 |
| | | | | Tell user about this change. | ||||
* | Create download directory under XDG data path | William Wennerström | 2020-12-10 | 1 | -9/+26 |
| | | | | | * If the downloads directory does not exist, create it. * Change some cons_show to cons_show_error (because they log errors). | ||||
* | Fix build failure (unused variable) | William Wennerström | 2020-12-09 | 1 | -2/+2 |
| | |||||
* | Cast chat/muc window to correct type and refactor cmd_sendfile | William Wennerström | 2020-12-09 | 1 | -24/+33 |
| | | | | Fixes #1449 | ||||
* | Use get_expanded_path() in cmd_senfile() | Michael Vetter | 2020-12-09 | 1 | -8/+2 |
| | |||||
* | Remove scheme and filetype matching for url (save|open) | William Wennerström | 2020-12-08 | 1 | -45/+53 |
| | |||||
* | Fix wrong order of arguments for _url_http_method | William Wennerström | 2020-12-07 | 1 | -2/+2 |
| | |||||
* | Add tests for format_call_external_argv | William Wennerström | 2020-12-07 | 1 | -15/+28 |
| | |||||
* | Fix bad order of parameters for url save | William Wennerström | 2020-12-07 | 1 | -1/+8 |
| | |||||
* | Rework url to filename | William Wennerström | 2020-12-06 | 1 | -1/+0 |
| | |||||
* | Move unique_filename_from_url functions to common | William Wennerström | 2020-12-04 | 1 | -63/+2 |
| | |||||
* | Refactor for threaded external executable for built-in download methods | William Wennerström | 2020-12-03 | 1 | -171/+118 |
| | |||||
* | Add stubs | William Wennerström | 2020-11-16 | 1 | -8/+14 |
| | |||||
* | Switch to g_strerror | William Wennerström | 2020-11-16 | 1 | -30/+4 |
| | |||||
* | Add I/O error handling and use filenames instead of file descriptors | William Wennerström | 2020-11-16 | 1 | -8/+2 |
| | |||||
* | Refactor OMEMO download into AESGCMDownload tool | William Wennerström | 2020-11-16 | 1 | -6/+55 |
| | |||||
* | Use fallback method when /executable urlsave is unset | William Wennerström | 2020-11-16 | 1 | -6/+24 |
| | |||||
* | Run make format on rebase | William Wennerström | 2020-11-16 | 1 | -71/+65 |
| | |||||
* | Remove unsafe Conent-Disposition inferring | William Wennerström | 2020-11-16 | 1 | -38/+61 |
| | |||||
* | Infer filename from content-disposition or URL | William Wennerström | 2020-11-16 | 1 | -112/+131 |
| | | | | | The Content-Disposition inferring is probably a bad idea security wise, so I am going to remove it. | ||||
* | Add http_download tool | William Wennerström | 2020-11-16 | 1 | -3/+4 |
| | |||||
* | Wording | William Wennerström | 2020-11-16 | 1 | -2/+2 |
| | |||||
* | Remove temporary ciphertext file when finished | William Wennerström | 2020-11-16 | 1 | -2/+8 |
| | |||||
* | Remove /omemo sendfile | William Wennerström | 2020-11-16 | 1 | -15/+2 |
| |