mirror of
https://git.cloudron.io/cloudron/freshrss-app
synced 2025-09-21 20:37:35 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
03f5d712f5 | ||
|
d40f9e7743 | ||
|
7dcfa53551 | ||
|
5bd5d7b110 |
12
CHANGELOG
12
CHANGELOG
@@ -108,3 +108,15 @@
|
|||||||
* Fix delay for individual mark-as-read actions #2332
|
* Fix delay for individual mark-as-read actions #2332
|
||||||
* Fix scroll functions in Edge #2337
|
* Fix scroll functions in Edge #2337
|
||||||
|
|
||||||
|
[1.6.2]
|
||||||
|
* Update FreshRSS to 1.14.2
|
||||||
|
* Fix minor code syntax warning in API #2362
|
||||||
|
|
||||||
|
[1.6.3]
|
||||||
|
* Update FreshRSS to 1.14.3
|
||||||
|
* New configuration page for each category #2369
|
||||||
|
* Update shortcut configuration page #2405
|
||||||
|
* CSS style for printing #2149
|
||||||
|
* Do not hide multiple <br /> tags #2437
|
||||||
|
* Updated to jQuery 3.4.1 (only for statistics page) #2424
|
||||||
|
|
||||||
|
@@ -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.6.1",
|
"version": "1.6.3",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
This app packages FreshRSS <upstream>1.14.1</upstream>.
|
This app packages FreshRSS <upstream>1.14.3</upstream>.
|
||||||
|
|
||||||
FreshRSS is a self-hosted RSS feed aggregator such as Leed or Kriss Feed.
|
FreshRSS is a self-hosted RSS feed aggregator such as Leed or Kriss Feed.
|
||||||
|
|
||||||
|
@@ -3,7 +3,7 @@ FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c
|
|||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/1.14.1.tar.gz | tar -zxvf - --strip-components=1
|
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/1.14.3.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
|
||||||
|
|
||||||
|
@@ -73,9 +73,7 @@ describe('Application life cycle test', function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function login(password, callback) {
|
function login(password, callback) {
|
||||||
clearCache().then(function () {
|
browser.get('https://' + app.fqdn).then(function () {
|
||||||
return browser.get('https://' + app.fqdn);
|
|
||||||
}).then(function () {
|
|
||||||
return visible(by.id('loginButton'));
|
return visible(by.id('loginButton'));
|
||||||
}).then(function () {
|
}).then(function () {
|
||||||
return browser.findElement(by.id('username')).sendKeys(username);
|
return browser.findElement(by.id('username')).sendKeys(username);
|
||||||
|
Reference in New Issue
Block a user