diff --git a/CMakeLists.txt b/CMakeLists.txt index b9951e923..c1f1a7987 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,8 +68,8 @@ project(rssguard) set(APP_NAME "RSS Guard") set(APP_LOW_NAME "rssguard") -set(APP_VERSION "3.1.0") -set(FILE_VERSION "3,1,0,0") +set(APP_VERSION "3.1.1") +set(FILE_VERSION "3,1,1,0") set(APP_AUTHOR "Martin Rotter") set(APP_URL "http://bitbucket.org/skunkos/rssguard") set(APP_URL_ISSUES "http://bitbucket.org/skunkos/rssguard/issues") diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG index 65537d911..157e311cf 100755 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -7,6 +7,13 @@ PLEASE, FILL THIS SURVEY. http://goo.gl/forms/GcvPYgS2a8 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +Fixed: + +▪ Fixed little problem with feed list hiding. (bug #163) + +3.1.0 +————— + Added: ▪ NEW ACCOUNT PLUGIN: OwnCloud News API 1.2 is now supported. Note that the support in this version is experimental and relatively basic. So far only syncing of feeds/messages is supported. Feed/category adding/removing is not yet supported yet. The OwnCloud plugin will be enhanced in future RSS Guard versions. diff --git a/src/gui/feedmessageviewer.cpp b/src/gui/feedmessageviewer.cpp index 08b3cad85..6d8b807d9 100755 --- a/src/gui/feedmessageviewer.cpp +++ b/src/gui/feedmessageviewer.cpp @@ -159,7 +159,14 @@ void FeedMessageViewer::setListHeadersEnabled(bool enable) { } void FeedMessageViewer::switchFeedComponentVisibility() { - m_feedsWidget->setVisible(!m_feedsWidget->isVisible()); + QAction *sen = qobject_cast(sender()); + + if (sen != NULL) { + m_feedsWidget->setVisible(sen->isChecked()); + } + else { + m_feedsWidget->setVisible(!m_feedsWidget->isVisible()); + } } void FeedMessageViewer::toggleShowOnlyUnreadFeeds() { @@ -430,7 +437,7 @@ void FeedMessageViewer::showDbCleanupAssistant() { void FeedMessageViewer::refreshVisualProperties() { const Qt::ToolButtonStyle button_style = static_cast(qApp->settings()->value(GROUP(GUI), - SETTING(GUI::ToolbarStyle)).toInt()); + SETTING(GUI::ToolbarStyle)).toInt()); m_toolBarFeeds->setToolButtonStyle(button_style); m_toolBarMessages->setToolButtonStyle(button_style); diff --git a/src/gui/feedmessageviewer.h b/src/gui/feedmessageviewer.h index c5442347e..a5288997c 100755 --- a/src/gui/feedmessageviewer.h +++ b/src/gui/feedmessageviewer.h @@ -96,7 +96,6 @@ class FeedMessageViewer : public TabContent { private slots: // Called when feed update finishes. void onFeedsUpdateFinished(); - void onFeedsUpdateStarted(); // Switches visibility of feed list and related