prepare changelog, change version

This commit is contained in:
Martin Rotter 2023-08-07 10:58:31 +02:00
parent fab52641c6
commit 2a73af8347
3 changed files with 10 additions and 8 deletions

View file

@ -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")

View file

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

View file

@ -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);