diff options
| author | ailin-nemui | 2017-03-07 08:07:58 +0100 |
|---|---|---|
| committer | GitHub | 2017-03-07 08:07:58 +0100 |
| commit | 9a4868007cb9167693220e1090acc7eebac848b5 (patch) | |
| tree | 143da4fdeebc4686130f925905c5c8ead69e1d21 /scripts | |
| parent | 5e32fdbbb55a28b6c9753f3a525b84eb271ad134 (diff) | |
| parent | c157fa194f4ec008a4d3c763043f1e73e07a013b (diff) | |
| download | scripts.irssi.org-9a4868007cb9167693220e1090acc7eebac848b5.tar.bz2 | |
Merge pull request #361 from bw1/pager
[pager] declaration $VERSION %IRSSI
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/pager.pl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/pager.pl b/scripts/pager.pl index 32f0902..50d7899 100644 --- a/scripts/pager.pl +++ b/scripts/pager.pl @@ -2,14 +2,16 @@ use strict; use Irssi 20020121.2020 (); -$VERSION = "1.1"; + +use vars qw/$VERSION %IRSSI/; +$VERSION = "1.2"; %IRSSI = ( authors => 'Jean-Yves Lefort', contact => 'jylefort\@brutele.be', name => 'pager', description => 'Notifies people if they send you a private message or a DCC chat offer while you are away; runs a shell command configurable via /set if they page you', license => 'BSD', - changed => '$Date: 2003/01/27 09:45:16 $ ', + changed => '$Date: 2017/03/06 $ ', ); # note: @@ -33,6 +35,9 @@ $VERSION = "1.1"; # # changes: # +# 2017-03-06 release 1.2 +# * declaration $VERSION %IRSSI +# # 2003-01-27 release 1.1 # * notices and commands are now optional # |
