mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-18 09:59:37 +01:00
239e3de8ea
Two quotegrabs_db backends are now availble: * Quotegrabs_Hashtable.pm: the original hashtable implementation * Quotegrabs_SQLite.pm: the new SQLite implementation Quotegrabs_SQLite.pm is now the default quotegrabs_db backend. This was done to reduce the memory footprint of the bot by not needing to keep the entire quotegrabs table in memory any longer. A similiar change will be coming soon to the Factoids table as well as the MessageHistory table.
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 => 566,
|
|
BUILD_DATE => "2014-05-05",
|
|
};
|
|
|
|
1;
|