mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Remove protocol from organization domain (#4256)
* remove protocol from organization domain * Add changelog entry * update changelog entry Co-authored-by: Sam Heybey <sam@heybey.org>
This commit is contained in:
parent
b9308d7325
commit
99e038ce5e
|
@ -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
|
||||
|
|
|
@ -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{};
|
||||
|
||||
|
|
Loading…
Reference in a new issue