Rev4112, Fix loading screen glitch, Change unstable trackers

This commit is contained in:
shortcutme 2019-07-04 14:39:41 +02:00
parent a252ec36f0
commit c1db963c76
No known key found for this signature in database
GPG Key ID: 5B63BAE6CB9613AE
4 changed files with 12 additions and 7 deletions

View File

@ -1,5 +1,5 @@
.console-container { width: 100%; z-index: 998; position: absolute; top: -100vh; padding-bottom: 100%; }
.console { background-color: #212121; height: 100vh; transform: translateY(0px); padding-top: 80px; box-sizing: border-box; }
.console-container .console { background-color: #212121; height: 100vh; transform: translateY(0px); padding-top: 80px; box-sizing: border-box; }
.console-top { color: white; font-family: Consolas, monospace; font-size: 11px; line-height: 20px; padding: 5px; height: 100%; box-sizing: border-box; letter-spacing: 0.5px;}
.console-text { overflow-y: scroll; height: 100%; color: #DDD; }
@ -18,4 +18,4 @@
.console .peer .line {
width: 187px; border-top: 1px solid #CCC; position: absolute; top: 20px; left: 20px;
transform: rotateZ(334deg); transform-origin: bottom left;
}
}

View File

@ -3,7 +3,7 @@
.console-container { width: 100%; z-index: 998; position: absolute; top: -100vh; padding-bottom: 100%; }
.console { background-color: #212121; height: 100vh; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -o-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px) ; padding-top: 80px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box ; }
.console-container .console { background-color: #212121; height: 100vh; -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -o-transform: translateY(0px); -ms-transform: translateY(0px); transform: translateY(0px) ; padding-top: 80px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box ; }
.console-top { color: white; font-family: Consolas, monospace; font-size: 11px; line-height: 20px; padding: 5px; height: 100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box ; letter-spacing: 0.5px;}
.console-text { overflow-y: scroll; height: 100%; color: #DDD; }
@ -24,6 +24,7 @@
-webkit-transform: rotateZ(334deg); -moz-transform: rotateZ(334deg); -o-transform: rotateZ(334deg); -ms-transform: rotateZ(334deg); transform: rotateZ(334deg) ; transform-origin: bottom left;
}
/* ---- plugins/Sidebar/media/Menu.css ---- */

View File

@ -55,6 +55,7 @@
}).call(this);
/* ---- plugins/Sidebar/media/Console.coffee ---- */
@ -366,6 +367,7 @@
}).call(this);
/* ---- plugins/Sidebar/media/RateLimit.coffee ---- */
@ -394,6 +396,7 @@
}).call(this);
/* ---- plugins/Sidebar/media/Scrollable.js ---- */
@ -1275,6 +1278,7 @@ window.initScrollable = function () {
}).call(this);
/* ---- plugins/Sidebar/media/morphdom.js ---- */

View File

@ -13,7 +13,7 @@ class Config(object):
def __init__(self, argv):
self.version = "0.7.0"
self.rev = 4111
self.rev = 4112
self.argv = argv
self.action = None
self.pending_changes = {}
@ -74,9 +74,9 @@ class Config(object):
"zero://boot3rdez4rzn36x.onion:15441",
"zero://zero.booth.moe#f36ca555bee6ba216b14d10f38c16f7769ff064e0e37d887603548cc2e64191d:443", # US/NY
"udp://tracker.coppersurfer.tk:6969", # DE
"udp://tracker.port443.xyz:6969", # UK
"udp://amigacity.xyz:6969", # US/NY
"udp://104.238.198.186:8000", # US/LA
"http://tracker2.itzmx.com:6961/announce", # US/LA
"http://tracker01.loveapp.com:6789/announce", # Google
"http://open.acgnxtracker.com:80/announce", # DE
"http://open.trackerlist.xyz:80/announce", # Cloudflare
"zero://2602:ffc5::c5b2:5360:26312" # US/ATL
@ -592,4 +592,4 @@ class Config(object):
self.initConsoleLogger()
self.initFileLogger()
config = Config(sys.argv)
config = Config(sys.argv)