about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Fix ox autocompletionMichael Vetter2022-04-281-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sometimes this happened: `ox d<tab>` → `/ox request` `ox a<tab>` → `/ox request` `ox c<tab>` → `/ox keys` `ox s<tab>` → `/ox keys` `ox e<tab>` → `/ox keys` We didn't reset the ox_*_ac variables.
* | | ox: group online autocompletion togetherMichael Vetter2022-04-281-10/+5
| | |
* | | ox: dont print empty body messageMichael Vetter2022-04-271-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix https://github.com/profanity-im/profanity/issues/1693 ``` @StefanKropp @DebXWoody please check `_handle_ox_chat()` I don't understand what you are doing there. 1) First plain is assigned `message->plain = p_ox_gpg_decrypt(xmpp_stanza_get_text(ox));` and then in the same if block you overwrite this with `message->plain = xmpp_stanza_get_text(b);` without freeing the old value as far as I can see. 2) Sometimes even doing `message->plain = "OX error: No payload found";`. Shouldn't there be a `strdup()`? I think later on we try to free the whole message struct. So we can't mix this static things. ```
* | | Merge pull request #1699 from profanity-im/1698-fixoxabrtMichael Vetter2022-04-272-7/+6
|\ \ \ | | | | | | | | Fix SIGABRT when using wrong argument order for receiving ox key
| * | | ox: print invalid fingerprint instead of abortingMichael Vetter2022-04-271-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Asserting here is not the right thing to do at all. A person could have a typo in the fingerprint. Or like in the case of the reported bug just confuse the arguments. An additional check for valid jid should be added later to the calling function maybe. Fix https://github.com/profanity-im/profanity/issues/1698
| * | | ox: print bad usage instead of custom messageMichael Vetter2022-04-271-1/+1
| | | |
| * | | Remove commentMichael Vetter2022-04-271-5/+0
| |/ /
* | | ci: rename TW python packagesMichael Vetter2022-04-271-2/+2
| | |
* | | ox: remove commentMichael Vetter2022-04-271-4/+0
|/ /
* | Merge pull request #1696 from paulfertser/fix-xscreensaver-configureMichael Vetter2022-04-211-1/+2
|\ \ | | | | | | Fix xscreensaver detection
| * | Fix xscreensaver detectionPaul Fertser2022-04-211-1/+2
|/ / | | | | | | | | | | | | Using pkg-config to find libraries requires explicit mention of the relevant _CFLAGS and _LIBS variables. Fixes #1695.
* | Fix typo Annonuce -> AnnounceMichael Vetter2022-04-141-4/+4
| |
* | Fix typo: paylod -> payloadMichael Vetter2022-04-121-1/+1
| |
* | Merge pull request #1690 from paulfertser/symbol-for-embedded-newlinesMichael Vetter2022-04-122-11/+41
|\ \ | | | | | | Show return symbol for embedded newlines
| * | Show return symbol for embedded newlinesPaul Fertser2022-04-121-1/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | When editing multi-line messages or comments everything past the first newline becomes invisible. This patch fixes it by substituting a Unicode symbol for "return" instead of printing the newline as is. On locales where it's not available single backslash is used instead.
| * | Handle input win redisplay via Readline hookPaul Fertser2022-04-121-3/+10
| | | | | | | | | | | | | | | Allow Readline to control when to redisplay the input line. This makes text entered via /editor visible after editor is closed.
| * | Show Readline prompt in input windowPaul Fertser2022-04-121-0/+7
| | | | | | | | | | | | | | | When doing an interactive search the prompt is needed to show the current state of the search to avoid confusion.
| * | Allow /editor while not connectedPaul Fertser2022-04-121-7/+0
|/ / | | | | | | | | Since /editor can be used also for commands it doesn't make sense to restrict it to only connected state.
* | Merge pull request #1688 from paulfertser/document-inputrc-reloadMichael Vetter2022-04-091-0/+5
|\ \ | | | | | | Mention C-x C-r (reload inputrc) in the man page
| * | Mention C-x C-r (reload inputrc) in the man pagePaul Fertser2022-04-091-0/+5
|/ / | | | | | | | | Add mentions of less-known but quite useful bindindings to the man page.
* | Fix preferences testsMichael Vetter2022-04-081-2/+2
| |
* | Dont show presence status changes by defaultMichael Vetter2022-04-071-2/+2
| | | | | | | | | | | | | | | | | | | | | | Dont show presence status changes by default in chat and muc windows. Users repeatedly ask how to change this setting in the MUC. We have it in the FAQ since a long time. And most people I know change this setting, including me. So it looks like it's time to change this default.
* | Merge pull request #1683 from paulfertser/more-example-aliasesMichael Vetter2022-04-041-0/+2
|\ \ | | | | | | Include useful aliases in profrc example
| * | Include useful aliases in profrc examplePaul Fertser2022-04-031-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Since some other commands are using british spelling for colour it makes sense to have it available for /color command as well. IRC users will feel more at home having /topic command equivalent to /subject (which seems to be a MUC-specific terminology).
* | | Merge pull request #1674 from paulfertser/allow-bold-for-default-coloursMichael Vetter2022-04-041-12/+13
|\ \ \ | | | | | | | | Allow bold for default colours
| * | | Allow bold for default coloursPaul Fertser2022-04-011-12/+13
| | | |
* | | | Merge pull request #1680 from paulfertser/add-irssi-themeMichael Vetter2022-04-042-1/+132
|\ \ \ \ | | | | | | | | | | Add irssi theme
| * | | | Add irssi themePaul Fertser2022-04-021-0/+131
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The theme is intended to closely resemble the default Irssi look and feel, with minimum visual clutter in UI elements, roster and occupants lists are simplistic, similar to nicklist.pl Irssi script output. Based on "original" theme.
| * | | | Use default rather than boothj5 theme in profrc examplePaul Fertser2022-04-021-1/+1
| | | | |
* | | | | Start new cycleMichael Vetter2022-04-04102-5496/+1
| | | | |
* | | | | Release 0.12.1Michael Vetter2022-04-04104-3/+5518
| | | | |
* | | | | Merge pull request #1681 from akaWolf/fix_theme_load_non_existMichael Vetter2022-04-031-0/+3
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | Fix theme load When we execute `/theme load somethingthatdoesntexist` it still loaded some colors wrongly.
| * | | | disable execution of colors-changing code when call for theme load and it ↵Artjom Vejsel2022-04-021-0/+3
| | |/ / | |/| | | | | | | | | | doesn't exist
* | | | Merge pull request #1675 from paulfertser/fix-no-me-historyMichael Vetter2022-04-031-0/+1
|\ \ \ \ | |_|/ / |/| | | Use correct colour for their nick when showing history
| * | | Use correct colour for their nick when showing historyPaul Fertser2022-04-011-0/+1
| |/ /
* | | Include `config.h` in `src/config.cafile.c`Maxi Wuttke2022-04-021-0/+2
| | | | | | | | | | | | See <https://github.com/profanity-im/profanity/issues/1512>
* | | Fix a segfault when uploading or downloading filesMaxi Wuttke2022-04-022-2/+2
|/ / | | | | | | The variable `ccount->tls_policy` was not null-tested before `strcmp`.
* | Merge pull request #1673 from profanity-im/fix-loggingMichael Vetter2022-04-011-1/+7
|\ \ | | | | | | Fix logging (this time for real)
| * | Fix logging (this time for real)Steffen Jaeckel2022-04-011-1/+7
|/ / | | | | | | | | | | | | | | | | | | ... I hope ... We also need to create the path where the logs are stored. Fixup of d82f2f293b056965fc0bed2b24820961885ab90b Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
* | Merge pull request #1672 from profanity-im/fix-loggingMichael Vetter2022-04-011-1/+3
|\ \ | | | | | | fix path where logs are stored
| * | fix path where logs are storedSteffen Jaeckel2022-04-011-1/+3
|/ / | | | | | | | | | | | | 43e5f15e66b83ac8f3d57d2ffc7babf57873c51c broke the creation of the path where chatlogs are stored. This is fixed now. Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
* | Merge pull request #1664 from paulfertser/tab-completion-cleanupMichael Vetter2022-04-011-41/+11
|\ \ | | | | | | Tab completion code simplification
| * | Tab completion code simplificationPaul Fertser2022-03-301-41/+11
| | | | | | | | | | | | | | | | | | Factor out common code for Tab and Shift-Tab in a separate function. No functional change.
* | | Merge pull request #1667 from paulfertser/fix-screen-arrows-bindingsMichael Vetter2022-04-011-0/+3
|\ \ \ | | | | | | | | Add Alt/Ctrl-arrows combinations for GNU Screen
| * | | Add Alt/Ctrl-arrows combinations for GNU ScreenPaul Fertser2022-03-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | GNU Screen terminal emulator is modelled after VT100, its key bindings for "application mode" (which profanity enables on startup) can be seen with this: info screen "Input Translation".
* | | | Merge pull request #1669 from paulfertser/make-rl-functions-bindableMichael Vetter2022-04-011-0/+5
|\ \ \ \ | | | | | | | | | | Make all existing input functions bindable from config
| * | | | Make all existing input functions bindable from configPaul Fertser2022-03-301-0/+5
| |/ / /
* | | | Merge pull request #1670 from profanity-im/moar-cleanupMichael Vetter2022-04-014-48/+61
|\ \ \ \ | | | | | | | | | | Even moar cleanup
| * | | | fix `account set theme` helpSteffen Jaeckel2022-04-011-1/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
| * | | | fix linter warningsSteffen Jaeckel2022-03-311-1/+2
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>