diff --git a/CMakeLists.txt b/CMakeLists.txt index 7122019b9..e56fc68bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,7 @@ set(APP_AUTHOR "Martin Rotter") set(APP_COPYRIGHT "\\251 2011-${YEAR} ${APP_AUTHOR}") set(APP_REVERSE_NAME "io.github.martinrotter.rssguard") set(APP_DONATE_URL "https://github.com/sponsors/martinrotter") -set(APP_VERSION "4.4.1") +set(APP_VERSION "4.5.0") set(APP_URL "https://github.com/martinrotter/rssguard") set(APP_URL_DOCUMENTATION "https://github.com/martinrotter/rssguard/blob/${APP_VERSION}/resources/docs/Documentation.md") diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG index e01ef01c0..ce5bf336a 100644 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -1,3 +1,12 @@ +4.5.0 +----- + +!!! Note that at this point, NO new features will be added for at least 4-5 new releases as I must concentrate on fixing bugs and polishing already existing features !!! + +Added: + +Fixed: + 4.4.0 ----- diff --git a/src/librssguard/gui/messagesview.cpp b/src/librssguard/gui/messagesview.cpp index a3a377d08..c2fe3231d 100644 --- a/src/librssguard/gui/messagesview.cpp +++ b/src/librssguard/gui/messagesview.cpp @@ -61,8 +61,6 @@ QByteArray MessagesView::saveHeaderState() const { QByteArray arr; QDataStream outt(&arr, QIODevice::OpenModeFlag::WriteOnly); - // auto xx = header()->count(); - outt.setVersion(QDataStream::Version::Qt_4_7); outt << header()->count(); outt << int(header()->sortIndicatorOrder()); @@ -70,11 +68,6 @@ QByteArray MessagesView::saveHeaderState() const { // Save column data. for (int i = 0; i < header()->count(); i++) { - // auto aaa = header()->isSectionHidden(i); - // auto ax = m_sourceModel->headerData(i, Qt::Orientation::Horizontal, Qt::ItemDataRole::DisplayRole).toString(); - // auto b = header()->visualIndex(i); - // auto c = header()->sectionSize(i); - outt << header()->visualIndex(i); outt << header()->sectionSize(i); outt << header()->isSectionHidden(i);