summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-03-10amend forgotten fixailin-nemui
(cherry picked from commit 0ada284a257cfb08da984a78dab24c3ddaf09ec7)
2017-03-10Merge pull request #652 from LemonBoy/trailing-argailin-nemui
Properly check the command arguments in tail place. commit 5a92a3926fab4def4bcb7d14642b93184eeb4f71 Merge: 647ef193a896cc8a97d9bc664a6337b8b779f3c4 e4601b4b43af6177375c90a423546d892fbf6bfd Rebased: e4601b4b43af6177375c90a423546d892fbf6bfd dc99f8d7a5f90eebd4c52cef8d186bf20e2a9912
2017-03-10Merge branch 'netjoin-timeout' into 'master'Ailin Nemui
fe-netjoin: remove irc servers on "server disconnected" signal Closes #7 See merge request !10
2017-03-10Merge pull request #669 from dequis/expand-double-backslashailin-nemui
expand_escape: expand double backslash as a backslash
2017-03-08expand_escape: expand double backslash as a backslashdequis
2017-03-08Merge pull request #667 from ailin-nemui/fix-dcc-getailin-nemui
fix dcc get fixes #656
2017-03-07Merge pull request #659 from ailin-nemui/foreach_dontspamailin-nemui
make foreach send commands
2017-03-07fix dcc getailin-nemui
fixes #656
2017-03-06Merge pull request #666 from irssi/revert-658-dcc-autoacceptailin-nemui
Revert "Quote the filename when dcc requests are auto accepted."
2017-03-06Revert "Quote the filename when dcc requests are auto accepted."ailin-nemui
2017-03-04Merge pull request #658 from LemonBoy/dcc-autoacceptailin-nemui
Quote the filename when dcc requests are auto accepted.
2017-03-04Properly check the command arguments in tail place.LemonBoy
A command requiring an argument and given in tail position would not raise an error but silently set the value to the empty string ''.
2017-03-04Merge branch 'd-minor' into 'master' Nei
Prevent some potential null-pointer deferences. See merge request !9
2017-03-02Merge pull request #661 from Stevie-O/masterailin-nemui
Fix Segfault when unloading a script that registers for 'script destroyed' signals Closes #660
2017-02-28Don't emit the script destroyed signal before script is actually destroyedStephen Oberholtzer
The script unloading code originally worked like this: 1. Destroy package 2. Emit 'script destroyed' signal 3. Unhook script's signal handlers If a script added a 'script destroyed' signal handler, unloading that script would cause the 'script destroyed' signal to be sent to the (already destroyed) package. This would cause a script error, which would trigger a script unload, which would start the whole process over again, until we run out of heap or stack space and segfault. This commit simply reorders the operations so that the 'script destroyed' signal is sent *after* the script is fully destroyed.
2017-02-27fe-netjoin: remove irc servers on "server disconnected" signaldequis
2017-02-27Merge pull request #647 from dequis/fix-early-ison-take-2ailin-nemui
notify-ison: Don't send ison before the connection is done
2017-02-27make foreach send commandsailin-nemui
2017-02-22Handle file names with quotes.LemonBoy
Let's repurpose escape_string and make it more flexible by letting us choose the characters to escape.
2017-02-21Quote the filename when dcc requests are auto accepted.LemonBoy
PR #453 forces the user to quote the filenames given to /DCC commands when they contain spaces but the autoget functionality didn't get updated so the filename was always passed without quotes. Closes #656.
2017-02-15Merge pull request #627 from LemonBoy/ssl-expiryailin-nemui
Check whether the client certificate is expired.
2017-02-15Merge pull request #649 from LemonBoy/issue-559ailin-nemui
Do not alias /server <hostname> to /server connect <hostname>
2017-02-14Do not alias /server <hostname> to /server connect <hostname>LemonBoy
Closes #559.
2017-02-14Prevent some potential null-pointer deferences.LemonBoy
Spotted by our friend scan-build.
2017-02-11notify-ison: Don't send ison before the connection is donedequis
2017-02-06Merge pull request #622 from ailin-nemui/starttlsailin-nemui
provide net_start_ssl api
2017-02-05provide net_start_ssl apiailin-nemui
fixes #615
2017-02-05Merge pull request #628 from LemonBoy/openssl-compatailin-nemui
Support OpenSSL 1.1.0.
2017-02-05Merge pull request #639 from ear/themes-inline-doc-consistencyailin-nemui
Make themes' docs more consistent.
2017-02-05Merge branch 'integrate/1.0.1'ailin-nemui
2017-02-05tag as 1.0.1ailin-nemui
2017-02-05Make themes' docs more consistent.Paolo
Mentioning "sb-item" was misleading in that there is no such template, nor any occurrence of that exact string anywhere else in the source. In going from `sb-item` to `"sb"` I am following the pattern established in a couple of comments above: "msgownnick" specifies the styling … "ownmsgnick" specifies …
2017-02-03Merge branch 'dub-the-wub' into 'master' Nei
Prevent a memory leak during the processing of the SASL response. See merge request !8
2017-02-03Merge pull request #624 from ailin-nemui/mail_plailin-nemui
sync mail.pl
2017-02-03Merge pull request #619 from hannob/masterLemonBoy
perl_parse needs NULL terminated parameter list.
2017-02-03Merge pull request #613 from ailin-nemui/fix_completionLemonBoy
fix regression in completion
2017-02-03Merge pull request #608 from tijko/masterLemonBoy
Follow g_strsplit with call to g_strfreev
2017-02-03Merge pull request #606 from or4n/masterailin-nemui
Fix syntax on /help SERVER example
2017-02-03Merge pull request #604 from dequis/solarisailin-nemui
Add OPENSSL_NO_EC for solaris 11.3, see issue #598
2017-02-03Merge pull request #602 from McDutchie/masterailin-nemui
make irssi --with-perl build with separate object directory
2017-02-03Support OpenSSL 1.1.0.LemonBoy
- X509_get_notBefore becomes X509_get0_notBefore - X509_get_notAfter becomes X509_get0_notAfter - ASN1_STRING_data becomes ASN1_STRING_get0_data (and drops the const) - The whole library is now initialized by OPENSSL_init_ssl Closes #597
2017-02-03Merge branch 'dub-the-wub' into 'master' Nei
Prevent a memory leak during the processing of the SASL response. See merge request !8
2017-01-31Merge pull request #590 from LemonBoy/hi-minorailin-nemui
Minor cleanup in the highlighting signal.
2017-01-31Merge pull request #626 from ailin-nemui/textbuffer_monospaceailin-nemui
support storing and replaying the monospace attribute in textbuffer
2017-01-24Prevent a memory leak during the processing of the SASL response.LemonBoy
We also get rid of an allocation in the process of doing so.
2017-01-22Check whether the client certificate is expired.LemonBoy
Right now we only warn the user, the connection keeps going. Fixes #211
2017-01-21Merge pull request #625 from ailin-nemui/chirssiailin-nemui
implement break_wide
2017-01-21Merge pull request #624 from ailin-nemui/mail_plailin-nemui
sync mail.pl
2017-01-20implement break_wideailin-nemui
for more pleasant east asian mixed display
2017-01-19sync mail.plailin-nemui