mirror of
https://git.cloudron.io/cloudron/freshrss-app
synced 2025-09-21 20:37:35 +00:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
5d5eb1f633 | ||
|
9542541b5c |
11
CHANGELOG
11
CHANGELOG
@@ -184,3 +184,14 @@
|
|||||||
* Update base image to v3
|
* Update base image to v3
|
||||||
* Update PHP to 7.4
|
* Update PHP to 7.4
|
||||||
|
|
||||||
|
[1.13.0]
|
||||||
|
* Update FreshRSS to 1.18.0
|
||||||
|
* [Full changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.18.0)
|
||||||
|
* Allow parallel requests #3096 - Much faster manual feeds refresh
|
||||||
|
* Reload full article content when an article has changed #3506
|
||||||
|
* New share article link to clipboard #3330
|
||||||
|
* Improved OPML import of feeds with multiple categories #3286
|
||||||
|
* Add a content action parameter to work with CSS selector #3453
|
||||||
|
* New cURL options per feed: proxy, cookie, user-agent #3367, #3494, #3516
|
||||||
|
* Do not import feeds causing database errors (e.g. due to conflicting HTTP redirections) ##3347
|
||||||
|
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "RSS feed reader",
|
"tagline": "RSS feed reader",
|
||||||
"version": "1.12.0",
|
"version": "1.13.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
"scheduler": {
|
"scheduler": {
|
||||||
"update_feeds": {
|
"update_feeds": {
|
||||||
"schedule": "*/1 * * * *",
|
"schedule": "*/1 * * * *",
|
||||||
"command": "/usr/local/bin/gosu www-data:www-data php /app/code/app/actualize_script.php"
|
"command": "echo '==> Run actualize script' && /usr/local/bin/gosu www-data:www-data php /app/code/app/actualize_script.php"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
This app packages FreshRSS <upstream>1.17.0</upstream>.
|
This app packages FreshRSS <upstream>1.18.0</upstream>.
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
|
@@ -3,7 +3,7 @@ FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3f
|
|||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=1.17.0
|
ARG VERSION=1.18.0
|
||||||
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1
|
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1
|
||||||
|
|
||||||
RUN mv data data-orig && ln -s /app/data data
|
RUN mv data data-orig && ln -s /app/data data
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
MaxSpareServers 3
|
MaxSpareServers 3
|
||||||
|
|
||||||
# Maximum number of servers at any given instant. Requests will be queued after this
|
# Maximum number of servers at any given instant. Requests will be queued after this
|
||||||
MaxRequestWorkers 6
|
MaxRequestWorkers 10
|
||||||
|
|
||||||
# Recycle process after handling these many requests. This protected against accidental memory leaks
|
# Recycle process after handling these many requests. This protected against accidental memory leaks
|
||||||
MaxConnectionsPerChild 100
|
MaxConnectionsPerChild 100
|
||||||
|
Reference in New Issue
Block a user