Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
3dproger committed Jan 28, 2023
1 parent 0e0465c commit b8cdcfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/applicationinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/chathandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit b8cdcfb

Please sign in to comment.