Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-19 | Try to split long lines on spaces | Sebastian Thorarensen | |
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. | |||
2014-10-16 | Merge pull request #153 from dequis/help-server-remove-fix | Geert Hauwaerts | |
Tiny fix to the param order in the /SERVER REMOVE help | |||
2014-10-15 | Tiny fix to the param order in the /SERVER REMOVE help | dequis | |
2014-10-15 | Add NEWS entry on SSLv3 | Alexander Færøy | |
2014-10-15 | Disable SSLv3 | Alexander Færøy | |
2014-10-11 | Add header for v0.8.18-head | Alexander Færøy | |
2014-10-11 | Remove unnecessary NULL check | Alexander Færøy | |
Fixes: #135 | |||
2014-10-11 | HEAD's now 0.8.18-head. | Alexander Færøy | |
2014-10-11 | Prepare for 0.8.17 | Alexander Færøy | |
2014-10-06 | Merge pull request #147 from ahf/bugfix-143 | Alexander Færøy | |
Fix use-after-free bug with cached settings values | |||
2014-10-01 | Merge pull request #140 from sebth/master | Alexander Færøy | |
Make line splitting fail-safe | |||
2014-10-01 | Merge pull request #142 from dequis/away-with-no-reason | Alexander Færøy | |
irc_server_send_away: don't send empty param if there's no away reason | |||
2014-09-30 | Fix use-after-free bug with cached settings values | Alexander Færøy | |
This patch fixes a couple of use-after-free bugs when caching various string related setting values. Fixes: #143 | |||
2014-09-11 | Merge pull request #144 from jubalh/master | Geert Hauwaerts | |
source cleanup: remove trailing whitespaces | |||
2014-09-11 | source cleanup: remove trailing whitespaces | Michael Vetter | |
2014-09-09 | irc_server_send_away: don't send empty param if there's no away reason | dequis | |
2014-09-01 | Make line splitting fail-safe | Sebastian Thorarensen | |
The userhost Irssi uses for line splitting can in some cases be wrong, for instance when a proxy is used or when a server cloaks the hostname without telling the client. Now Irssi always assumes the userhost is of maximum length. 10 for username (common value) and 63 for hostname (in RFC 2812). | |||
2014-08-31 | Head is now 0.8.17-head. | Alexander Færøy | |
2014-08-31 | Prepare for irssi 0.8.17-rc2. | Alexander Færøy | |
2014-08-26 | Merge pull request #134 from ailin-nemui/missing-printtext-after-signal | Alexander Færøy | |
Add the signal for printtext_after that was missed in the original commit. | |||
2014-08-25 | Add the signal for printtext_after that was missed in the original commit. | Ailin Nemui | |
Now properly sends "gui print text after finished" signal when using the printtext_after API that was fixed after 0.8.16 | |||
2014-08-09 | Merge pull request #123 from ailin-nemui/terminfo-scroll-check-bounds | Alexander Færøy | |
Add bounds check to array access in terminfo driver. | |||
2014-08-09 | Add bounds check to array access in terminfo driver. | Ailin Nemui | |
this fixes a crash due to illegal memory access that can occur if something is printed to the screen on the "terminal resized" handler. It is not clear to me whether this race condition can be triggered by external incoming messages, but it might be better safe than sorry. | |||
2014-08-08 | Merge pull request #109 from cpbills/master | tomaw | |
Fix right aligned statusbar item redrawing | |||
2014-08-07 | Updated ALIAS help | Geert Hauwaerts | |
Updated ALIAS help. | |||
2014-08-07 | Applied grammar and styling corrections | Geert Hauwaerts | |
Applied grammar and styling corrections. | |||
2014-08-05 | Syntax rewrite of U-Z commands | Geert Hauwaerts | |
Rewrote the syntax documentation of U-Z commands. | |||
2014-08-05 | Merge pull request #118 from ailin-nemui/mirc_blink_fix-fix | Alexander Færøy | |
fix mirc_blink_fix | |||
2014-08-05 | Merge pull request #121 from dgl/rawlog-fix | Alexander Færøy | |
Fix rawlog saving after dac67a5 broke it | |||
2014-08-05 | Fix rawlog saving after dac67a5 broke it | David Leadbeater | |
2014-07-31 | fix mirc_blink_fix | Ailin Nemui | |
the background colours were totally off with mirc_blink_fix enabled. oops. reported by wodim | |||
2014-07-30 | Fixed a typo in the cmdmax argument | Geert Hauwaerts | |
Fixed a typo in the cmdmax argument. | |||
2014-07-30 | Updated the documentation for LIST | Geert Hauwaerts | |
Updated the documentation for LIST. | |||
2014-07-30 | Merge pull request #112 from ailin-nemui/italics-exception | Geert Hauwaerts | |
fix rules for italics emphasis | |||
2014-07-30 | Removed the default autojoin channels | Geert Hauwaerts | |
Removed the default autojoin channels. | |||
2014-07-30 | Syntax rewrite for S-commands | Geert Hauwaerts | |
Rewrote the syntax documentation for all commands starting with S. | |||
2014-07-30 | Removed the obsolete SQUERY and SERVLIST commands | Geert Hauwaerts | |
Removed the obsolete SQUERY and SERVLIST commands. | |||
2014-07-25 | Fix typo in help for network command | tomaw | |
2014-07-24 | Merge pull request #111 from ailin-nemui/colour-break | Geert Hauwaerts | |
fix colour 0 again | |||
2014-07-24 | fix rules for italics emphasis | Ailin Nemui | |
while the last patch did stop /path/.xxx from turning italic, it also stopped any other /emphasis/ from becoming italic. correct this by testing for ispunct, so spaces are valid italic terminators | |||
2014-07-24 | fix colour 0 again | Ailin Nemui | |
the previous commit was broken, as it conflicted with the colour \#000000. Now both the "real colour black" and the "terminal colour 0" are working. | |||
2014-07-23 | Merge pull request #110 from ailin-nemui/colour-break | Geert Hauwaerts | |
restore the colour 0 ("black") that got broken by extended colours | |||
2014-07-23 | restore the colour 0 ("black") that got broken by extended colours | Ailin Nemui | |
the colour 0 was broken by the extended colours patch because it needs an explicit bit check (lower bits will be false since it is 0) Thanks to lhynes for the report | |||
2014-07-22 | Fix right aligned statusbar item redrawing | Christopher P. Bills | |
Fixes Github issue #97 https://github.com/irssi/irssi/issues/97 Fix proposed by ailin-nemui, built and tested on Debian Jessie using 0.8.15 source, tested by GeertHauwaerts as well. | |||
2014-07-20 | Merge pull request #100 from ailin-nemui/24bit-uninitialised | Alexander Færøy | |
fix uninitialised copy on 24bit colours | |||
2014-07-18 | fix uninitialised copy on 24bit colours | Ailin Nemui | |
2014-07-15 | Syntax rewrite for R-commands | Geert Hauwaerts | |
Rewrote the syntax documentation for all commands starting with the letter R. | |||
2014-07-14 | Removed the obsolete RPING command | Geert Hauwaerts | |
The RPING command is obsolete. | |||
2014-07-14 | Fixing a typo | Geert Hauwaerts | |
Fixing a typo. | |||
2014-07-13 | Merge pull request #96 from dgl/news-update | Alexander Færøy | |
Update NEWS |