This commit is contained in:
ed 2021-06-01 02:47:37 +02:00
parent e5f34042f9
commit ea4441e25c
3 changed files with 10 additions and 7 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8 # coding: utf-8
VERSION = (0, 11, 1) VERSION = (0, 11, 2)
CODENAME = "the grid" CODENAME = "the grid"
BUILD_DT = (2021, 5, 29) BUILD_DT = (2021, 6, 1)
S_VERSION = ".".join(map(str, VERSION)) S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -1244,13 +1244,14 @@ class Up2k(object):
return wark return wark
def _hashlist_from_file(self, path): def _hashlist_from_file(self, path):
pp = self.pp if hasattr(self, "pp") else None
fsz = os.path.getsize(fsenc(path)) fsz = os.path.getsize(fsenc(path))
csz = up2k_chunksize(fsz) csz = up2k_chunksize(fsz)
ret = [] ret = []
with open(fsenc(path), "rb", 512 * 1024) as f: with open(fsenc(path), "rb", 512 * 1024) as f:
while fsz > 0: while fsz > 0:
if self.pp: if pp:
self.pp.msg = "{} MB, {}".format(int(fsz / 1024 / 1024), path) pp.msg = "{} MB, {}".format(int(fsz / 1024 / 1024), path)
hashobj = hashlib.sha512() hashobj = hashlib.sha512()
rem = min(csz, fsz) rem = min(csz, fsz)

View file

@ -811,9 +811,6 @@ var thegrid = (function () {
if (e && e.ctrlKey) if (e && e.ctrlKey)
return true; return true;
if (QS('#ggrid a[ref="unsearch"]'))
return ebi('unsearch').click();
ev(e); ev(e);
var oth = ebi(this.getAttribute('ref')), var oth = ebi(this.getAttribute('ref')),
td = oth.parentNode.nextSibling, td = oth.parentNode.nextSibling,
@ -829,6 +826,11 @@ var thegrid = (function () {
ths[a].onclick = r.sel ? seltgl : null; ths[a].onclick = r.sel ? seltgl : null;
ths[a].setAttribute('class', ebi(ths[a].getAttribute('ref')).parentNode.parentNode.getAttribute('class')); ths[a].setAttribute('class', ebi(ths[a].getAttribute('ref')).parentNode.parentNode.getAttribute('class'));
} }
var uns = QS('#ggrid a[ref="unsearch"]');
if (uns)
uns.onclick = function () {
ebi('unsearch').click();
};
} }
function loadgrid() { function loadgrid() {