v2.3.3
This commit is contained in:
@@ -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
@@ -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>
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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 =
|
||||||
|
|||||||
Reference in New Issue
Block a user