From: Eric S. Raymond Date: Mon, 1 Oct 2012 06:19:33 +0000 (-0400) Subject: Version bump for release. X-Git-Tag: 1.3~3 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=9f0210dc6e8220685d19cb420c013dd69c1111fd;p=irker.git Version bump for release. --- diff --git a/NEWS b/NEWS index f2b0c68..92f17be 100644 --- a/NEWS +++ b/NEWS @@ -13,12 +13,14 @@ Message reduction - irkerhook drops the filelist on excessively long ones. Shell quote hardening in irkerhook.py and some anti-DoS logic. -1.3 @ +1.3 @ 2012-10-01 Support for an irker.conf file to set irkerhook variables under Subversion. Color highlighting of notification fields can be enabled. irkerhook.py now has its own manual page. Added channelmax variable for rate-limiting. irkerd now uses green threads, with much lower overhead. + Fix a bug in handling of channel names with no prefix. + diff --git a/irkerd b/irkerd index 91199dc..d2030e6 100755 --- a/irkerd +++ b/irkerd @@ -61,7 +61,7 @@ import sys, json, getopt, urlparse, time, random import threading, Queue, SocketServer import irc.client, logging -version = "1.2" +version = "1.3" # Sketch of implementation: # diff --git a/irkerhook.py b/irkerhook.py index 02cd212..ebd85d5 100755 --- a/irkerhook.py +++ b/irkerhook.py @@ -39,7 +39,7 @@ default_channels = "irc://chat.freenode.net/%(project)s,irc://chat.freenode.net/ import os, sys, commands, socket, urllib, json -version = "1.2" +version = "1.3" def shellquote(s): return "'" + s.replace("'","'\\''") + "'"