diff --git a/CHANGELOG.md b/CHANGELOG.md index bc5ed2e..631efbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Changelog (This document uses YYYY-MM-DD as per ISO 8601) +## [v2.1.1] - 2021-4-12 + +# Fixed +- Fixed theme not getting applied correctly to memo. +- Fixed sRGB profile in steamchum. + +## Changed +- convo/tabwindow on trollian seems to be used for the general background color, so, I changed it to a value. I'm not use if this was intentional. + ## [v2.1.0] - 2021-4-11 ### Added diff --git a/TODO.md b/TODO.md index ca50ec0..128a358 100644 --- a/TODO.md +++ b/TODO.md @@ -12,4 +12,8 @@ - Choose memo window doesn't get updated on theme change. - Right click menu's color doesn't get updated on theme change in memos. - Closed windows sometimes stay open. - - help() causes console to crash...? \ No newline at end of file + - help() causes console to crash...? + - Themes sometimes don't get applied to trollslum. + + ## ??? + - Figure out why convo/tabwindow has the effect is seems to- :/ \ No newline at end of file diff --git a/convo.py b/convo.py index ba4e190..d1fc34c 100644 --- a/convo.py +++ b/convo.py @@ -595,7 +595,7 @@ class PesterConvo(QtWidgets.QFrame): self.mainwindow = mainwindow theme = self.mainwindow.theme self.resize(*theme["convo/size"]) - self.setStyleSheet("QFrame#%s { %s }" % (chum.handle, theme["convo/style"])) + self.setStyleSheet("QtWidgets.QFrame#%s { %s }" % (chum.handle, theme["convo/style"])) self.setWindowIcon(self.icon()) self.setWindowTitle(self.title()) @@ -856,7 +856,7 @@ class PesterConvo(QtWidgets.QFrame): self.chumopen = o def changeTheme(self, theme): self.resize(*theme["convo/size"]) - self.setStyleSheet("QFrame#%s { %s }" % (self.chum.handle, theme["convo/style"])) + self.setStyleSheet("QtWidgets.QFrame#%s { %s }" % (self.chum.handle, theme["convo/style"])) margins = theme["convo/margins"] self.layout.setContentsMargins(margins["left"], margins["top"], diff --git a/memos.py b/memos.py index 4776aff..8d0f066 100644 --- a/memos.py +++ b/memos.py @@ -588,11 +588,8 @@ class PesterMemo(PesterConvo): def initTheme(self, theme): self.resize(*theme["memos/size"]) - #self.setStyleSheet("QFrame#%s { %s }" % (self.channel, theme["memos/style"])) - # Kind of broken - self.setStyleSheet(theme["memos/style"]) + self.setStyleSheet("QtWidgets.QFrame { %s };" % (theme["memos/style"])) self.setWindowIcon(PesterIcon(theme["memos/memoicon"])) - t = Template(theme["memos/label/text"]) if self.mainwindow.advanced and hasattr(self, 'modes'): self.channelLabel.setText(t.safe_substitute(channel=self.channel) + "(%s)" % (self.modes)) diff --git a/oyoyo/parse.py b/oyoyo/parse.py index edc3181..f9293b6 100644 --- a/oyoyo/parse.py +++ b/oyoyo/parse.py @@ -69,7 +69,7 @@ def parse_raw_irc_command(element): try: command = numeric_events[command] except KeyError: - logging.warn('unknown numeric event %s' % command) + logging.info('unknown numeric event %s' % command) command = command.lower() if args[0].startswith(':'): diff --git a/pesterchum.py b/pesterchum.py index 4f804e3..9098acf 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -1765,7 +1765,7 @@ class PesterWindow(MovingWindow): self.resize(*theme["main/size"]) self.setWindowIcon(PesterIcon(theme["main/icon"])) self.setWindowTitle(theme["main/windowtitle"]) - self.setStyleSheet("QFrame#main { %s }" % (theme["main/style"])) + self.setStyleSheet("QtWidgets.QFrame#main { %s }" % (theme["main/style"])) self.backgroundImage = QtGui.QPixmap(theme["main/background-image"]) self.backgroundMask = self.backgroundImage.mask() self.setMask(self.backgroundMask) diff --git a/themes/steamchum/abouticon.png b/themes/steamchum/abouticon.png index 0038489..a74cae6 100644 Binary files a/themes/steamchum/abouticon.png and b/themes/steamchum/abouticon.png differ diff --git a/themes/steamchum/acceptant.png b/themes/steamchum/acceptant.png index f5b11cd..d329179 100644 Binary files a/themes/steamchum/acceptant.png and b/themes/steamchum/acceptant.png differ diff --git a/themes/steamchum/admin.png b/themes/steamchum/admin.png index 59bb560..218f900 100644 Binary files a/themes/steamchum/admin.png and b/themes/steamchum/admin.png differ diff --git a/themes/steamchum/amazed.png b/themes/steamchum/amazed.png index d55f827..269b484 100644 Binary files a/themes/steamchum/amazed.png and b/themes/steamchum/amazed.png differ diff --git a/themes/steamchum/bemused.png b/themes/steamchum/bemused.png index 536564e..53cf408 100644 Binary files a/themes/steamchum/bemused.png and b/themes/steamchum/bemused.png differ diff --git a/themes/steamchum/blocked.png b/themes/steamchum/blocked.png index f78c444..d5c1067 100644 Binary files a/themes/steamchum/blocked.png and b/themes/steamchum/blocked.png differ diff --git a/themes/steamchum/chumbg.PNG b/themes/steamchum/chumbg.PNG index 22d2051..b8e6e0c 100755 Binary files a/themes/steamchum/chumbg.PNG and b/themes/steamchum/chumbg.PNG differ diff --git a/themes/steamchum/chummy.png b/themes/steamchum/chummy.png index 85303b8..b78fea8 100644 Binary files a/themes/steamchum/chummy.png and b/themes/steamchum/chummy.png differ diff --git a/themes/steamchum/detestful.png b/themes/steamchum/detestful.png index 25e4307..4a789d5 100644 Binary files a/themes/steamchum/detestful.png and b/themes/steamchum/detestful.png differ diff --git a/themes/steamchum/devious.png b/themes/steamchum/devious.png index b1d0ead..3a83f9a 100644 Binary files a/themes/steamchum/devious.png and b/themes/steamchum/devious.png differ diff --git a/themes/steamchum/discontent.png b/themes/steamchum/discontent.png index be65118..25dbe1c 100644 Binary files a/themes/steamchum/discontent.png and b/themes/steamchum/discontent.png differ diff --git a/themes/steamchum/distraught.png b/themes/steamchum/distraught.png index 4bc5a45..998bc0b 100644 Binary files a/themes/steamchum/distraught.png and b/themes/steamchum/distraught.png differ diff --git a/themes/steamchum/downarrow.png b/themes/steamchum/downarrow.png index 0efc82f..3bd527f 100644 Binary files a/themes/steamchum/downarrow.png and b/themes/steamchum/downarrow.png differ diff --git a/themes/steamchum/ecstatic.png b/themes/steamchum/ecstatic.png index 9f27c7a..a90b18d 100644 Binary files a/themes/steamchum/ecstatic.png and b/themes/steamchum/ecstatic.png differ diff --git a/themes/steamchum/estatic.png b/themes/steamchum/estatic.png index b0c63c6..945b752 100644 Binary files a/themes/steamchum/estatic.png and b/themes/steamchum/estatic.png differ diff --git a/themes/steamchum/founder.png b/themes/steamchum/founder.png index ba988b6..df10ca3 100644 Binary files a/themes/steamchum/founder.png and b/themes/steamchum/founder.png differ diff --git a/themes/steamchum/h.png b/themes/steamchum/h.png index ee996ff..db1c26b 100644 Binary files a/themes/steamchum/h.png and b/themes/steamchum/h.png differ diff --git a/themes/steamchum/halfop.png b/themes/steamchum/halfop.png index fc5fb24..5b1c3a8 100644 Binary files a/themes/steamchum/halfop.png and b/themes/steamchum/halfop.png differ diff --git a/themes/steamchum/handle.png b/themes/steamchum/handle.png index 865a6df..9788f0c 100644 Binary files a/themes/steamchum/handle.png and b/themes/steamchum/handle.png differ diff --git a/themes/steamchum/insolent.png b/themes/steamchum/insolent.png index 963634f..8f7812d 100644 Binary files a/themes/steamchum/insolent.png and b/themes/steamchum/insolent.png differ diff --git a/themes/steamchum/leftarrow.png b/themes/steamchum/leftarrow.png index 3140476..a31a4f1 100644 Binary files a/themes/steamchum/leftarrow.png and b/themes/steamchum/leftarrow.png differ diff --git a/themes/steamchum/m.png b/themes/steamchum/m.png index 5c4fec3..aa9dff8 100644 Binary files a/themes/steamchum/m.png and b/themes/steamchum/m.png differ diff --git a/themes/steamchum/manipulative.png b/themes/steamchum/manipulative.png index 9a8834f..9bc2384 100644 Binary files a/themes/steamchum/manipulative.png and b/themes/steamchum/manipulative.png differ diff --git a/themes/steamchum/mirthful.png b/themes/steamchum/mirthful.png index e208ad8..6323c54 100644 Binary files a/themes/steamchum/mirthful.png and b/themes/steamchum/mirthful.png differ diff --git a/themes/steamchum/mystified.png b/themes/steamchum/mystified.png index 98e2dff..b04c6d4 100644 Binary files a/themes/steamchum/mystified.png and b/themes/steamchum/mystified.png differ diff --git a/themes/steamchum/offline.png b/themes/steamchum/offline.png index ae360af..4125a9c 100644 Binary files a/themes/steamchum/offline.png and b/themes/steamchum/offline.png differ diff --git a/themes/steamchum/op.png b/themes/steamchum/op.png index ac5e0c9..38e75ee 100644 Binary files a/themes/steamchum/op.png and b/themes/steamchum/op.png differ diff --git a/themes/steamchum/othertabbg.PNG b/themes/steamchum/othertabbg.PNG index bccba6d..f0e580a 100755 Binary files a/themes/steamchum/othertabbg.PNG and b/themes/steamchum/othertabbg.PNG differ diff --git a/themes/steamchum/pccool.png b/themes/steamchum/pccool.png index a488522..314552a 100644 Binary files a/themes/steamchum/pccool.png and b/themes/steamchum/pccool.png differ diff --git a/themes/steamchum/perky.png b/themes/steamchum/perky.png index f69a0f7..0c42f6d 100644 Binary files a/themes/steamchum/perky.png and b/themes/steamchum/perky.png differ diff --git a/themes/steamchum/pleasant.png b/themes/steamchum/pleasant.png index 43025b9..1662636 100644 Binary files a/themes/steamchum/pleasant.png and b/themes/steamchum/pleasant.png differ diff --git a/themes/steamchum/pranky.png b/themes/steamchum/pranky.png index 1201bbc..3ab5094 100644 Binary files a/themes/steamchum/pranky.png and b/themes/steamchum/pranky.png differ diff --git a/themes/steamchum/protective.png b/themes/steamchum/protective.png index 259f950..f0fac94 100644 Binary files a/themes/steamchum/protective.png and b/themes/steamchum/protective.png differ diff --git a/themes/steamchum/rancorous.png b/themes/steamchum/rancorous.png index 9c024a5..c63324e 100644 Binary files a/themes/steamchum/rancorous.png and b/themes/steamchum/rancorous.png differ diff --git a/themes/steamchum/relaxed.png b/themes/steamchum/relaxed.png index 4059b65..5b01950 100644 Binary files a/themes/steamchum/relaxed.png and b/themes/steamchum/relaxed.png differ diff --git a/themes/steamchum/rightarrow.png b/themes/steamchum/rightarrow.png index 31c775f..866e2ff 100644 Binary files a/themes/steamchum/rightarrow.png and b/themes/steamchum/rightarrow.png differ diff --git a/themes/steamchum/scrollhandle.PNG b/themes/steamchum/scrollhandle.PNG index f00526e..476aeb9 100755 Binary files a/themes/steamchum/scrollhandle.PNG and b/themes/steamchum/scrollhandle.PNG differ diff --git a/themes/steamchum/selectedbg.PNG b/themes/steamchum/selectedbg.PNG index 87eb449..b15347d 100755 Binary files a/themes/steamchum/selectedbg.PNG and b/themes/steamchum/selectedbg.PNG differ diff --git a/themes/steamchum/sleek.png b/themes/steamchum/sleek.png index dd46f19..0776ecd 100644 Binary files a/themes/steamchum/sleek.png and b/themes/steamchum/sleek.png differ diff --git a/themes/steamchum/smooth.png b/themes/steamchum/smooth.png index 8b56454..3b8e085 100644 Binary files a/themes/steamchum/smooth.png and b/themes/steamchum/smooth.png differ diff --git a/themes/steamchum/steambg copy.png b/themes/steamchum/steambg copy.png index 22ac0bd..28b5852 100644 Binary files a/themes/steamchum/steambg copy.png and b/themes/steamchum/steambg copy.png differ diff --git a/themes/steamchum/steambg.png b/themes/steamchum/steambg.png index 22954ba..4bbf869 100644 Binary files a/themes/steamchum/steambg.png and b/themes/steamchum/steambg.png differ diff --git a/themes/steamchum/tabbg.PNG b/themes/steamchum/tabbg.PNG index d4bc604..ac073a4 100755 Binary files a/themes/steamchum/tabbg.PNG and b/themes/steamchum/tabbg.PNG differ diff --git a/themes/steamchum/textbg.png b/themes/steamchum/textbg.png index c3063db..7ae0455 100644 Binary files a/themes/steamchum/textbg.png and b/themes/steamchum/textbg.png differ diff --git a/themes/steamchum/timeslider.PNG b/themes/steamchum/timeslider.PNG index b5687c0..7231f31 100755 Binary files a/themes/steamchum/timeslider.PNG and b/themes/steamchum/timeslider.PNG differ diff --git a/themes/steamchum/trayicon.png b/themes/steamchum/trayicon.png index 1ef2b0c..b0aafb0 100644 Binary files a/themes/steamchum/trayicon.png and b/themes/steamchum/trayicon.png differ diff --git a/themes/steamchum/trayicon2.png b/themes/steamchum/trayicon2.png index 20bd2c2..88883fb 100644 Binary files a/themes/steamchum/trayicon2.png and b/themes/steamchum/trayicon2.png differ diff --git a/themes/steamchum/uparrow.png b/themes/steamchum/uparrow.png index afd77bc..5776582 100644 Binary files a/themes/steamchum/uparrow.png and b/themes/steamchum/uparrow.png differ diff --git a/themes/steamchum/vigorous.png b/themes/steamchum/vigorous.png index 4498cd0..43194ce 100644 Binary files a/themes/steamchum/vigorous.png and b/themes/steamchum/vigorous.png differ diff --git a/themes/steamchum/voice.png b/themes/steamchum/voice.png index 326d556..4c7f02a 100644 Binary files a/themes/steamchum/voice.png and b/themes/steamchum/voice.png differ diff --git a/themes/steamchum/x.png b/themes/steamchum/x.png index 5167fb9..7c6255e 100644 Binary files a/themes/steamchum/x.png and b/themes/steamchum/x.png differ diff --git a/themes/trollian2.5/style.js b/themes/trollian2.5/style.js index 3e8a413..747956d 100755 --- a/themes/trollian2.5/style.js +++ b/themes/trollian2.5/style.js @@ -158,7 +158,7 @@ }, "input": { "style": "background: white; border:2px solid #ffa4a4;margin-top:5px; margin-right:10px; margin-left:10px; font-size: 12px;" }, "tabwindow" : { - "style": "" + "style": "background-color: #e5000f;border:2px solid #780000;" }, "text": { "beganpester": "began trolling", diff --git a/version.py b/version.py index 3bd20d0..aad003f 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -_pcVersion = "Alt. v2.1.0" -buildVersion = "v2.1.0" +_pcVersion = "Alt. v2.1.1" +buildVersion = "v2.1.1"