mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-18 09:59:37 +01:00
54ac8ec0ef
Added MessageHistory.pm and MessageHistory_SQLite.pm. May eventually port and add MessageHistory_Hashtable.pm as was done with Quotegrabs, but this is not particularly high on the todo list. Antiflood.pm has been updated to use the new MessageHistory API. The `recall` command has been moved from Quotegrabs into MessageHistory. It also now has the ability to ignore messages containing the recall command itself, for improved usability. Likewise, the `grab` command will now ignore previous `grab` commands when grabbing by regex in order to prevent accidentally grabbing previous grab attempts. The `join` and `part` commands have been improved to accept multiple channels, and `part` will use the current channel if none is provided.
21 lines
304 B
Perl
21 lines
304 B
Perl
# File: VERSION.pm
|
|
# Author: pragma_
|
|
#
|
|
# Purpose: Keeps track of bot version.
|
|
|
|
# $Id$
|
|
|
|
package PBot::VERSION;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
# These are set automatically by the build/commit script
|
|
use constant {
|
|
BUILD_NAME => "PBot",
|
|
BUILD_REVISION => 569,
|
|
BUILD_DATE => "2014-05-13",
|
|
};
|
|
|
|
1;
|