Bump version, add poll, no release yet.

This commit is contained in:
Martin Rotter 2020-05-14 09:07:25 +02:00
parent 8d6c8e3ad4
commit d374931fb7
11 changed files with 10 additions and 13 deletions

View File

@ -46,7 +46,7 @@ MOC_DIR = $$OUT_PWD/moc
RCC_DIR = $$OUT_PWD/rcc
UI_DIR = $$OUT_PWD/ui
mac {
mac:qtHaveModule(macextras) {
QT *= macextras
}

View File

@ -4,7 +4,7 @@ APP_REVERSE_NAME = "com.github.rssguard"
APP_LOW_H_NAME = ".rssguard"
APP_AUTHOR = "Martin Rotter"
APP_COPYRIGHT = "(C) 2011-2020 $$APP_AUTHOR"
APP_VERSION = "3.6.1"
APP_VERSION = "3.6.2"
APP_LONG_NAME = "$$APP_NAME $$APP_VERSION"
APP_EMAIL = "rotter.martinos@gmail.com"
APP_URL = "https://github.com/martinrotter/rssguard"

View File

@ -30,7 +30,7 @@
<url type="donation">https://martinrotter.github.io/donate/</url>
<content_rating type="oars-1.1" />
<releases>
<release version="3.6.1" date="2020-05-13"/>
<release version="3.6.1" date="2020-05-14"/>
</releases>
<content_rating type="oars-1.0">
<content_attribute id="violence-cartoon">none</content_attribute>

View File

@ -110,7 +110,7 @@ void Application::loadDynamicShortcuts() {
void Application::showPolls() const {
if (isFirstRun(APP_VERSION)) {
//web()->openUrlInExternalBrowser(QSL("https://goo.gl/forms/7bJNr33Ii22Q1c3k2"));
web()->openUrlInExternalBrowser(QSL("https://forms.gle/GXw1gNksRZDfSccL7"));
}
}

View File

@ -15,8 +15,6 @@ BaseNetworkAccessManager::BaseNetworkAccessManager(QObject* parent)
loadSettings();
}
BaseNetworkAccessManager::~BaseNetworkAccessManager() = default;
void BaseNetworkAccessManager::loadSettings() {
QNetworkProxy new_proxy;
const QNetworkProxy::ProxyType selected_proxy_type = static_cast<QNetworkProxy::ProxyType>(qApp->settings()->value(GROUP(Proxy),

View File

@ -12,8 +12,7 @@ class BaseNetworkAccessManager : public QNetworkAccessManager {
public:
// Constructors and desctructors.
explicit BaseNetworkAccessManager(QObject* parent = 0);
virtual ~BaseNetworkAccessManager();
explicit BaseNetworkAccessManager(QObject* parent = nullptr);
public slots:

View File

@ -45,7 +45,7 @@ class GoogleSuggest : public QObject {
public:
// Constructors.
explicit GoogleSuggest(LocationLineEdit* editor, QObject* parent = 0);
explicit GoogleSuggest(LocationLineEdit* editor, QObject* parent = nullptr);
virtual ~GoogleSuggest();
bool eventFilter(QObject* object, QEvent* event);

View File

@ -40,7 +40,7 @@ class OAuth2Service : public QObject {
public:
explicit OAuth2Service(const QString& auth_url, const QString& token_url,
const QString& client_id, const QString& client_secret,
const QString& scope, QObject* parent = 0);
const QString& scope, QObject* parent = nullptr);
// Returns bearer HTTP header value.
// NOTE: Only call this if isFullyLoggedIn()

View File

@ -15,7 +15,7 @@ class SilentNetworkAccessManager : public BaseNetworkAccessManager {
public:
// Constructors and destructors.
explicit SilentNetworkAccessManager(QObject* parent = 0);
explicit SilentNetworkAccessManager(QObject* parent = nullptr);
virtual ~SilentNetworkAccessManager();
// Returns pointer to global silent network manager

View File

@ -18,7 +18,7 @@ class WebPage : public QWebEnginePage {
MarkUnstarred
};
explicit WebPage(QObject* parent = 0);
explicit WebPage(QObject* parent = nullptr);
WebViewer* view() const;

View File

@ -13,7 +13,7 @@ class AccountCheckModel : public QAbstractItemModel {
public:
// Constructors and destructors.
explicit AccountCheckModel(QObject* parent = 0);
explicit AccountCheckModel(QObject* parent = nullptr);
virtual ~AccountCheckModel();
QModelIndex index(int row, int column, const QModelIndex& parent) const;