mirror of
https://github.com/9001/copyparty.git
synced 2025-10-01 06:02:27 -06:00
v1.3.14
This commit is contained in:
parent
d48a7d2398
commit
7000123a8b
|
@ -335,7 +335,7 @@ def run_argparse(argv: list[str], formatter: Any, retry: bool) -> argparse.Names
|
||||||
except:
|
except:
|
||||||
fk_salt = "hunter2"
|
fk_salt = "hunter2"
|
||||||
|
|
||||||
cores = os.cpu_count() if hasattr(os, "cpu_count") else 4
|
cores = (os.cpu_count() if hasattr(os, "cpu_count") else 0) or 4
|
||||||
hcores = min(cores, 3) # 4% faster than 4+ on py3.9 @ r5-4500U
|
hcores = min(cores, 3) # 4% faster than 4+ on py3.9 @ r5-4500U
|
||||||
|
|
||||||
sects = [
|
sects = [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
|
||||||
VERSION = (1, 3, 13)
|
VERSION = (1, 3, 14)
|
||||||
CODENAME = "god dag"
|
CODENAME = "god dag"
|
||||||
BUILD_DT = (2022, 8, 15)
|
BUILD_DT = (2022, 8, 15)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue