This commit is contained in:
ed 2021-08-16 08:18:52 +02:00
parent 42ea30270f
commit 68289cfa54
2 changed files with 3 additions and 3 deletions

View file

@ -581,7 +581,7 @@ copyparty can invoke external programs to collect additional metadata for files
`ie` = internet-explorer, `ff` = firefox, `c` = chrome, `iOS` = iPhone/iPad, `Andr` = Android
| feature | ie6 | ie9 | ie10 | ie11 | ff 52 | c 49 | iOS | Andr |
| --------------- | --- | --- -| ---- | ---- | ----- | ---- | --- | ---- |
| --------------- | --- | ---- | ---- | ---- | ----- | ---- | --- | ---- |
| browse files | yep | yep | yep | yep | yep | yep | yep | yep |
| thumbnail view | - | yep | yep | yep | yep | yep | yep | yep |
| basic uploader | yep | yep | yep | yep | yep | yep | yep | yep |

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (0, 13, 3)
VERSION = (0, 13, 4)
CODENAME = "future-proof"
BUILD_DT = (2021, 8, 14)
BUILD_DT = (2021, 8, 16)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)