diff options
| author | ailin-nemui | 2016-01-15 21:31:10 +0100 |
|---|---|---|
| committer | ailin-nemui | 2016-01-15 21:31:10 +0100 |
| commit | 9a6b9dc6bdd12a164403be0ab5eaf6032f2ad685 (patch) | |
| tree | d7e4064cac6d4049f60a74a7ecd00284111cc16c /scripts | |
| parent | 773c7ba9c045f12163771a258763a6a00ee4e642 (diff) | |
| parent | 162248a471f0e5c4e8245f766427e42fdb91bb48 (diff) | |
| download | scripts.irssi.org-9a6b9dc6bdd12a164403be0ab5eaf6032f2ad685.tar.bz2 | |
Merge pull request #214 from mh-source/gh-pages
mh_windowfill.pl v1.06
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/mh_windowfill.pl | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/scripts/mh_windowfill.pl b/scripts/mh_windowfill.pl index 550d239..6475d1d 100644 --- a/scripts/mh_windowfill.pl +++ b/scripts/mh_windowfill.pl @@ -1,6 +1,6 @@ ############################################################################## # -# mh_windowfill.pl v1.05 (20151206) +# mh_windowfill.pl v1.06 (20151220) # # Copyright (c) 2015 Michael Hansen # @@ -27,6 +27,8 @@ # with script: http://picpaste.com/e3b84ead852e3e77b12ed69383f1f80c.png # # history: +# v1.06 (20151220) +# added changed field to irssi header # v1.05 (20151206) # added a few comments # v1.04 (20151128) @@ -58,7 +60,7 @@ use strict; use Irssi 20100403; use Irssi::TextUI; -our $VERSION = '1.05'; +our $VERSION = '1.06'; our %IRSSI = ( 'name' => 'mh_windowfill', @@ -67,6 +69,7 @@ our %IRSSI = 'authors' => 'Michael Hansen', 'contact' => 'mh on IRCnet #help', 'url' => 'http://scripts.irssi.org / https://github.com/mh-source/irssi-scripts', + 'changed' => 'Sun Dec 20 05:07:00 CET 2015', ); ############################################################################## @@ -162,13 +165,13 @@ sub command_clear # ############################################################################## -windowfill_all(); - Irssi::signal_add_last('mainwindow resized', 'windowfill_all'); Irssi::signal_add_last('window created', 'windowfill'); Irssi::command_bind('clear', 'command_clear'); +windowfill_all(); + 1; ############################################################################## |
