Bump version, add poll, no release yet.
This commit is contained in:
parent
8d6c8e3ad4
commit
d374931fb7
@ -46,7 +46,7 @@ MOC_DIR = $$OUT_PWD/moc
|
|||||||
RCC_DIR = $$OUT_PWD/rcc
|
RCC_DIR = $$OUT_PWD/rcc
|
||||||
UI_DIR = $$OUT_PWD/ui
|
UI_DIR = $$OUT_PWD/ui
|
||||||
|
|
||||||
mac {
|
mac:qtHaveModule(macextras) {
|
||||||
QT *= macextras
|
QT *= macextras
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ APP_REVERSE_NAME = "com.github.rssguard"
|
|||||||
APP_LOW_H_NAME = ".rssguard"
|
APP_LOW_H_NAME = ".rssguard"
|
||||||
APP_AUTHOR = "Martin Rotter"
|
APP_AUTHOR = "Martin Rotter"
|
||||||
APP_COPYRIGHT = "(C) 2011-2020 $$APP_AUTHOR"
|
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_LONG_NAME = "$$APP_NAME $$APP_VERSION"
|
||||||
APP_EMAIL = "rotter.martinos@gmail.com"
|
APP_EMAIL = "rotter.martinos@gmail.com"
|
||||||
APP_URL = "https://github.com/martinrotter/rssguard"
|
APP_URL = "https://github.com/martinrotter/rssguard"
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
<url type="donation">https://martinrotter.github.io/donate/</url>
|
<url type="donation">https://martinrotter.github.io/donate/</url>
|
||||||
<content_rating type="oars-1.1" />
|
<content_rating type="oars-1.1" />
|
||||||
<releases>
|
<releases>
|
||||||
<release version="3.6.1" date="2020-05-13"/>
|
<release version="3.6.1" date="2020-05-14"/>
|
||||||
</releases>
|
</releases>
|
||||||
<content_rating type="oars-1.0">
|
<content_rating type="oars-1.0">
|
||||||
<content_attribute id="violence-cartoon">none</content_attribute>
|
<content_attribute id="violence-cartoon">none</content_attribute>
|
||||||
|
@ -110,7 +110,7 @@ void Application::loadDynamicShortcuts() {
|
|||||||
|
|
||||||
void Application::showPolls() const {
|
void Application::showPolls() const {
|
||||||
if (isFirstRun(APP_VERSION)) {
|
if (isFirstRun(APP_VERSION)) {
|
||||||
//web()->openUrlInExternalBrowser(QSL("https://goo.gl/forms/7bJNr33Ii22Q1c3k2"));
|
web()->openUrlInExternalBrowser(QSL("https://forms.gle/GXw1gNksRZDfSccL7"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,8 +15,6 @@ BaseNetworkAccessManager::BaseNetworkAccessManager(QObject* parent)
|
|||||||
loadSettings();
|
loadSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
BaseNetworkAccessManager::~BaseNetworkAccessManager() = default;
|
|
||||||
|
|
||||||
void BaseNetworkAccessManager::loadSettings() {
|
void BaseNetworkAccessManager::loadSettings() {
|
||||||
QNetworkProxy new_proxy;
|
QNetworkProxy new_proxy;
|
||||||
const QNetworkProxy::ProxyType selected_proxy_type = static_cast<QNetworkProxy::ProxyType>(qApp->settings()->value(GROUP(Proxy),
|
const QNetworkProxy::ProxyType selected_proxy_type = static_cast<QNetworkProxy::ProxyType>(qApp->settings()->value(GROUP(Proxy),
|
||||||
|
@ -12,8 +12,7 @@ class BaseNetworkAccessManager : public QNetworkAccessManager {
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
// Constructors and desctructors.
|
// Constructors and desctructors.
|
||||||
explicit BaseNetworkAccessManager(QObject* parent = 0);
|
explicit BaseNetworkAccessManager(QObject* parent = nullptr);
|
||||||
virtual ~BaseNetworkAccessManager();
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ class GoogleSuggest : public QObject {
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
// Constructors.
|
// Constructors.
|
||||||
explicit GoogleSuggest(LocationLineEdit* editor, QObject* parent = 0);
|
explicit GoogleSuggest(LocationLineEdit* editor, QObject* parent = nullptr);
|
||||||
virtual ~GoogleSuggest();
|
virtual ~GoogleSuggest();
|
||||||
|
|
||||||
bool eventFilter(QObject* object, QEvent* event);
|
bool eventFilter(QObject* object, QEvent* event);
|
||||||
|
@ -40,7 +40,7 @@ class OAuth2Service : public QObject {
|
|||||||
public:
|
public:
|
||||||
explicit OAuth2Service(const QString& auth_url, const QString& token_url,
|
explicit OAuth2Service(const QString& auth_url, const QString& token_url,
|
||||||
const QString& client_id, const QString& client_secret,
|
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.
|
// Returns bearer HTTP header value.
|
||||||
// NOTE: Only call this if isFullyLoggedIn()
|
// NOTE: Only call this if isFullyLoggedIn()
|
||||||
|
@ -15,7 +15,7 @@ class SilentNetworkAccessManager : public BaseNetworkAccessManager {
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
// Constructors and destructors.
|
// Constructors and destructors.
|
||||||
explicit SilentNetworkAccessManager(QObject* parent = 0);
|
explicit SilentNetworkAccessManager(QObject* parent = nullptr);
|
||||||
virtual ~SilentNetworkAccessManager();
|
virtual ~SilentNetworkAccessManager();
|
||||||
|
|
||||||
// Returns pointer to global silent network manager
|
// Returns pointer to global silent network manager
|
||||||
|
@ -18,7 +18,7 @@ class WebPage : public QWebEnginePage {
|
|||||||
MarkUnstarred
|
MarkUnstarred
|
||||||
};
|
};
|
||||||
|
|
||||||
explicit WebPage(QObject* parent = 0);
|
explicit WebPage(QObject* parent = nullptr);
|
||||||
|
|
||||||
WebViewer* view() const;
|
WebViewer* view() const;
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ class AccountCheckModel : public QAbstractItemModel {
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
// Constructors and destructors.
|
// Constructors and destructors.
|
||||||
explicit AccountCheckModel(QObject* parent = 0);
|
explicit AccountCheckModel(QObject* parent = nullptr);
|
||||||
virtual ~AccountCheckModel();
|
virtual ~AccountCheckModel();
|
||||||
|
|
||||||
QModelIndex index(int row, int column, const QModelIndex& parent) const;
|
QModelIndex index(int row, int column, const QModelIndex& parent) const;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user