From 3ab1acf32c8c83c3f826a05105cb8a0756ca991b Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 21 Jun 2021 20:30:29 +0200 Subject: [PATCH] v0.11.22 --- README.md | 2 +- copyparty/__version__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dbc54050..cf604a5e 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ summary: all planned features work! now please enjoy the bloatening * ☑ FUSE client (read-only) * browser * ☑ tree-view - * ☑ audio player + * ☑ audio player (with OS media controls) * ☑ thumbnails * ☑ images using Pillow * ☑ videos using FFmpeg diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 2d3ec728..dd849994 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (0, 11, 21) +VERSION = (0, 11, 22) CODENAME = "the grid" -BUILD_DT = (2021, 6, 20) +BUILD_DT = (2021, 6, 21) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)