version bump

This commit is contained in:
Muki 2022-02-13 15:36:32 +01:00
parent 6c70e1e111
commit a7f7f83a0c
No known key found for this signature in database
GPG key ID: BC8D1811CB9F9932
5 changed files with 30 additions and 13 deletions

View file

@ -60,6 +60,20 @@ Page {
title: qsTr("Changelog")
}
SectionHeader {
text: qsTr("Version %1").arg("3.0.4")
}
LogItem {
title: "Netvibes fixes"
description: "Syncing from Netvibies was broked due to API change."
}
LogItem {
title: "Translations update"
description: "Czech and French translations were updated."
}
SectionHeader {
text: qsTr("Version %1").arg("3.0.3")
}

View file

@ -8,6 +8,9 @@
# * date Author's Name <author's email> version-release
# - Summary of changes
* Sun Feb 13 2022 Michal Kosciesza 3.0.4-1
- Fix: Netvibes API requires 'consent' cookie
* Sat Jun 26 2021 Michal Kosciesza 3.0.3-1
- High res Netvibes icons

View file

@ -13,7 +13,7 @@ Name: harbour-kaktus
%{!?qtc_make:%define qtc_make make}
%{?qtc_builddir:%define _builddir %qtc_builddir}
Summary: Kaktus
Version: 3.0.3
Version: 3.0.4
Release: 1
Group: Qt/Qt
License: LICENSE

View file

@ -1,6 +1,6 @@
Name: harbour-kaktus
Summary: Kaktus
Version: 3.0.3
Version: 3.0.4
Release: 1
# The contents of the Group field should be one of the groups listed here:
# http://gitorious.org/meego-developer-tools/spectacle/blobs/master/data/GROUPS

View file

@ -21,20 +21,20 @@
#define INFO_H
namespace Kaktus {
static const char* APP_NAME = "Kaktus";
constexpr const char* APP_NAME = "Kaktus";
#ifdef QT_DEBUG
static constexpr const char* APP_VERSION = "3.0.3 (debug)";
constexpr const char* APP_VERSION = "3.0.4 (debug)";
#else
static constexpr const char* APP_VERSION = "3.0.3";
constexpr const char* APP_VERSION = "3.0.4";
#endif // QT_DEBUG
static const char* AUTHOR = "Michal Kosciesza";
static const char* COPYRIGHT_YEAR = "2014-2021";
static const char* AUTHOR1 = "Renaud Casenave-Péré";
static const char* COPYRIGHT_YEAR1 = "2019-2021";
static const char* SUPPORT_EMAIL = "kaktus@mkiol.net";
static const char* PAGE = "https://github.com/mkiol/kaktus";
static const char* LICENSE = "GNU General Public Licence version 3";
static const char* LICENSE_URL = "https://www.gnu.org/licenses/gpl-3.0.html";
constexpr const char* AUTHOR = "Michal Kosciesza";
constexpr const char* COPYRIGHT_YEAR = "2014-2022";
constexpr const char* AUTHOR1 = "Renaud Casenave-Péré";
constexpr const char* COPYRIGHT_YEAR1 = "2019-2022";
constexpr const char* SUPPORT_EMAIL = "kaktus@mkiol.net";
constexpr const char* PAGE = "https://github.com/mkiol/kaktus";
constexpr const char* LICENSE = "GNU General Public Licence version 3";
constexpr const char* LICENSE_URL = "https://www.gnu.org/licenses/gpl-3.0.html";
}
#endif // INFO_H