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
+2
View File
@@ -2,6 +2,8 @@
## Unversioned ## Unversioned
## 2.3.3
- Major: Added username autocompletion popup menu when typing usernames with an @ prefix. (#1979, #2866) - 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) - 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) - Minor: The /live split now shows channels going offline. (#2880)
+1 -1
View File
@@ -7,7 +7,7 @@ list(APPEND CMAKE_MODULE_PATH
"${CMAKE_SOURCE_DIR}/cmake/sanitizers-cmake/cmake" "${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_APP "Build Chatterino" ON)
option(BUILD_TESTS "Build the tests for Chatterino" OFF) option(BUILD_TESTS "Build the tests for Chatterino" OFF)
@@ -32,6 +32,6 @@
<binary>chatterino</binary> <binary>chatterino</binary>
</provides> </provides>
<releases> <releases>
<release version="2.3.2" date="2021-04-18"/> <release version="2.3.3" date="2021-06-21"/>
</releases> </releases>
</component> </component>
+1 -1
View File
@@ -3,7 +3,7 @@
#include <QString> #include <QString>
#include <QtGlobal> #include <QtGlobal>
#define CHATTERINO_VERSION "2.3.2" #define CHATTERINO_VERSION "2.3.3"
#if defined(Q_OS_WIN) #if defined(Q_OS_WIN)
# define CHATTERINO_OS "win" # define CHATTERINO_OS "win"
+3 -3
View File
@@ -352,10 +352,10 @@ void Notebook::setShowTabs(bool value)
{ {
QMessageBox msgBox; QMessageBox msgBox;
msgBox.window()->setWindowTitle("Chatterino - hidden tabs"); msgBox.window()->setWindowTitle("Chatterino - hidden tabs");
msgBox.setText("You've just hidden your tabs"); msgBox.setText("You've just hidden your tabs.");
msgBox.setInformativeText( msgBox.setInformativeText(
"You can toggle tabs by using the keyboard shortcut (Ctrl + U by " "You can toggle tabs by using the keyboard shortcut (Ctrl+U by "
"default) or right-clicking on the tab area and selecting \"Toggle " "default) or right-clicking the tab area and selecting \"Toggle "
"visibility of tabs\"."); "visibility of tabs\".");
msgBox.addButton(QMessageBox::Ok); msgBox.addButton(QMessageBox::Ok);
auto *dsaButton = auto *dsaButton =