This commit is contained in:
fourtf 2019-08-26 23:04:55 +02:00
parent 810acbcfcc
commit 7b43f0a30a
2 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,7 @@
#include <QtGlobal> #include <QtGlobal>
#define CHATTERINO_VERSION "2.1.1" #define CHATTERINO_VERSION "2.1.2"
#if defined(Q_OS_WIN) #if defined(Q_OS_WIN)
# define CHATTERINO_OS "win" # define CHATTERINO_OS "win"

View file

@ -372,13 +372,13 @@ void Window::onAccountSelected()
{ {
auto user = getApp()->accounts->twitch.getCurrent(); auto user = getApp()->accounts->twitch.getCurrent();
#ifdef CHATTERINO_NIGHTLY_VERSION_STRING //#ifdef CHATTERINO_NIGHTLY_VERSION_STRING
auto windowTitleEnd = // auto windowTitleEnd =
QString("Chatterino Nightly " CHATTERINO_VERSION // QString("Chatterino Nightly " CHATTERINO_VERSION
" (" UGLYMACROHACK(CHATTERINO_NIGHTLY_VERSION_STRING) ")"); // " (" UGLYMACROHACK(CHATTERINO_NIGHTLY_VERSION_STRING) ")");
#else //#else
auto windowTitleEnd = QString("Chatterino " CHATTERINO_VERSION); auto windowTitleEnd = QString("Chatterino " CHATTERINO_VERSION);
#endif //#endif
this->setWindowTitle(windowTitleEnd); this->setWindowTitle(windowTitleEnd);