From 99e038ce5edf49e3b54d6f6c95906e912e082aa5 Mon Sep 17 00:00:00 2001 From: pajlada Date: Sat, 24 Dec 2022 12:25:05 +0100 Subject: [PATCH] Remove protocol from organization domain (#4256) * remove protocol from organization domain * Add changelog entry * update changelog entry Co-authored-by: Sam Heybey --- CHANGELOG.md | 1 + src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86424a62c..f0a037526 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ - Bugfix: Fixed unnecessary saving of windows layout. (#4201) - Bugfix: Fixed Reply window missing selection clear behaviour between chat and input box. (#4218) - Bugfix: Fixed crash that could occur when changing Tab layout and utilizing multiple windows. (#4248) +- Dev: Remove protocol from QApplication's Organization Domain (so changed from `https://www.chatterino.com` to `chatterino.com`). (#4256) - Dev: Ignore `WM_SHOWWINDOW` hide events, causing fewer attempted rescales. (#4198) ## 2.4.0 diff --git a/src/main.cpp b/src/main.cpp index 31e30e55c..8ad92e3da 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -26,7 +26,7 @@ int main(int argc, char **argv) QCoreApplication::setApplicationName("chatterino"); QCoreApplication::setApplicationVersion(CHATTERINO_VERSION); - QCoreApplication::setOrganizationDomain("https://www.chatterino.com"); + QCoreApplication::setOrganizationDomain("chatterino.com"); Paths *paths{};