mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
v2.3.3
This commit is contained in:
parent
e352d7b31a
commit
97b9bfb2bd
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue