From: Matt Mullins Date: Tue, 9 Sep 2014 06:25:21 +0000 (-0700) Subject: Release 12, IRC application vsn 12. X-Git-Tag: v15~9 X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=1d0ea0730bbca25209d1a69414063fea45ea6832;p=erlbot.git Release 12, IRC application vsn 12. This release switches the bot's replies to using NOTICE rather than PRIVMSG. --- diff --git a/bot.rel b/bot.rel index 4676f4a..6ba37e7 100644 --- a/bot.rel +++ b/bot.rel @@ -1,4 +1,4 @@ -{release, {"erlbot", "11"}, +{release, {"erlbot", "12"}, {erts, "5.8.3"}, [{kernel, "2.14.5"}, {stdlib, "1.17.5"}, @@ -7,5 +7,5 @@ {amqp_client, "0.0.0"}, {core, "2"}, {amqp, "2"}, - {irc, "11"}] + {irc, "12"}] }. diff --git a/irc/irc.app b/irc/irc.app index 45e9599..8077632 100644 --- a/irc/irc.app +++ b/irc/irc.app @@ -1,6 +1,6 @@ {application, irc, [{description, "IRC protocol application"}, - {vsn, "11"}, + {vsn, "12"}, {modules, [irc_util, irc_app, irc_sup, irc_net_sup, irc_conn, irc_object_sup, irc_amqp_listener, irc_command]}, {registered, [irc_sup, irc_dummy]}, diff --git a/irc/irc.appup b/irc/irc.appup index 2067929..4271b48 100644 --- a/irc/irc.appup +++ b/irc/irc.appup @@ -1,8 +1,10 @@ -{"11", - [{"10", - [{update, irc_conn, {advanced, ok}} +{"12", + [{"11", + [{update, irc_command}, + {update, irc_amqp_listener} ]}], - [{"10", - [{update, irc_conn, {advanced, ok}} + [{"11", + [{update, irc_command}, + {update, irc_amqp_listener} ]}] }.