Release v2.5.3-beta.1 (#6095)

This commit is contained in:
pajlada
2025-03-18 10:14:41 +01:00
committed by GitHub
parent 8c4363c92a
commit a104a9725e
5 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Chatterino"
#define MyAppVersion "2.5.2"
#define MyAppVersion "2.5.3"
#define MyAppPublisher "Chatterino Team"
#define MyAppURL "https://www.chatterino.com"
#define MyAppExeName "chatterino.exe"
+2
View File
@@ -2,6 +2,8 @@
## Unversioned
## 2.5.3-beta.1
- Minor: Added an option to allow multiple user-selected extensions to interact with Chatterino. (#5997)
- Minor: Add `Set highlight sounds` and `Open subscription page` split hotkeys. (#5856, #6030)
- Minor: `/clear` messages are now stacked like timeouts. (#5806)
+1 -1
View File
@@ -42,7 +42,7 @@ if(BUILD_BENCHMARKS)
endif()
project(chatterino
VERSION 2.5.2
VERSION 2.5.3
DESCRIPTION "Chat client for twitch.tv"
HOMEPAGE_URL "https://chatterino.com/"
)
@@ -34,6 +34,9 @@
<binary>chatterino</binary>
</provides>
<releases>
<release version="2.5.3~beta1" date="2025-03-17">
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.5.3-beta.1</url>
</release>
<release version="2.5.2" date="2025-01-05">
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.5.2</url>
</release>
+1 -1
View File
@@ -25,7 +25,7 @@ namespace chatterino {
* - 2.4.0-alpha.2
* - 2.4.0-alpha
**/
inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.2");
inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.3-beta.1");
class Version
{