CHANGELOG update & trollslum fix
This commit is contained in:
parent
fce548adde
commit
cb85285021
2 changed files with 8 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
||||||
## [v2.0] - 2021-3-25
|
## [v2.0] - 2021-3-25
|
||||||
|
|
||||||
### Added
|
### 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.
|
- Added pesterchum.spec for use with pyinstaller.
|
||||||
- Wrapped socket in SSL context and changed the port appropriately, hostname verification is turned off.
|
- Wrapped socket in SSL context and changed the port appropriately, hostname verification is turned off.
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed sRGB profile issue with certain images.
|
- Fixed sRGB profile issue with certain images.
|
||||||
|
- Fixed issue where Pesterchum crashed if a quirk was malformed.
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
- Removed update system (it seemed to be non-functional).
|
- Removed update system (it seemed to be non-functional).
|
||||||
|
|
|
@ -949,7 +949,11 @@ class trollSlum(chumArea):
|
||||||
for c in chumlistings:
|
for c in chumlistings:
|
||||||
c.changeTheme(theme)
|
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):
|
class TrollSlumWindow(QtWidgets.QFrame):
|
||||||
def __init__(self, trolls, mainwindow, parent=None):
|
def __init__(self, trolls, mainwindow, parent=None):
|
||||||
|
|
Loading…
Reference in a new issue