Version 1.6.3

This commit is contained in:
Girish Ramakrishnan 2019-07-29 11:47:10 -07:00
parent d40f9e7743
commit 03f5d712f5
4 changed files with 11 additions and 5 deletions

View File

@ -112,3 +112,11 @@
* 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

View File

@ -5,7 +5,7 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "RSS feed reader",
"version": "1.6.2",
"version": "1.6.3",
"healthCheckPath": "/",
"httpPort": 8000,
"addons": {

View File

@ -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.

View File

@ -73,9 +73,7 @@ describe('Application life cycle test', function () {
}
function login(password, callback) {
clearCache().then(function () {
return browser.get('https://' + app.fqdn);
}).then(function () {
browser.get('https://' + app.fqdn).then(function () {
return visible(by.id('loginButton'));
}).then(function () {
return browser.findElement(by.id('username')).sendKeys(username);