1
0
mirror of https://git.cloudron.io/cloudron/freshrss-app synced 2025-09-21 12:27:36 +00:00

Compare commits

..

5 Commits

Author SHA1 Message Date
Girish Ramakrishnan
143d4a80b9 Version 1.20.1 2024-01-02 10:48:47 +01:00
Girish Ramakrishnan
50172402be Update FreshRSS to 1.23.1 2024-01-02 10:34:16 +01:00
Girish Ramakrishnan
7935b892bd Update extensions 2023-12-29 14:30:57 +01:00
Girish Ramakrishnan
d70ee21b89 Version 1.20.0-1 2023-12-26 13:51:18 +01:00
Girish Ramakrishnan
9cc7f803c7 Update FreshRSS to 1.23.0 2023-12-26 13:45:26 +01:00
3 changed files with 11 additions and 4 deletions

View File

@@ -295,3 +295,10 @@
* Soft require Apache 2.4+ (but repair minimal compatibility with Apache 2.2)
* Upgraded extensions require FreshRSS 1.23.0+ Extensions#181
[1.20.1]
* Update FreshRSS to 1.23.1
* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.23.0)
* Fix crash regression with the option Max number of tags shown #5978
* Fix crash regression when enabling extensions defined by old FreshRSS installations #5979
* Fix crash regression during export when using MySQL #5988
* More robust assignment of categories to feeds #5986

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG.md",
"tagline": "RSS feed reader",
"version": "1.20.0",
"upstreamVersion": "1.23.0",
"version": "1.20.1",
"upstreamVersion": "1.23.1",
"healthCheckPath": "/",
"httpPort": 8000,
"addons": {

View File

@@ -5,12 +5,12 @@ RUN apt-get update && apt-get install --no-install-recommends -y libapache2-mod-
RUN mkdir -p /app/code
WORKDIR /app/code
ARG VERSION=1.22.1
ARG VERSION=1.23.1
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1 && \
mv data data-orig && ln -s /app/data data
# official extensions (https://github.com/FreshRSS/Extensions/commits/master)
RUN wget https://github.com/FreshRSS/Extensions/archive/8af0d55265ffa03de22ee62b2ae175b3cb038a3c.tar.gz -O - | tar -xz --strip-components=1 -C /app/code/extensions && \
RUN wget https://github.com/FreshRSS/Extensions/archive/a82e080a1e68eb34539959a852fc5e800b7346dd.tar.gz -O - | tar -xz --strip-components=1 -C /app/code/extensions && \
mv /app/code/extensions /app/code/extensions-orig && \
ln -s /app/data/extensions /app/code/extensions