mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
added brave browser to supported NM list (#1862)
* added brave browser to supported NM list * updated CHANGELOG.md
This commit is contained in:
parent
95d6be6bb9
commit
8530ffb7e3
2 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
## Unversioned
|
## Unversioned
|
||||||
|
|
||||||
|
- Minor: Added support for Brave browser. (#1862)
|
||||||
- Major: We now support image thumbnails coming from the link resolver. This feature is off by default and can be enabled in the settings with the "Show link thumbnail" setting. This feature also requires the "Show link info when hovering" setting to be enabled (#1664)
|
- Major: We now support image thumbnails coming from the link resolver. This feature is off by default and can be enabled in the settings with the "Show link thumbnail" setting. This feature also requires the "Show link info when hovering" setting to be enabled (#1664)
|
||||||
- Major: Added image upload functionality to i.nuuls.com with an ability to change upload destination. This works by dragging and dropping an image into a split, or pasting an image into the text edit field. (#1332, #1741)
|
- Major: Added image upload functionality to i.nuuls.com with an ability to change upload destination. This works by dragging and dropping an image into a split, or pasting an image into the text edit field. (#1332, #1741)
|
||||||
- Minor: Add a switcher widget, similar to Discord. It can be opened by pressing Ctrl+K. (#1588)
|
- Minor: Add a switcher widget, similar to Discord. It can be opened by pressing Ctrl+K. (#1588)
|
||||||
|
|
|
@ -188,7 +188,8 @@ void AttachedWindow::attachToHwnd(void *_attachedPtr)
|
||||||
!qfilename.endsWith("firefox.exe") &&
|
!qfilename.endsWith("firefox.exe") &&
|
||||||
!qfilename.endsWith("vivaldi.exe") &&
|
!qfilename.endsWith("vivaldi.exe") &&
|
||||||
!qfilename.endsWith("opera.exe") &&
|
!qfilename.endsWith("opera.exe") &&
|
||||||
!qfilename.endsWith("msedge.exe"))
|
!qfilename.endsWith("msedge.exe") &&
|
||||||
|
!qfilename.endsWith("brave.exe"))
|
||||||
|
|
||||||
{
|
{
|
||||||
qDebug() << "NM Illegal caller" << qfilename;
|
qDebug() << "NM Illegal caller" << qfilename;
|
||||||
|
|
Loading…
Reference in a new issue