From 33f82ce1d8dd004492c6325b444af19ee7383bed Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Thu, 19 Sep 2013 10:49:47 +0200 Subject: [PATCH 1/6] Added my new FTC address to donation list --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 84907d5d..7c1f5de2 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,10 @@ Donations I was hoping to keep this out of the README but apparently people remove or change the LTC address at the bottom of the page. For those of you finding my project and are willing to appreciate the work -with some hard earned LTC feel free to donate to my LTC address: `Lge95QR2frp9y1wJufjUPCycVsg5gLJPW8` +with some hard earned coins feel free to donate: + +* LTC address: `Lge95QR2frp9y1wJufjUPCycVsg5gLJPW8` +* FTC address: `6jDgGaUzMVyac5uqBhJCMiFMKCtH1LagTA` # Website Footer From 27b4e292d73d187e9626ddf766e35d37db9e5adc Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Thu, 19 Sep 2013 11:31:27 +0200 Subject: [PATCH 2/6] Update README.md Added NVC address --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7c1f5de2..5cc379a5 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ with some hard earned coins feel free to donate: * LTC address: `Lge95QR2frp9y1wJufjUPCycVsg5gLJPW8` * FTC address: `6jDgGaUzMVyac5uqBhJCMiFMKCtH1LagTA` +* NVC address: `4Guct6z7NVPVALHRAVn517TTmvqQve4WYr` # Website Footer From c9036714ea9446aabf60c61b0183e3c76423dfae Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Thu, 19 Sep 2013 12:03:13 +0200 Subject: [PATCH 3/6] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5cc379a5..626deec5 100644 --- a/README.md +++ b/README.md @@ -82,8 +82,9 @@ The following feature have been implemented so far: * Reward Systems * Propotional * PPS - * PPLNS **NEW** + * PPLNS * Statistics are cached in Memcache by Cronjob for quick data access + * **NEW** Now supporting incremental round share updates! * Web User accounts * Re-Captcha protected registration form * Worker accounts @@ -97,10 +98,10 @@ The following feature have been implemented so far: * Auto payout * Transaction list (confirmed and unconfirmed) * Admin Panel - * Cron Monitoring Overview **NEW** + * Cron Monitoring Overview * User Listing including statistics * Wallet information - * User Transactions **NEW** + * User Transactions * News Posts * Notification system * IDLE Workers From 890763b865166235a7ea6a5e7a02a6489f0fbd8c Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Thu, 19 Sep 2013 12:07:23 +0200 Subject: [PATCH 4/6] Update README.md Updating pool feature set. --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 626deec5..86e2c345 100644 --- a/README.md +++ b/README.md @@ -85,29 +85,36 @@ The following feature have been implemented so far: * PPLNS * Statistics are cached in Memcache by Cronjob for quick data access * **NEW** Now supporting incremental round share updates! +* **SOON** New Theme + * **SOON* Live Dashboard + * **SOON** AJAX Support + * **SOON** Overhauled API * Web User accounts * Re-Captcha protected registration form * Worker accounts - * Worker activity (live, past 10 minutes) - * Worker hashrates (live, past 10 minutes) + * Worker activity + * Worker hashrates * Pool statistics * Minimal Block statistics * Pool donations * Pool fees +* Block Bonus Payouts **NEW** * Manual payout * Auto payout -* Transaction list (confirmed and unconfirmed) +* Transaction list * Admin Panel * Cron Monitoring Overview * User Listing including statistics * Wallet information * User Transactions * News Posts + * Pool Settings **NEW** * Notification system * IDLE Workers * New blocks found in pool * Auto Payout * Manual Payout +* User-to-user Invitation System **NEW** * Support for various Scrypt based coins via config * MNC * LTC From 3220642b2258fe51c06bf10f4b797086345b7dd2 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Thu, 19 Sep 2013 12:07:48 +0200 Subject: [PATCH 5/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 86e2c345..0289c60d 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ The following feature have been implemented so far: * Statistics are cached in Memcache by Cronjob for quick data access * **NEW** Now supporting incremental round share updates! * **SOON** New Theme - * **SOON* Live Dashboard + * **SOON** Live Dashboard * **SOON** AJAX Support * **SOON** Overhauled API * Web User accounts From ab90b045c030fb28aff0f180250c11cc82d08174 Mon Sep 17 00:00:00 2001 From: Sebastian Grewe Date: Fri, 20 Sep 2013 16:07:57 +0200 Subject: [PATCH 6/6] [FIX #662] IDLE Worker False Positives --- public/include/classes/worker.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/include/classes/worker.class.php b/public/include/classes/worker.class.php index 88999e1c..551e47f7 100644 --- a/public/include/classes/worker.class.php +++ b/public/include/classes/worker.class.php @@ -78,7 +78,7 @@ class Worker { FROM " . $this->table . " AS w WHERE monitor = 1 AND ( - SELECT IFNULL(SIGN(IF(our_result = 'Y', COUNT(id), 0)), 0) FROM " . $this->share->getTableName() . " WHERE username = w.username AND time > DATE_SUB(now(), INTERVAL 10 MINUTE) + SELECT IFNULL(SUM(IF(our_result = 'Y', 1, 0)), 0) FROM " . $this->share->getTableName() . " WHERE username = w.username AND time > DATE_SUB(now(), INTERVAL 10 MINUTE) ) = 0"); if ($this->checkStmt($stmt) && $stmt->execute() && $result = $stmt->get_result()) return $result->fetch_all(MYSQLI_ASSOC);