Version 1.6.3
This commit is contained in:
parent
d40f9e7743
commit
03f5d712f5
|
@ -112,3 +112,11 @@
|
||||||
* Update FreshRSS to 1.14.2
|
* Update FreshRSS to 1.14.2
|
||||||
* Fix minor code syntax warning in API #2362
|
* 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.2",
|
"version": "1.6.3",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
This app packages FreshRSS <upstream>1.14.2</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.
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue