mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Encode modes
file in UTF8 (#4791)
This commit is contained in:
parent
05a72d335a
commit
15bd72eed1
|
@ -15,11 +15,11 @@ if ($isTagged) {
|
|||
# This is a release.
|
||||
# Make sure, any existing `modes` file is overwritten for the user,
|
||||
# for example when updating from nightly to stable.
|
||||
Write-Output "" > Chatterino2/modes;
|
||||
Write-Output "" | Out-File Chatterino2/modes -Encoding ASCII;
|
||||
$installerBaseName = "Chatterino.Installer";
|
||||
}
|
||||
else {
|
||||
Write-Output nightly > Chatterino2/modes;
|
||||
Write-Output nightly | Out-File Chatterino2/modes -Encoding ASCII;
|
||||
$defines = "/DIS_NIGHTLY=1";
|
||||
$installerBaseName = "Chatterino.Nightly.Installer";
|
||||
}
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
## Unversioned
|
||||
|
||||
- Dev: Fixed UTF16 encoding of `modes` file for the installer. (#4791)
|
||||
|
||||
## 2.4.5
|
||||
|
||||
- Major: AutoMod term management messages (e.g. testaccount added "noob" as a blocked term on AutoMod.) are now hidden in Streamer Mode if you have the "Hide moderation actions" setting enabled. (#4758)
|
||||
|
|
Loading…
Reference in a new issue