From 8db7e4246ae418e7569ee4d60e4e3974a0714017 Mon Sep 17 00:00:00 2001 From: Nerixyz Date: Sat, 26 Aug 2023 21:28:34 +0200 Subject: [PATCH 1/3] fix: wrong encoding --- .CI/build-installer.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.CI/build-installer.ps1 b/.CI/build-installer.ps1 index 1d897e208d5..ed64e6a4ab8 100644 --- a/.CI/build-installer.ps1 +++ b/.CI/build-installer.ps1 @@ -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"; } From 3ad2469b313c80be28aaea9f36fd299ba08fd673 Mon Sep 17 00:00:00 2001 From: Nerixyz Date: Sat, 26 Aug 2023 21:34:11 +0200 Subject: [PATCH 2/3] chore: add changelog entry --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 420f6d5d1a7..082ed06d8c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unversioned +- Bugfix: 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) From c608bbe5f948931ae8b416eb24623f0fe68c5f02 Mon Sep 17 00:00:00 2001 From: Nerixyz Date: Sat, 26 Aug 2023 21:40:09 +0200 Subject: [PATCH 3/3] fix: not really a bug --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 082ed06d8c9..b0645a80852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Unversioned -- Bugfix: Fixed UTF16 encoding of `modes` file for the installer. (#4791) +- Dev: Fixed UTF16 encoding of `modes` file for the installer. (#4791) ## 2.4.5