From e6558175848768f1093fc3654a15735fe3658097 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Fri, 2 Oct 2015 10:24:58 +0000 Subject: [PATCH] * increase reminder popup chance to 40% --- source/net/filebot/Main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/net/filebot/Main.java b/source/net/filebot/Main.java index 7e37afe2..1cf8cecf 100644 --- a/source/net/filebot/Main.java +++ b/source/net/filebot/Main.java @@ -251,8 +251,8 @@ public class Main { // make sure any long running operations are done now and not later on the shutdownhook thread HistorySpooler.getInstance().commit(); - // show donation / review reminders to power users (more than 2000 renames) but at most 20% of the time as to not overly annoy user that simply don't want to donate - float chance = 0.2f; + // show donation / review reminders to power users (more than 2000 renames) + float chance = 0.4f; int renameCount = HistorySpooler.getInstance().getPersistentHistoryTotalSize(); if (renameCount > 2000 && Math.random() < chance) {