Merge branch 'v3'
This commit is contained in:
commit
b43383769d
@ -11327,7 +11327,7 @@
|
|||||||
cur = ThreadUpdater.outdateCount || 1;
|
cur = ThreadUpdater.outdateCount || 1;
|
||||||
limit = d.hidden ? 7 : 10;
|
limit = d.hidden ? 7 : 10;
|
||||||
j = cur <= limit ? cur : limit;
|
j = cur <= limit ? cur : limit;
|
||||||
cur = ((i * 0.1).floor() || 1) * j * j;
|
cur = (Math.floor(i * 0.1) || 1) * j * j;
|
||||||
ThreadUpdater.seconds = cur > i ? cur <= 300 ? cur : 300 : i;
|
ThreadUpdater.seconds = cur > i ? cur <= 300 ? cur : 300 : i;
|
||||||
} else {
|
} else {
|
||||||
ThreadUpdater.seconds = i;
|
ThreadUpdater.seconds = i;
|
||||||
|
|||||||
@ -11313,7 +11313,7 @@
|
|||||||
cur = ThreadUpdater.outdateCount || 1;
|
cur = ThreadUpdater.outdateCount || 1;
|
||||||
limit = d.hidden ? 7 : 10;
|
limit = d.hidden ? 7 : 10;
|
||||||
j = cur <= limit ? cur : limit;
|
j = cur <= limit ? cur : limit;
|
||||||
cur = ((i * 0.1).floor() || 1) * j * j;
|
cur = (Math.floor(i * 0.1) || 1) * j * j;
|
||||||
ThreadUpdater.seconds = cur > i ? cur <= 300 ? cur : 300 : i;
|
ThreadUpdater.seconds = cur > i ? cur <= 300 ? cur : 300 : i;
|
||||||
} else {
|
} else {
|
||||||
ThreadUpdater.seconds = i;
|
ThreadUpdater.seconds = i;
|
||||||
|
|||||||
@ -158,7 +158,7 @@ ThreadUpdater =
|
|||||||
j = if cur <= limit then cur else limit
|
j = if cur <= limit then cur else limit
|
||||||
|
|
||||||
# 1 second to 100, 30 to 300.
|
# 1 second to 100, 30 to 300.
|
||||||
cur = ((i * 0.1).floor() or 1) * j * j
|
cur = (Math.floor(i * 0.1) or 1) * j * j
|
||||||
ThreadUpdater.seconds =
|
ThreadUpdater.seconds =
|
||||||
if cur > i
|
if cur > i
|
||||||
if cur <= 300
|
if cur <= 300
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user