From cb852850214747990dc72a54abe962ed72e33f48 Mon Sep 17 00:00:00 2001 From: Dpeta Date: Thu, 25 Mar 2021 19:09:01 +0100 Subject: [PATCH] CHANGELOG update & trollslum fix --- CHANGELOG.md | 5 +++-- pesterchum.py | 6 +++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a98e7b6..bbe6e36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ## [v2.0] - 2021-3-25 ### Added -- Added markup to "PESTER" and "ADD GROUP" menu options. +- Added styleing/markup to "PESTER" and "ADD GROUP" menu options and some other previously unstyled elements :) - Added pesterchum.spec for use with pyinstaller. - Wrapped socket in SSL context and changed the port appropriately, hostname verification is turned off. @@ -16,6 +16,7 @@ ### Fixed - Fixed sRGB profile issue with certain images. +- Fixed issue where Pesterchum crashed if a quirk was malformed. ### Deprecated - Removed update system (it seemed to be non-functional). @@ -32,4 +33,4 @@ ### Deprecated - Removed dead links to Pesterchum QDB from menus. -- Removed no longer functional bugreport system. \ No newline at end of file +- Removed no longer functional bugreport system. diff --git a/pesterchum.py b/pesterchum.py index c784803..1a33155 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -949,7 +949,11 @@ class trollSlum(chumArea): for c in chumlistings: c.changeTheme(theme) - unblockChumSignal = QtCore.pyqtSignal('QString') + # This causes: + # TypeError: connect() failed between triggered(bool) and unblockChumSignal() + # I'm not sure why this was here in the first place- + # Does removing it break anything else...? + #unblockChumSignal = QtCore.pyqtSignal('QString') class TrollSlumWindow(QtWidgets.QFrame): def __init__(self, trolls, mainwindow, parent=None):