From 30dbdba6207540dcb38a2671f397a362a5d3fb91 Mon Sep 17 00:00:00 2001 From: pajlada Date: Sat, 30 Aug 2025 10:26:00 +0200 Subject: [PATCH] Release v2.5.4-beta.1 (#6419) --- .CI/chatterino-installer.iss | 2 +- CHANGELOG.md | 2 ++ CMakeLists.txt | 2 +- resources/com.chatterino.chatterino.appdata.xml | 3 +++ src/common/Version.hpp | 2 +- 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.CI/chatterino-installer.iss b/.CI/chatterino-installer.iss index f5549cab..f2bba4a8 100644 --- a/.CI/chatterino-installer.iss +++ b/.CI/chatterino-installer.iss @@ -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" diff --git a/CHANGELOG.md b/CHANGELOG.md index 31ef1efc..180400d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unversioned +## 2.5.4-beta.1 + - Minor: Added `Open in custom player` to `twitch.tv/` 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) diff --git a/CMakeLists.txt b/CMakeLists.txt index 95039fd6..e694741a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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/" ) diff --git a/resources/com.chatterino.chatterino.appdata.xml b/resources/com.chatterino.chatterino.appdata.xml index a76af24f..eb028f12 100644 --- a/resources/com.chatterino.chatterino.appdata.xml +++ b/resources/com.chatterino.chatterino.appdata.xml @@ -34,6 +34,9 @@ chatterino + + https://github.com/Chatterino/chatterino2/releases/tag/v2.5.4-beta.1 + https://github.com/Chatterino/chatterino2/releases/tag/v2.5.3 diff --git a/src/common/Version.hpp b/src/common/Version.hpp index a93b27f9..faac0110 100644 --- a/src/common/Version.hpp +++ b/src/common/Version.hpp @@ -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 {