mirror of
https://git.cloudron.io/cloudron/peertube-app.git
synced 2024-11-24 18:41:06 +00:00
Bump version
This commit is contained in:
parent
4c0d48aedd
commit
7f600cbce1
3 changed files with 11 additions and 9 deletions
|
@ -275,3 +275,11 @@ Update web browsers support list:
|
||||||
* Admin can disable user video history by default #5728
|
* Admin can disable user video history by default #5728
|
||||||
* Improve global accessibility
|
* Improve global accessibility
|
||||||
|
|
||||||
|
[2.12.1]
|
||||||
|
* Update PeerTube to 5.2.1
|
||||||
|
* [Full changelog](https://github.com/Chocobozzz/PeerTube/releases/tag/v5.2.1)
|
||||||
|
* Fix loading spinner displayed forever on Chrome
|
||||||
|
* Fix broken replay with long live name
|
||||||
|
* Fix fps transcoding on remote runners
|
||||||
|
* Fix terms/code of conduct link toggle
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"version": "2.12.0-1",
|
"version": "2.12.1",
|
||||||
"upstreamVersion": "5.2.0",
|
"upstreamVersion": "5.2.1",
|
||||||
"id": "org.joinpeertube.cloudronapp",
|
"id": "org.joinpeertube.cloudronapp",
|
||||||
"title": "PeerTube",
|
"title": "PeerTube",
|
||||||
"author": "PeerTube developers",
|
"author": "PeerTube developers",
|
||||||
|
|
|
@ -3,15 +3,9 @@ FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03
|
||||||
RUN mkdir -p /app/code/server /app/pkg
|
RUN mkdir -p /app/code/server /app/pkg
|
||||||
WORKDIR /app/code/server
|
WORKDIR /app/code/server
|
||||||
|
|
||||||
# https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/dependencies.md
|
|
||||||
# ARG NODEJS_VERSION=16.13.2
|
|
||||||
# RUN mkdir -p /usr/local/node-${NODEJS_VERSION} && \
|
|
||||||
# curl -L https://nodejs.org/dist/v${NODEJS_VERSION}/node-v${NODEJS_VERSION}-linux-x64.tar.gz | tar zxf - --strip-components 1 -C /usr/local/node-${NODEJS_VERSION}
|
|
||||||
# ENV PATH /usr/local/node-${NODEJS_VERSION}/bin:$PATH
|
|
||||||
|
|
||||||
RUN apt update && apt install -y prosody && rm -rf /var/cache/apt /var/lib/apt/lists
|
RUN apt update && apt install -y prosody && rm -rf /var/cache/apt /var/lib/apt/lists
|
||||||
|
|
||||||
ARG VERSION=5.2.0
|
ARG VERSION=5.2.1
|
||||||
|
|
||||||
# install peertube. the chown is required for some reason for ffmpeg. it fails with EROFS without it when transcoding
|
# 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 - && \
|
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