mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Release v2.4.4 (#4631)
This commit is contained in:
parent
8e87886ccc
commit
29a146278c
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## Unversioned
|
## Unversioned
|
||||||
|
|
||||||
|
## 2.4.4
|
||||||
|
|
||||||
- Minor: Added a Send button in the input box so you can click to send a message. This is disabled by default and can be enabled with the "Show send message button" setting. (#4607)
|
- Minor: Added a Send button in the input box so you can click to send a message. This is disabled by default and can be enabled with the "Show send message button" setting. (#4607)
|
||||||
- Minor: Improved error messages when the updater fails a download. (#4594)
|
- Minor: Improved error messages when the updater fails a download. (#4594)
|
||||||
- Minor: Added `/shield` and `/shieldoff` commands to toggle shield mode. (#4580)
|
- Minor: Added `/shield` and `/shieldoff` commands to toggle shield mode. (#4580)
|
||||||
|
|
|
@ -8,7 +8,7 @@ list(APPEND CMAKE_MODULE_PATH
|
||||||
"${CMAKE_SOURCE_DIR}/cmake/sanitizers-cmake/cmake"
|
"${CMAKE_SOURCE_DIR}/cmake/sanitizers-cmake/cmake"
|
||||||
)
|
)
|
||||||
|
|
||||||
project(chatterino VERSION 2.4.3)
|
project(chatterino VERSION 2.4.4)
|
||||||
|
|
||||||
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,9 @@
|
||||||
<binary>chatterino</binary>
|
<binary>chatterino</binary>
|
||||||
</provides>
|
</provides>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="2.4.4" date="2023-05-14">
|
||||||
|
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.4.4</url>
|
||||||
|
</release>
|
||||||
<release version="2.4.3" date="2023-04-30">
|
<release version="2.4.3" date="2023-04-30">
|
||||||
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.4.3</url>
|
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.4.3</url>
|
||||||
</release>
|
</release>
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
* - 2.4.0-alpha.2
|
* - 2.4.0-alpha.2
|
||||||
* - 2.4.0-alpha
|
* - 2.4.0-alpha
|
||||||
**/
|
**/
|
||||||
#define CHATTERINO_VERSION "2.4.3"
|
#define CHATTERINO_VERSION "2.4.4"
|
||||||
|
|
||||||
#if defined(Q_OS_WIN)
|
#if defined(Q_OS_WIN)
|
||||||
# define CHATTERINO_OS "win"
|
# define CHATTERINO_OS "win"
|
||||||
|
|
Loading…
Reference in a new issue