From c831d4d615145c52f0f5ecc7d1a946bd0eddacbd Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Mon, 29 Sep 2014 07:42:14 +0200 Subject: [PATCH] Fixed #76. --- CMakeLists.txt | 4 ++-- resources/text/CHANGELOG | 16 ++++++++++++++++ src/gui/feedsview.cpp | 1 + 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9ce25f018..512424b0d 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,8 +71,8 @@ project(rssguard) set(APP_NAME "RSS Guard") set(APP_LOW_NAME "rssguard") -set(APP_VERSION "2.0.0.2") -set(FILE_VERSION "2,0,0,2") +set(APP_VERSION "2.0.0.3") +set(FILE_VERSION "2,0,0,3") 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 ef3d128b9..720dc2865 100644 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -1,4 +1,20 @@ +

2.0.0.3

+ +Fixed: + + +Added: + + +Changed: + + +

2.0.0.2

Fixed: diff --git a/src/gui/feedsview.cpp b/src/gui/feedsview.cpp index 7ee88cbd4..890e2fa13 100755 --- a/src/gui/feedsview.cpp +++ b/src/gui/feedsview.cpp @@ -565,6 +565,7 @@ void FeedsView::initializeContextMenuRecycleBin() { m_contextMenuRecycleBin = new QMenu(tr("Context menu for recycle bin"), this); m_contextMenuRecycleBin->addActions(QList() << qApp->mainForm()->m_ui->m_actionRestoreRecycleBin << + qApp->mainForm()->m_ui->m_actionRestoreSelectedMessagesFromRecycleBin << qApp->mainForm()->m_ui->m_actionEmptyRecycleBin); }