mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Release v2.5.0-beta.1 (#5303)
This commit is contained in:
parent
2ea24c1a9d
commit
25a69fd10e
|
@ -2,7 +2,7 @@
|
||||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||||
|
|
||||||
#define MyAppName "Chatterino"
|
#define MyAppName "Chatterino"
|
||||||
#define MyAppVersion "2.4.6"
|
#define MyAppVersion "2.5.0"
|
||||||
#define MyAppPublisher "Chatterino Team"
|
#define MyAppPublisher "Chatterino Team"
|
||||||
#define MyAppURL "https://www.chatterino.com"
|
#define MyAppURL "https://www.chatterino.com"
|
||||||
#define MyAppExeName "chatterino.exe"
|
#define MyAppExeName "chatterino.exe"
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## Unversioned
|
## Unversioned
|
||||||
|
|
||||||
|
## 2.5.0-beta.1
|
||||||
|
|
||||||
- Major: Twitch follower emotes can now be correctly tabbed in other channels when you are subscribed to the channel the emote is from. (#4922)
|
- Major: Twitch follower emotes can now be correctly tabbed in other channels when you are subscribed to the channel the emote is from. (#4922)
|
||||||
- Major: Added `/automod` split to track automod caught messages across all open channels the user moderates. (#4986, #5026)
|
- Major: Added `/automod` split to track automod caught messages across all open channels the user moderates. (#4986, #5026)
|
||||||
- Major: Moderators can now see restricted chat messages and suspicious treatment updates. (#5056, #5060)
|
- Major: Moderators can now see restricted chat messages and suspicious treatment updates. (#5056, #5060)
|
||||||
|
|
|
@ -41,7 +41,7 @@ if(BUILD_BENCHMARKS)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
project(chatterino
|
project(chatterino
|
||||||
VERSION 2.4.6
|
VERSION 2.5.0
|
||||||
DESCRIPTION "Chat client for twitch.tv"
|
DESCRIPTION "Chat client for twitch.tv"
|
||||||
HOMEPAGE_URL "https://chatterino.com/"
|
HOMEPAGE_URL "https://chatterino.com/"
|
||||||
)
|
)
|
||||||
|
|
|
@ -9,6 +9,8 @@
|
||||||
This cannot use dash to denote a pre-release identifier, you have to use a tilde instead.
|
This cannot use dash to denote a pre-release identifier, you have to use a tilde instead.
|
||||||
|
|
||||||
- [ ] Updated version code in `.CI/chatterino-installer.iss`
|
- [ ] Updated version code in `.CI/chatterino-installer.iss`
|
||||||
|
This can only be "whole versions", so if you're releasing `2.4.0-beta` you'll need to condense it to `2.4.0`
|
||||||
|
|
||||||
- [ ] Update the changelog `## Unreleased` section to the new version `CHANGELOG.md`
|
- [ ] Update the changelog `## Unreleased` section to the new version `CHANGELOG.md`
|
||||||
Make sure to leave the `## Unreleased` line unchanged for easier merges
|
Make sure to leave the `## Unreleased` line unchanged for easier merges
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,9 @@
|
||||||
<binary>chatterino</binary>
|
<binary>chatterino</binary>
|
||||||
</provides>
|
</provides>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="2.5.0~beta1" date="2024-04-07">
|
||||||
|
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.5.0-beta.1</url>
|
||||||
|
</release>
|
||||||
<release version="2.4.6" date="2023-09-30">
|
<release version="2.4.6" date="2023-09-30">
|
||||||
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.4.6</url>
|
<url>https://github.com/Chatterino/chatterino2/releases/tag/v2.4.6</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.6"
|
#define CHATTERINO_VERSION "2.5.0-beta.1"
|
||||||
|
|
||||||
#if defined(Q_OS_WIN)
|
#if defined(Q_OS_WIN)
|
||||||
# define CHATTERINO_OS "win"
|
# define CHATTERINO_OS "win"
|
||||||
|
|
Loading…
Reference in a new issue