Skip to content

Commit

Permalink
3.2.1 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
devhotteok committed Dec 12, 2024
1 parent 7b4ad59 commit a2fa763
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion AppData/Updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ def getUpdaters(cls, versionFrom: str) -> list[typing.Callable[[dict], dict]] |
"3.1.1": None,
"3.1.2": None,
"3.1.3": None,
"3.2.0": cls.Update_3_2_0
"3.2.0": cls.Update_3_2_0,
"3.2.1": None
}
updaters = []
versionFound = False
Expand Down
2 changes: 1 addition & 1 deletion Core/Meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class Meta:
APP_NAME = "TwitchLink"

APP_VERSION = "3.2.0"
APP_VERSION = "3.2.1"

AUTHOR = "DevHotteok"

Expand Down
5 changes: 5 additions & 0 deletions Core/Qt/QtWebEngineWidgets/QWebEngineView.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
from PyQt6 import QtCore, QtGui, QtWebEngineCore, QtWebEngineWidgets

import os


os.environ["QTWEBENGINE_CHROMIUM_FLAGS"] = "--enable-experimental-web-platform-features"


class _QWebEngineView(QtWebEngineWidgets.QWebEngineView):
firstLoad = True
Expand Down

0 comments on commit a2fa763

Please sign in to comment.