From: martin f. krafft Date: Fri, 17 Sep 2021 05:36:34 +0000 (+0200) Subject: Prepare 1.5 release X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=e0755977a58b9b1302b371e0c36a64c5a7cb1712;p=irssi-scripts.irssi.org.git Prepare 1.5 release Signed-off-by: martin f. krafft --- diff --git a/scripts/ctrlact.pl b/scripts/ctrlact.pl index 052ae41..90c9d7b 100644 --- a/scripts/ctrlact.pl +++ b/scripts/ctrlact.pl @@ -78,6 +78,15 @@ # ### Changelog: # +# 2021-09-20 : v1.5 +# * Introduce snoop and sleep. Snooping means ctrlact will apply rules as if +# you had just been active on the channel, and sleeping means that ctrlact +# applies rules as if you hadn't been active recently. +# * Also display the time remaining when an attention-span rule matches +# * Sanity checks on the fallback settings +# * Implement /ctrlact help +# * Fix /ctrlact show with an empty ruleset +# # 2021-09-11 : v1.4 # * Let rules be defined and removed with /ctrlact add/remove # * Implement saving of map file @@ -112,7 +121,7 @@ use Irssi; use Text::ParseWords; use version; -our $VERSION = version->parse('1.4'); +our $VERSION = version->parse('1.5'); our %IRSSI = ( authors => 'martin f. krafft', @@ -122,7 +131,7 @@ our %IRSSI = ( license => 'MIT', url => 'https://github.com/irssi/scripts.irssi.org/blob/master/scripts/ctrlact.pl', version => $VERSION, - changed => '2021-09-11' + changed => '2021-09-20' ); ### DEFAULTS AND SETTINGS ######################################################