From b8cdcfb4f408e4d473e0e21ecb5109627894ae52 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sat, 28 Jan 2023 18:53:07 +0300 Subject: [PATCH] Updated version --- src/applicationinfo.h | 4 ++-- src/chathandler.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/applicationinfo.h b/src/applicationinfo.h index da3d4109..05855377 100644 --- a/src/applicationinfo.h +++ b/src/applicationinfo.h @@ -6,8 +6,8 @@ // https://docs.microsoft.com/ru-ru/windows/win32/menurc/versioninfo-resource?redirectedfrom=MSDN #define APP_INFO_PRODUCTVERSION_MAJOR 0 -#define APP_INFO_PRODUCTVERSION_MINOR 21 -#define APP_INFO_PRODUCTVERSION_PATCH 1 +#define APP_INFO_PRODUCTVERSION_MINOR 22 +#define APP_INFO_PRODUCTVERSION_PATCH 0 #define APP_INFO_PRODUCTVERSION APP_INFO_PRODUCTVERSION_MAJOR, APP_INFO_PRODUCTVERSION_MINOR, APP_INFO_PRODUCTVERSION_PATCH, 0 #define APP_INFO_PRODUCTVERSION_STR STR(APP_INFO_PRODUCTVERSION_MAJOR) "." STR(APP_INFO_PRODUCTVERSION_MINOR) "." STR(APP_INFO_PRODUCTVERSION_PATCH) diff --git a/src/chathandler.cpp b/src/chathandler.cpp index e2a4d2fe..fce55c1a 100644 --- a/src/chathandler.cpp +++ b/src/chathandler.cpp @@ -48,8 +48,8 @@ ChatHandler::ChatHandler(QSettings& settings_, QNetworkAccessManager& network_, setProxyServerAddress(settings.value(SettingsProxyAddress, _proxy.hostName()).toString()); setProxyServerPort(settings.value(SettingsProxyPort, _proxy.port()).toInt()); - addService(new Twitch (settings, SettingsGroupPath + "/twitch", network, this)); addService(new YouTube (settings, SettingsGroupPath + "/youtube", network, this)); + addService(new Twitch (settings, SettingsGroupPath + "/twitch", network, this)); addService(new Trovo (settings, SettingsGroupPath + "/trovo", network, this)); addService(new GoodGame (settings, SettingsGroupPath + "/goodgame", network, this)); addService(new VkPlayLive (settings, SettingsGroupPath + "/vkplaylive", network, this));