From f15bd3a76912c207f44e0dfce4180b8af2a2bec6 Mon Sep 17 00:00:00 2001 From: Git Date: Thu, 29 Aug 2013 08:00:48 +0000 Subject: [PATCH] Empty commit --- classes/useragent.class.php | 5 +++-- gazelle.sql | 13 +++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/classes/useragent.class.php b/classes/useragent.class.php index 913c35dd..2c007072 100644 --- a/classes/useragent.class.php +++ b/classes/useragent.class.php @@ -18,10 +18,11 @@ class UserAgent { 'Blackberry' => 'BlackBerry Browser', //Big names 'Firefox' => 'Firefox', + 'OPR' => 'Opera Blink', # Opera 15+ (the version running Blink) + 'Opera' => 'Opera', 'Chrome' => 'Chrome', 'Safari' => 'Safari', - 'Opera' => 'Opera', - //Put chrome frame above IE + //Put Chrome Frame above IE 'chromeframe' => 'Chrome Frame', 'x-clock' => 'Chrome Frame', 'MSIE' => 'Internet Explorer', diff --git a/gazelle.sql b/gazelle.sql index 877464f7..b50979fc 100644 --- a/gazelle.sql +++ b/gazelle.sql @@ -283,6 +283,13 @@ CREATE TABLE `cover_art` ( UNIQUE KEY `GroupID` (`GroupID`,`Image`) ) ENGINE=InnoDB CHARSET utf8; +CREATE TABLE `currency_conversion_rates` ( + `Currency` char(3) NOT NULL, + `Rate` decimal(9,4) DEFAULT NULL, + `Time` datetime DEFAULT NULL, + PRIMARY KEY (`Currency`) +) ENGINE=InnoDB CHARSET utf8; + CREATE TABLE `do_not_upload` ( `ID` int(10) NOT NULL AUTO_INCREMENT, `Name` varchar(255) NOT NULL, @@ -310,6 +317,12 @@ CREATE TABLE `donations` ( KEY `Amount` (`Amount`) ) ENGINE=InnoDB CHARSET utf8; +CREATE TABLE `donations_bitcoin` ( + `BitcoinAddress` varchar(34) NOT NULL, + `Amount` decimal(24,8) NOT NULL, + KEY `BitcoinAddress` (`BitcoinAddress`,`Amount`) +) ENGINE=InnoDB CHARSET utf8; + CREATE TABLE `donor_forum_usernames` ( `UserID` int(10) NOT NULL DEFAULT '0', `Prefix` varchar(30) NOT NULL DEFAULT '',