forked from cloudron-apps/peertube-app
Bump version
This commit is contained in:
parent
171606daa4
commit
a2eba07155
3 changed files with 24 additions and 3 deletions
21
CHANGELOG.md
21
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
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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 - && \
|
||||
|
|
Loading…
Reference in a new issue