mirror of
https://git.cloudron.io/cloudron/freshrss-app
synced 2025-09-21 04:27:32 +00:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
143d4a80b9 | ||
|
50172402be | ||
|
7935b892bd | ||
|
d70ee21b89 | ||
|
9cc7f803c7 |
@@ -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
|
||||
|
@@ -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": {
|
||||
|
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user