Age | Commit message (Collapse) | Author |
|
irc-cap.c has now a licence header.
A minor style fix in misc.c
|
|
[RFC] CAP support
|
|
Patch by @dequis
|
|
|
|
1k+ windows are now the default formatting (#223)
|
|
Fail instead of crash, if irc_server_connect is called without object.
(#208)
|
|
|
|
|
|
Make config parser more robust
|
|
Change all strcmp() to g_strcmp0() to handle nulls gracefully
|
|
and warn when no cipher suite could be selected.
|
|
|
|
I wrote some tests to compare the behavior but I don't know where to put
them, so i'm including them here:
assert(g_strcmp0("a", "b") == -1);
assert(g_strcmp0(NULL, "a") == -1);
assert(g_strcmp0("a", NULL) == 1);
assert(g_strcmp0("b", "a") == 1);
assert(g_strcmp0("a", "a") == 0);
assert(g_strcmp0(NULL, NULL) == 0);
|
|
|
|
Just a string replacement (but i did check every one of them)
sed -i 's/strcmp(/g_strcmp0(/g' **/*.c
|
|
Make sure NO_ACT isn't cleared when -actcolor %n is used
|
|
|
|
Fixes issue #227.
|
|
Added a -date parameter to /lastlog to prepend each row with the ...
|
|
Silence unused value warnings in perl binding code
|
|
|
|
We add some additional checks into the config parser's
node_section_index, node_traverse and node_set_str functions. In
particular, we check if the requested node is of scalar or complex type
and whether this matches the value found in the config. If it does not
match, then a warning is issued appropriately and the config is
corrected.
|
|
By temporarily raising the fatal log level to critical during irssi
start-up, we make it fail when the config file is broken. This is then
re-set so that /reload of a broken config file will not crash irssi and
just report the errors and gracefully continue instead.
|
|
The change introduced in #191 will crash irssi immediately if you
accidentally try to /reload certain broken config files. It is enough to
warn the user in this case, so we turn g_error into g_critical.
|
|
this adds the CONFIG_REC * to the config_node_section and
config_node_section_index APIs as they will require access to the config
cache later on to make the config parser more robust.
|
|
Make ^ key and Ctrl+^ key usable with /BIND
|
|
sed -i 's/hv_store/(void) &/'
This only results in a warning in older gcc versions, but that includes
the one used in the Travis CI environment by default
|
|
|
|
|
|
|
|
|
|
|
|
Die if the wrong type of node is found when traversing config
|
|
Try to split long lines on spaces
|
|
Fix reset of attributes with ansi
|
|
Speed up /reload when there are many ignores.
|
|
Fix blinking/bold text in terminals with no color support
|
|
Fixes issue #187. It's a bit annoying this can't do anything other than
exit, however as there's no schema for the config it's only possible to
validate on use. This level of config can't be accessed from Perl so a
script can't cause Irssi to die (via this method at least).
|
|
Before this, doing "TERM=vt100 irssi" showed all text as bold and
blinking because of a failed check of window->term->TI_colors that
was doing (value & 8) and not expecting a value of 0.
The changed lines themselves look a bit weird, but they make more sense
in the context of the original commit, 96a292d4.
|
|
Documentation fix for #185
|
|
Update old bug URLs
|
|
Receive 'self messages' in the right query window
|
|
typo fixes - https://github.com/vlajos/misspell_fixer
|
|
|
|
|
|
|
|
reported by Christopher Ohlsson (dmnc)
|
|
Original patch by hondza <sedaj2@gmail.com>, from FS#833. I applied
several needed style changes, and rebased to current HEAD.
This implements the IRCv3.2 self-message extension partially (we can't
announce its support through CAP yet). This is also the format used by
the 'privmsg' znc module, and is already implemented by several other
clients.
|
|
At some point in the past few years, Flyspray changed its URL scheme from id=nnn to task_id=nnn, which broke some old comments in the source. Update those comments to URLs that still work.
|
|
Try to split long lines on spaces to avoid words being splitted. This
can be turned off with the option `split_line_on_space'. The code
assumes that the terminal encoding has ASCII spaces.
|