CHANGELOG update & trollslum fix

This commit is contained in:
Dpeta 2021-03-25 19:09:01 +01:00
parent fce548adde
commit cb85285021
2 changed files with 8 additions and 3 deletions

View file

@ -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.
- Removed no longer functional bugreport system.

View file

@ -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):