release 3.0.2
This commit is contained in:
parent
c8ddbfb85c
commit
43a2d3a64c
6 changed files with 30 additions and 17 deletions
|
|
@ -1,14 +1,11 @@
|
|||
TARGET = harbour-kaktus
|
||||
|
||||
CONFIG += c++11 sailfishapp json no_lflags_merge object_parallel_to_source
|
||||
CONFIG += c++1z sailfishapp json
|
||||
|
||||
QT += sql network dbus
|
||||
|
||||
PKGCONFIG += mlite5
|
||||
|
||||
linux-g++-32: CONFIG += x86
|
||||
linux-g++: CONFIG += arm
|
||||
|
||||
DEFINES += SAILFISH
|
||||
DEFINES += ONLINE_CHECK
|
||||
#DEFINES += HARBOUR
|
||||
|
|
|
|||
|
|
@ -61,7 +61,19 @@ Page {
|
|||
}
|
||||
|
||||
SectionHeader {
|
||||
text: qsTr("Version %1").arg("3.0.1")
|
||||
text: qsTr("Version %1").arg("3.0.2")
|
||||
}
|
||||
|
||||
LogItem {
|
||||
title: "Mark as read/unread gesture"
|
||||
description: "Items on the list can be marked as read/unread with a swipe gesture. " +
|
||||
"Many thanks to Renaud Casenave-Péré for the implementation."
|
||||
}
|
||||
|
||||
LogItem {
|
||||
title: "Inverted screen orientations enabled"
|
||||
description: "Inverted landscape screen orientation is now possible. Thanks to this change " +
|
||||
"Kaktus on Gemini PDA is more pleasant to use."
|
||||
}
|
||||
|
||||
LogItem {
|
||||
|
|
@ -80,7 +92,8 @@ Page {
|
|||
"aggregator. Tiny Tiny RSS is a free and " +
|
||||
"open source web-based news feed (RSS/Atom) reader. " +
|
||||
"To find more about it, please check the official " +
|
||||
"<a href=\"https://tt-rss.org/\">web page</a>.";
|
||||
"<a href=\"https://tt-rss.org/\">web page</a>. " +
|
||||
"Many thanks to Renaud Casenave-Péré for the implementation."
|
||||
}
|
||||
|
||||
LogItem {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,10 @@
|
|||
# * date Author's Name <author's email> version-release
|
||||
# - Summary of changes
|
||||
|
||||
* Tue Feb 09 2020 Michal Kosciesza 3.0.1-1
|
||||
* Mon Mar 15 2021 Michal Kosciesza 3.0.2-1
|
||||
- Bug fixes discovered on SFOS 4.0
|
||||
|
||||
* Tue Feb 09 2021 Michal Kosciesza 3.0.1-1
|
||||
- Bug fixes discovered on SFOS 4.0
|
||||
|
||||
* Mon Apr 22 2019 Michal Kosciesza 3.0.0-1
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ Name: harbour-kaktus
|
|||
%{!?qtc_make:%define qtc_make make}
|
||||
%{?qtc_builddir:%define _builddir %qtc_builddir}
|
||||
Summary: Kaktus
|
||||
Version: 3.0.1
|
||||
Version: 3.0.2
|
||||
Release: 1
|
||||
Group: Qt/Qt
|
||||
License: LICENSE
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Name: harbour-kaktus
|
||||
Summary: Kaktus
|
||||
Version: 3.0.1
|
||||
Version: 3.0.2
|
||||
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
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (C) 2014-2019 Michal Kosciesza <michal@mkiol.net>
|
||||
Copyright (C) 2014-2021 Michal Kosciesza <michal@mkiol.net>
|
||||
|
||||
This file is part of Kaktus.
|
||||
|
||||
|
|
@ -22,15 +22,15 @@
|
|||
|
||||
namespace Kaktus {
|
||||
static const char* APP_NAME = "Kaktus";
|
||||
#ifdef SAILFISH
|
||||
static const char* APP_VERSION = "3.0.1";
|
||||
#elif ANDROID
|
||||
static const char* APP_VERSION = "3.0.1";
|
||||
#endif
|
||||
#ifdef QT_DEBUG
|
||||
static constexpr const char* APP_VERSION = "3.0.2 (debug)";
|
||||
#else
|
||||
static constexpr const char* APP_VERSION = "3.0.2";
|
||||
#endif // QT_DEBUG
|
||||
static const char* AUTHOR = "Michal Kosciesza";
|
||||
static const char* COPYRIGHT_YEAR = "2014-2019";
|
||||
static const char* COPYRIGHT_YEAR = "2014-2021";
|
||||
static const char* AUTHOR1 = "Renaud Casenave-Péré";
|
||||
static const char* COPYRIGHT_YEAR1 = "2019";
|
||||
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";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue