Release v2.5.4-beta.1 (#6419)

This commit is contained in:
pajlada
2025-08-30 10:26:00 +02:00
committed by GitHub
parent c7a7740bfe
commit 30dbdba620
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.3"
#define MyAppVersion "2.5.4"
#define MyAppPublisher "Chatterino Team"
#define MyAppURL "https://www.chatterino.com"
#define MyAppExeName "chatterino.exe"
+2
View File
@@ -2,6 +2,8 @@
## Unversioned
## 2.5.4-beta.1
- Minor: Added `Open in custom player` to `twitch.tv/<channel>` link context menus. (#6403)
- Minor: Added user notes to the user info dialog (when clicking a username). (#6122, #6318)
- Minor: Added cached emotes fallback when fetching from a provider fails. (#6125, #6229)
+1 -1
View File
@@ -43,7 +43,7 @@ if(BUILD_BENCHMARKS)
endif()
project(chatterino
VERSION 2.5.3
VERSION 2.5.4
DESCRIPTION "Chat client for twitch.tv"
HOMEPAGE_URL "https://chatterino.com/"
)
@@ -34,6 +34,9 @@
<binary>chatterino</binary>
</provides>
<releases>
<release version="2.5.4~beta1" date="2025-08-30">
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.5.4-beta.1</url>
</release>
<release version="2.5.3" date="2025-03-23">
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.5.3</url>
</release>
+1 -1
View File
@@ -29,7 +29,7 @@ namespace chatterino {
* - 2.4.0-alpha.2
* - 2.4.0-alpha
**/
inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.3");
inline const QString CHATTERINO_VERSION = QStringLiteral("2.5.4-beta.1");
class Version
{