commit 1cf034cffbd8cbc372c092f2e3733705363752a0
Author: Ben Axnick <baxnick@milamber.axnick.com.au>
Date:   Wed Mar 19 22:39:24 2008 +1100

    Remove arbitrary limitations on scheduler settings

diff --git a/plugin.py b/plugin.py
index c43bd28..9ac8667 100644
--- a/plugin.py
+++ b/plugin.py
@@ -110,11 +110,11 @@ class plugin_Scheduler:
         #data
         spin = {}
         boxen = [
-                 ["down", _("Download limit:"), -1, 2048], 
-                 ["up", _("Upload limit:"), -1, 1024],
-                 ["activetorrents", _("Active torrents:"), 0, 128],
-                 ["numslots", _("Upload Slots:"), 0, 128],
-                 ["maxconns", _("Max Connections:"), 0, 1024]]
+                 ["down", _("Download limit:"), -1, 100000], 
+                 ["up", _("Upload limit:"), -1, 100000],
+                 ["activetorrents", _("Active torrents:"), 0, 10000],
+                 ["numslots", _("Upload Slots:"), 0, 10000],
+                 ["maxconns", _("Max Connections:"), 0, 10000]]
         
         #dialog
         dialog = gtk.Dialog(_("Scheduler Settings"))
