| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Add support for offline MUC notifications
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
```
|
|\ \
| | |
| | | |
Fix SIGABRT when using wrong argument order for receiving ox key
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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
|
| | | |
|
| |/ |
|
| | |
|
|/ |
|
|\
| |
| | |
Fix xscreensaver detection
|
|/
|
|
|
|
|
| |
Using pkg-config to find libraries requires explicit mention of the
relevant _CFLAGS and _LIBS variables.
Fixes #1695.
|
| |
|
| |
|
|\
| |
| | |
Show return symbol for embedded newlines
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| | |
Allow Readline to control when to redisplay the input line. This makes
text entered via /editor visible after editor is closed.
|
| |
| |
| |
| |
| | |
When doing an interactive search the prompt is needed to show the
current state of the search to avoid confusion.
|
|/
|
|
|
| |
Since /editor can be used also for commands it doesn't make sense to
restrict it to only connected state.
|
|\
| |
| | |
Mention C-x C-r (reload inputrc) in the man page
|
|/
|
|
|
| |
Add mentions of less-known but quite useful bindindings to the man
page.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|\
| |
| | |
Include useful aliases in profrc example
|
| |
| |
| |
| |
| |
| |
| |
| | |
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).
|
|\ \
| | |
| | | |
Allow bold for default colours
|
| | | |
|
|\ \ \
| | | |
| | | | |
Add irssi theme
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | |
| | | |
| | | | |
Fix theme load
When we execute `/theme load somethingthatdoesntexist` it still loaded some colors wrongly.
|
| | |/
| |/|
| | |
| | | |
doesn't exist
|
|\ \ \
| |_|/
|/| | |
Use correct colour for their nick when showing history
|
| |/ |
|
| |
| |
| |
| | |
See <https://github.com/profanity-im/profanity/issues/1512>
|
|/
|
|
| |
The variable `ccount->tls_policy` was not null-tested before `strcmp`.
|
|\
| |
| | |
Fix logging (this time for real)
|
|/
|
|
|
|
|
|
|
|
| |
... 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>
|
|\
| |
| | |
fix path where logs are stored
|
|/
|
|
|
|
|
| |
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>
|
|\
| |
| | |
Tab completion code simplification
|
| |
| |
| |
| |
| |
| | |
Factor out common code for Tab and Shift-Tab in a separate function.
No functional change.
|
|\ \
| | |
| | | |
Add Alt/Ctrl-arrows combinations for GNU Screen
|
| | |
| | |
| | |
| | |
| | |
| | | |
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".
|
|\ \ \
| | | |
| | | | |
Make all existing input functions bindable from config
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Even moar cleanup
|