mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
v2.3.1
This commit is contained in:
parent
f6d9fb2aac
commit
cf33566fd7
|
@ -2,6 +2,9 @@
|
|||
|
||||
## Unversioned
|
||||
|
||||
## 2.3.1
|
||||
|
||||
- Major: Fixed crashing with the extension (#2704)
|
||||
- Major: Added the ability to highlight messages based on user badges. (#1704)
|
||||
- Minor: Added visual indicator to message length if over 500 characters long (#2659)
|
||||
- Minor: Added `is:<flags>` search filter to find messages of specific types. (#2653, #2671)
|
||||
|
|
|
@ -7,7 +7,7 @@ list(APPEND CMAKE_MODULE_PATH
|
|||
"${CMAKE_SOURCE_DIR}/cmake/sanitizers-cmake/cmake"
|
||||
)
|
||||
|
||||
project(chatterino VERSION 2.3.0)
|
||||
project(chatterino VERSION 2.3.1)
|
||||
|
||||
option(BUILD_APP "Build Chatterino" ON)
|
||||
option(BUILD_TESTS "Build the tests for Chatterino" OFF)
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
</summary>
|
||||
<description>
|
||||
<p>
|
||||
Chatterino is a chat client for Twitch chat. It aims to be an improved/extended version of the Twitch web chat.
|
||||
Chatterino is a chat client for Twitch.tv.
|
||||
</p>
|
||||
</description>
|
||||
<screenshots>
|
||||
|
@ -32,6 +32,6 @@
|
|||
<binary>chatterino</binary>
|
||||
</provides>
|
||||
<releases>
|
||||
<release version="2.3.0" date="2021-04-18"/>
|
||||
<release version="2.3.1" date="2021-04-18"/>
|
||||
</releases>
|
||||
</component>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include <QString>
|
||||
#include <QtGlobal>
|
||||
|
||||
#define CHATTERINO_VERSION "2.3.0"
|
||||
#define CHATTERINO_VERSION "2.3.1"
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
# define CHATTERINO_OS "win"
|
||||
|
|
Loading…
Reference in a new issue