diff --git a/CHANGELOG b/CHANGELOG index d1eca9f..8e7272f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -125,3 +125,7 @@ [2.5.1] * Update base image to 3.2.0 +[2.5.2] +* Update PeerTube to 4.1.0 +* [Full changelog](https://github.com/Chocobozzz/PeerTube/releases/tag/v4.1.0) + diff --git a/CloudronManifest.json b/CloudronManifest.json index 326f108..d3e13aa 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -1,5 +1,5 @@ { - "version": "2.5.1", + "version": "2.5.2", "id": "org.joinpeertube.cloudronapp", "title": "PeerTube", "author": "PeerTube developers", diff --git a/DESCRIPTION.md b/DESCRIPTION.md index 6ecbb9a..d42b8c1 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages PeerTube 4.0.0 +This app packages PeerTube 4.1.0 ## About diff --git a/Dockerfile b/Dockerfile index 06f4cf5..3245518 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app/code/server RUN add-apt-repository -y ppa:savoury1/ffmpeg4 && \ apt install -y ffmpeg -ARG VERSION=4.0.0 +ARG VERSION=4.1.0 # install peertube. the chown is required for some reason for ffmpeg. it fails with EROFS without it when transcoding # the transcoding patch is at https://github.com/Chocobozzz/PeerTube/pull/3198