From daff7ff1583988fd3b40a94dce6cedc70fccb739 Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 6 Jul 2022 00:12:10 +0200 Subject: [PATCH] v1.3.4 --- README.md | 2 +- copyparty/__version__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f6c3cb26..9f397dc0 100644 --- a/README.md +++ b/README.md @@ -849,7 +849,7 @@ see the top of [./copyparty/web/browser.css](./copyparty/web/browser.css) where ## complete examples * read-only music server - `python copyparty-sfx.py -v /mnt/nas/music:/music:r -e2dsa -e2ts --no-robots --force-js` + `python copyparty-sfx.py -v /mnt/nas/music:/music:r -e2dsa -e2ts --no-robots --force-js --theme 2` * ...with bpm and key scanning `-mtp .bpm=f,audio-bpm.py -mtp key=f,audio-key.py` diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 94d66a8c..fd9832e0 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (1, 3, 3) +VERSION = (1, 3, 4) CODENAME = "god dag" -BUILD_DT = (2022, 6, 27) +BUILD_DT = (2022, 7, 6) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)