This commit is contained in:
fourtf 2021-06-21 11:35:53 +02:00
parent e352d7b31a
commit 97b9bfb2bd
5 changed files with 8 additions and 6 deletions

View file

@ -2,6 +2,8 @@
## Unversioned
## 2.3.3
- Major: Added username autocompletion popup menu when typing usernames with an @ prefix. (#1979, #2866)
- Major: Added ability to toggle visibility of Channel Tabs - This can be done by right-clicking the tab area or pressing the keyboard shortcut (default: Ctrl+U). (#2600)
- Minor: The /live split now shows channels going offline. (#2880)

View file

@ -7,7 +7,7 @@ list(APPEND CMAKE_MODULE_PATH
"${CMAKE_SOURCE_DIR}/cmake/sanitizers-cmake/cmake"
)
project(chatterino VERSION 2.3.2)
project(chatterino VERSION 2.3.3)
option(BUILD_APP "Build Chatterino" ON)
option(BUILD_TESTS "Build the tests for Chatterino" OFF)

View file

@ -32,6 +32,6 @@
<binary>chatterino</binary>
</provides>
<releases>
<release version="2.3.2" date="2021-04-18"/>
<release version="2.3.3" date="2021-06-21"/>
</releases>
</component>

View file

@ -3,7 +3,7 @@
#include <QString>
#include <QtGlobal>
#define CHATTERINO_VERSION "2.3.2"
#define CHATTERINO_VERSION "2.3.3"
#if defined(Q_OS_WIN)
# define CHATTERINO_OS "win"

View file

@ -352,10 +352,10 @@ void Notebook::setShowTabs(bool value)
{
QMessageBox msgBox;
msgBox.window()->setWindowTitle("Chatterino - hidden tabs");
msgBox.setText("You've just hidden your tabs");
msgBox.setText("You've just hidden your tabs.");
msgBox.setInformativeText(
"You can toggle tabs by using the keyboard shortcut (Ctrl + U by "
"default) or right-clicking on the tab area and selecting \"Toggle "
"You can toggle tabs by using the keyboard shortcut (Ctrl+U by "
"default) or right-clicking the tab area and selecting \"Toggle "
"visibility of tabs\".");
msgBox.addButton(QMessageBox::Ok);
auto *dsaButton =