aboutsummaryrefslogtreecommitdiff
path: root/lib/MasterServer/Core
diff options
context:
space:
mode:
authorDarkelarious <darkelarious@333networks.com>2015-11-08 15:42:27 +0100
committerDarkelarious <darkelarious@333networks.com>2015-11-08 15:42:27 +0100
commit8b3d393e7755c167eebe4d9f7fc786074f12e9af (patch)
tree756afc39bc4e5794c51b7a947ff3832b341cbb6b /lib/MasterServer/Core
parent2c7d62f38944f61e7eafea155c6128521d16aed9 (diff)
downloadMasterServer-Perl-8b3d393e7755c167eebe4d9f7fc786074f12e9af.tar.gz
MasterServer-Perl-8b3d393e7755c167eebe4d9f7fc786074f12e9af.zip
Full support for Postgres, MySQL and SQLite3 + minor bug fixes
Diffstat (limited to 'lib/MasterServer/Core')
-rwxr-xr-xlib/MasterServer/Core/Core.pm2
-rwxr-xr-xlib/MasterServer/Core/Version.pm9
2 files changed, 5 insertions, 6 deletions
diff --git a/lib/MasterServer/Core/Core.pm b/lib/MasterServer/Core/Core.pm
index 0e0cd58..4cd6063 100755
--- a/lib/MasterServer/Core/Core.pm
+++ b/lib/MasterServer/Core/Core.pm
@@ -61,7 +61,7 @@ sub main {
my @db_type = split(':', $self->{dblogin}->[0]);
# format supported?
- if ( "Pg SQLite" =~ m/$db_type[1]/i) {
+ if ( "Pg SQLite mysql" =~ m/$db_type[1]/i) {
# inform us what DB we try to load
$self->log("load","Loading $db_type[1] database module.");
diff --git a/lib/MasterServer/Core/Version.pm b/lib/MasterServer/Core/Version.pm
index aba692f..ccf9491 100755
--- a/lib/MasterServer/Core/Version.pm
+++ b/lib/MasterServer/Core/Version.pm
@@ -23,18 +23,17 @@ sub version {
# these fields does not count as a significant alteration.
#
# -- addition to the LICENCE, you are only allowed to modify these lines
- # if you send Darkelarious a postcard or email with your compliments or,
- # in case of a company editing, a letter of (re)commendation.
+ # if you send Darkelarious a postcard or email with your compliments.
#
# master type
- $self->{build_type} = "333networks Masterserver-Perl (Pg-SQLite) 20150519208";
+ $self->{build_type} = "333networks Masterserver-Perl (Pg-SQLite-MySQL) 20151108209";
# version
- $self->{build_version} = "2.0.8";
+ $self->{build_version} = "2.0.9";
# date yyyy-mm-dd
- $self->{build_date} = "2015-05-19";
+ $self->{build_date} = "2015-11-08";
#author, email
$self->{build_author} = "Darkelarious, darkelarious\@333networks.com";