mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Release v2.5.1 (#5364)
This commit is contained in:
parent
58a930d28c
commit
eafcb941f5
|
@ -2,7 +2,7 @@
|
|||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define MyAppName "Chatterino"
|
||||
#define MyAppVersion "2.5.0"
|
||||
#define MyAppVersion "2.5.1"
|
||||
#define MyAppPublisher "Chatterino Team"
|
||||
#define MyAppURL "https://www.chatterino.com"
|
||||
#define MyAppExeName "chatterino.exe"
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
## Unversioned
|
||||
|
||||
## 2.5.1
|
||||
|
||||
- Bugfix: Fixed links without a protocol not being clickable. (#5345)
|
||||
|
||||
## 2.5.0
|
||||
|
|
|
@ -41,7 +41,7 @@ if(BUILD_BENCHMARKS)
|
|||
endif()
|
||||
|
||||
project(chatterino
|
||||
VERSION 2.5.0
|
||||
VERSION 2.5.1
|
||||
DESCRIPTION "Chat client for twitch.tv"
|
||||
HOMEPAGE_URL "https://chatterino.com/"
|
||||
)
|
||||
|
|
|
@ -34,6 +34,9 @@
|
|||
<binary>chatterino</binary>
|
||||
</provides>
|
||||
<releases>
|
||||
<release version="2.5.1" date="2024-04-28">
|
||||
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.5.1</url>
|
||||
</release>
|
||||
<release version="2.5.0" date="2024-04-21">
|
||||
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.5.0</url>
|
||||
</release>
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* - 2.4.0-alpha.2
|
||||
* - 2.4.0-alpha
|
||||
**/
|
||||
#define CHATTERINO_VERSION "2.5.0"
|
||||
#define CHATTERINO_VERSION "2.5.1"
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
# define CHATTERINO_OS "win"
|
||||
|
|
Loading…
Reference in a new issue