From fae83da197d48b9353c2dbda74946a9b04de822c Mon Sep 17 00:00:00 2001 From: ed Date: Thu, 15 Jul 2021 01:13:15 +0200 Subject: [PATCH] v0.11.40 --- README.md | 5 +++-- copyparty/__version__.py | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cdbb9436..c356aef5 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ the browser has the following hotkeys * when playing audio: * `J/L` prev/next song * `U/O` skip 10sec back/forward - * `0..9` jump to 10%..90% + * `0..9` jump to 0%..90% * `P` play/pause (also starts playing the folder) * when viewing images / playing videos: * `J/L, Left/Right` prev/next file @@ -212,6 +212,7 @@ the browser has the following hotkeys * `U/O` skip 10sec back/forward * `P/K/Space` play/pause * `F` fullscreen + * `C` continue playing next video * `R` loop * `M` mute * when tree-sidebar is open: @@ -234,7 +235,7 @@ click `[-]` and `[+]` (or hotkeys `A`/`D`) to adjust the size, and the `[a]` tog it does static images with Pillow and uses FFmpeg for video files, so you may want to `--no-thumb` or maybe just `--no-vthumb` depending on how destructive your users are -images named `folder.jpg` and `folder.png` become the thumbnail of the folder they're in +images with the following names (see `--th-covers`) become the thumbnail of the folder they're in: `folder.png`, `folder.jpg`, `cover.png`, `cover.jpg` in the grid/thumbnail view, if the audio player panel is open, songs will start playing when clicked diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 0197c18f..5faecaae 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (0, 11, 39) +VERSION = (0, 11, 40) CODENAME = "the grid" -BUILD_DT = (2021, 7, 13) +BUILD_DT = (2021, 7, 15) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)