diff --git a/src/common/Version.hpp b/src/common/Version.hpp index 416987a1d..608bd134d 100644 --- a/src/common/Version.hpp +++ b/src/common/Version.hpp @@ -2,7 +2,7 @@ #include -#define CHATTERINO_VERSION "2.1.2" +#define CHATTERINO_VERSION "2.1.3" #if defined(Q_OS_WIN) # define CHATTERINO_OS "win" diff --git a/src/widgets/Window.cpp b/src/widgets/Window.cpp index 6d13bce80..4841546a8 100644 --- a/src/widgets/Window.cpp +++ b/src/widgets/Window.cpp @@ -372,6 +372,8 @@ void Window::onAccountSelected() { auto user = getApp()->accounts->twitch.getCurrent(); +#undef CHATTERINO_NIGHTLY_VERSION_STRING + #ifdef CHATTERINO_NIGHTLY_VERSION_STRING auto windowTitleEnd = QString("Chatterino Nightly " CHATTERINO_VERSION diff --git a/src/widgets/settingspages/GeneralPage.cpp b/src/widgets/settingspages/GeneralPage.cpp index e9c08f705..a9b74ad36 100644 --- a/src/widgets/settingspages/GeneralPage.cpp +++ b/src/widgets/settingspages/GeneralPage.cpp @@ -287,15 +287,16 @@ void GeneralPage::initLayout(SettingsLayout &layout) layout.addCheckbox("Chatterino", getSettings()->showBadgesChatterino); layout.addTitle("Chat title"); - layout.addWidget(new QLabel("In live channels show:")); + layout.addDescription("In live channels show:"); layout.addCheckbox("Uptime", s.headerUptime); layout.addCheckbox("Viewer count", s.headerViewerCount); layout.addCheckbox("Category", s.headerGame); layout.addCheckbox("Title", s.headerStreamTitle); layout.addTitle("Beta"); - layout.addDescription("You can receive updates earlier by ticking the box " - "below. Updates are checked on startup."); + layout.addDescription( + "You can receive updates earlier by ticking the box below. Report " + "issues here."); layout.addCheckbox("Receive beta updates", s.betaUpdates); #ifdef Q_OS_WIN