From 108665fc4fe4c83d6509b2bd3104e18b0b3f709b Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 9 Jul 2021 17:12:21 +0200 Subject: [PATCH] v0.11.34 --- README.md | 4 ++-- copyparty/__version__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4cb79206..0f367117 100644 --- a/README.md +++ b/README.md @@ -505,11 +505,11 @@ below are some tweaks roughly ordered by usefulness: * `--http-only` or `--https-only` (unless you want to support both protocols) will reduce the delay before a new connection is established * `--hist` pointing to a fast location (ssd) will make directory listings and searches faster when `-e2d` or `-e2t` is set * `--no-hash` when indexing a networked disk if you don't care about the actual filehashes and only want the names/tags searchable -* `-j` enables multiprocessing (actual multithreading) and can theoretically make copyparty perform better in cpu-intensive workloads, for example: +* `-j` enables multiprocessing (actual multithreading) and can make copyparty perform better in cpu-intensive workloads, for example: * huge amount of short-lived connections * really heavy traffic (downloads/uploads) - however it adds an overhead to internal communication so it might be a net loss, see if it works 4 u + ...however it adds an overhead to internal communication so it might be a net loss, see if it works 4 u # dependencies diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 0a67e8b7..da3f3eed 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (0, 11, 33) +VERSION = (0, 11, 34) CODENAME = "the grid" -BUILD_DT = (2021, 7, 7) +BUILD_DT = (2021, 7, 9) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)