Kaynağa Gözat

Up version number

Morten Brix Pedersen 25 yıl önce
ebeveyn
işleme
b9caa5a112
2 değiştirilmiş dosya ile 10 ekleme ve 8 silme
  1. 3 1
      docs/Changelog
  2. 7 7
      modules/Pisg.pm

+ 3 - 1
docs/Changelog

@@ -1,4 +1,4 @@
-pisg (0.29)
+pisg (0.29) - Sat, Nov 10th 2001
    * When using multiple channels, and not all channels have user pics, it was
      showing a big empty coloumn with no userpics. Now it checks whether any
      users in top xx has a userpic, and if yes, add the coloumn.
@@ -24,6 +24,8 @@ pisg (0.29)
      <andreas.henriksson@linux.se>)
    * Fix bug where when you had less than 5 urls in 'most referenced urls',
      one wasn't being shown. (thanks Hanno Hecker)
+   * 'Hello' and 'hello' are no longer treated as seperate words in 'Most
+     Referenced Words'
    * Added Estonian translation by comcute <comcute@surfdata.ee>
    * Added Italian translation by Pascal Brax <god@pascalbrax.com>
    * Added Catalan translatino by Roger Utgés (Nikoru) <nikoru@menta.net>

+ 7 - 7
modules/Pisg.pm

@@ -64,21 +64,21 @@ sub run
     $self->get_default_config_settings();
 
     print "pisg $self->{cfg}->{version} - Perl IRC Statistics Generator\n\n"
-        unless ($self->{cfg}->{silent});
+    unless ($self->{cfg}->{silent});
 
     # Init the configuration file (aliases, ignores, channels, etc)
     my $r = $self->init_config()
-        if ($self->{use_configfile});
+    if ($self->{use_configfile});
 
     print "Using config file: $self->{cfg}->{configfile}\n\n"
-        if ($r && !$self->{cfg}->{silent});
+    if ($r && !$self->{cfg}->{silent});
 
     $self->init_words()       # Init words. (Foulwords, ignorewords, etc.)
-        if ($self->{use_configfile});
+    if ($self->{use_configfile});
 
     # Init the debugging file.
     $self->init_debug()
-        unless ($self->{cfg}->{debugstarted});
+    unless ($self->{cfg}->{debugstarted});
 
     # Get translations from langfile
     $self->get_language_templates();
@@ -88,7 +88,7 @@ sub run
 
     # Optionaly parse the channel we were given in override_cfg.
     $self->do_channel()
-        unless ($self->{cfg}->{chan_done}{$self->{cfg}->{channel}});
+    unless ($self->{cfg}->{chan_done}{$self->{cfg}->{channel}});
 
     # Close the debugging file.
     $self->close_debug();
@@ -199,7 +199,7 @@ sub get_default_config_settings
 
         debug => 0,
         debugfile => 'debug.log',
-        version => "v0.29-cvs",
+        version => "v0.30-cvs",
     };
 
     # Parse the optional overriden configuration variables