This commit is contained in:
fourtf 2021-05-03 20:31:04 +02:00
parent f6d9fb2aac
commit cf33566fd7
4 changed files with 7 additions and 4 deletions

View file

@ -2,6 +2,9 @@
## Unversioned ## Unversioned
## 2.3.1
- Major: Fixed crashing with the extension (#2704)
- Major: Added the ability to highlight messages based on user badges. (#1704) - 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 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) - Minor: Added `is:<flags>` search filter to find messages of specific types. (#2653, #2671)

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.0) project(chatterino VERSION 2.3.1)
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)

View file

@ -13,7 +13,7 @@
</summary> </summary>
<description> <description>
<p> <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> </p>
</description> </description>
<screenshots> <screenshots>
@ -32,6 +32,6 @@
<binary>chatterino</binary> <binary>chatterino</binary>
</provides> </provides>
<releases> <releases>
<release version="2.3.0" date="2021-04-18"/> <release version="2.3.1" date="2021-04-18"/>
</releases> </releases>
</component> </component>

View file

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