From 82a2e30aa515f4a32d6afa702bada52687492eef Mon Sep 17 00:00:00 2001 From: Jonas Heinrich <onny@project-insanity.org> Date: Fri, 5 Feb 2021 11:20:31 +0100 Subject: [PATCH] add tested nextcloud 21 support --- CHANGELOG.md | 2 ++ README.md | 7 +++++++ appinfo/info.xml | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c80b48..e97ee60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ### Added - Pause playing animation [#115](https://git.project-insanity.org/onny/nextcloud-app-podcast/-/issues/115) @onny +- Tested and enabled support for Nextcloud 21 + [#126](https://git.project-insanity.org/onny/nextcloud-app-podcast/-/issues/126) @onny ### Fixed - Player: Display correct position while seeking diff --git a/README.md b/README.md index e63cdb3..d9eb0c7 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,13 @@ Where -t specifies the container id. If you further need to access the sqlite-da docker run -v /tmp/dockerdata:/data/data -v /tmp/nextcloud-app-podcast:/opt/nextcloud/apps/podcast -d --name nextcloud -p 80:80 rootlogin/nextcloud ``` +To manually test unstable Nextcloud or PHP versions, you can do this: +``` +git clone https://git.project-insanity.org/onny/docker-nextcloud.git +docker build -t nextcloud-21 . +docker run -v /tmp/nextcloud-app-podcast:/opt/nextcloud/apps/podcast -d --name nextcloud-app-podcast-21 -p 80:80 nextcloud-21 +``` + ## Development notes ### General While editing the code, you could run following helper script to automatically diff --git a/appinfo/info.xml b/appinfo/info.xml index 8105e44..eb989ea 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -27,7 +27,7 @@ <screenshot small-thumbnail="https://git.project-insanity.org/onny/nextcloud-app-podcast/raw/master/dist/screenshot-thumbnail3.jpg">https://git.project-insanity.org/onny/nextcloud-app-podcast/raw/master/dist/screenshot3.png</screenshot> <dependencies> <php min-version="7.4" max-version="7.4" /> - <nextcloud min-version="20" max-version="20"/> + <nextcloud min-version="20" max-version="21"/> </dependencies> <navigations> <navigation> -- GitLab