This commit is contained in:
ed 2022-07-06 00:12:10 +02:00
parent 0862860961
commit daff7ff158
2 changed files with 3 additions and 3 deletions

View file

@ -849,7 +849,7 @@ see the top of [./copyparty/web/browser.css](./copyparty/web/browser.css) where
## complete examples ## complete examples
* read-only music server * 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 * ...with bpm and key scanning
`-mtp .bpm=f,audio-bpm.py -mtp key=f,audio-key.py` `-mtp .bpm=f,audio-bpm.py -mtp key=f,audio-key.py`

View file

@ -1,8 +1,8 @@
# coding: utf-8 # coding: utf-8
VERSION = (1, 3, 3) VERSION = (1, 3, 4)
CODENAME = "god dag" CODENAME = "god dag"
BUILD_DT = (2022, 6, 27) BUILD_DT = (2022, 7, 6)
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)