diff options
-rw-r--r-- | slacktopic.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/slacktopic.pl b/slacktopic.pl index 0b2e5af..78a7b5c 100644 --- a/slacktopic.pl +++ b/slacktopic.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -# slacktopic.pl, by B. Watson <yalhcru@gmail.com>. +# slacktopic.pl, by B. Watson <urchlay@slackware.uk>. # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. # This is an irssi script that updates the ##slackware topic any time @@ -68,12 +68,12 @@ use Irssi qw/ our $VERSION = "0.2"; our %IRSSI = ( authors => 'B. Watson', - contact => 'yalhcru@gmail.com or Urchlay on libera.chat ##slackware', + contact => 'urchlay@slackware.uk or Urchlay on libera.chat ##slackware', name => 'slacktopic', description => 'Updates ##slackware /topic whenever there\'s a ' . 'security update in the Slackware ChangeLog.', license => 'WTFPL', - url => 'https://slackware.uk/~urchlay/repos/misc-scripts', + url => 'https://slackware.uk/~urchlay/repos/misc-scripts/plain/slacktopic.pl', ); ### Configurables. @@ -98,7 +98,7 @@ our $FAKE = 0; #our $changelog_url = #"http://ftp.slackware.com/pub/slackware/slackware64-14.2/ChangeLog.txt"; our $changelog_url = - "ftp://ftp.osuosl.org/pub/slackware/slackware-14.2/ChangeLog.txt"; + "ftp://ftp.osuosl.org/pub/slackware/slackware-15.0/ChangeLog.txt"; # Max time curl will spend trying to do its thing. It'll give up after # this many seconds, if it can't download the ChangeLog. |