From a2eba07155c855adb8ee6ff515d7ec5e4b0beea3 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 13 Dec 2022 11:30:41 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 21 +++++++++++++++++++++ CloudronManifest.json | 4 ++-- Dockerfile | 2 +- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1608af..07481e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -209,3 +209,24 @@ * Fix input with number overflow on small screen * Fix moderation dropdown overflow on mobile +[2.9.0] +* Update PeerTube to 5.0.0 +* [Full changelog](https://github.com/Chocobozzz/PeerTube/releases/tag/v5.0.0) +* Support object storage for live streams tada +* Support Two Factor authentication (OTP) tada +* Add explanation on disk space used for user quota admin config #5305 +* Display channel in my videos list +* Show which playlists videos are added to in my videos list +* Add Channels link in left menu +* Add ... after the truncated video name in miniature +* Add object storage info badge in videos admin overview +* Add links to video files in videos admin overview +* Better indicate the live ended in embed by displaying a message and the live preview +* Force live autoplay by muting the video if necessary when the user was waiting for the live +* Handle network issues in video player #5138 +* Cache chunks to upload in server to resume upload later #5224 +* Add ability to serve custom static files under /.well-known URL path #5214 +* Use account/channel avatar in account/channel RSS feeds #5325 +* Add filter to sort videos by name #5351 +* Add ability to configure OpenTelemetry Prometheus exporter listening hostname + diff --git a/CloudronManifest.json b/CloudronManifest.json index f5304e1..b92fce5 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -1,6 +1,6 @@ { - "version": "2.8.1", - "upstreamVersion": "4.3.1", + "version": "2.9.0", + "upstreamVersion": "5.0.0", "id": "org.joinpeertube.cloudronapp", "title": "PeerTube", "author": "PeerTube developers", diff --git a/Dockerfile b/Dockerfile index 63a78c5..37bd37a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apt update && \ apt install -y ffmpeg prosody && \ rm -rf /var/cache/apt /var/lib/apt/lists -ARG VERSION=4.3.1 +ARG VERSION=5.0.0 # install peertube. the chown is required for some reason for ffmpeg. it fails with EROFS without it when transcoding RUN curl -sL https://github.com/Chocobozzz/PeerTube/releases/download/v${VERSION}/peertube-v${VERSION}.tar.xz | tar --strip-components 1 -Jxvf - && \