From a2b103a809633bc55b48df02608e7e19184e29e7 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sun, 11 Apr 2021 14:57:02 +0200 Subject: [PATCH] TODO & CHANGELOG --- CHANGELOG.md | 12 +++++++----- TODO.md | 1 - pesterchum.py | 2 +- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd0e33e..bc5ed2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,15 @@ # Changelog (This document uses YYYY-MM-DD as per ISO 8601) -## [v2.1.0] - 2021-4-4 +## [v2.1.0] - 2021-4-11 ### Added - Server prompt + interface for adding & removing servers. -- Custom text for numerous themes. (Mostly just made things consistent, for example, "REPORT BUG" to "Report Bug" for Trollian.) +- Consistently capitalized text for all themes, for example, "REPORT BUG" to "Report Bug" for Trollian. - Added theme support for "Beep on Message", "Flash on Message", "Mute Notifications". - "Usage:" for pesterchum.py when running from the command line. - Made logging level configurable via command line arguments. +- Added -h/--help. ### Fixed - Fixed current mood icon not showing up. @@ -16,13 +17,14 @@ - Fixed "CONSOLE" & "REPORT BUG" menu options not being updated on theme change. - Incorrect hex for color in MSChum theme. - Fixed \_datadir not being used for certain json files. -- Fixed "Specified color without alpha value but alpha given: 'rgb 0,0,0,0'" in johntierchum -- Fixed "RGB parameters out of range" in MSChum +- Fixed "Specified color without alpha value but alpha given: 'rgb 0,0,0,0'" in johntierchum. +- Fixed "RGB parameters out of range" in MSChum. - Fixed nothing.png not being present in battlefield theme. - Fixed "Report" string not being updated in convo window when changing theme. - Fixed pesterChumAction's text not being updated in memo windows when changing theme. - Fixed incorrect sRGB profile in paperchum. -- Fixed Sound slider in settings not working with pygame. +- Fixed sound slider in settings not working with pygame. +- Fixed MOOD & CHUMHANDLE adjusting to style-sheet. ### Changed - Made it so handle and ident are passed to ``_max_msg_len``, so, hopefully the text cutoff will be *slightly* less restrictive. diff --git a/TODO.md b/TODO.md index 1c78aa6..7f213a7 100644 --- a/TODO.md +++ b/TODO.md @@ -4,7 +4,6 @@ - Memoserv support. ## FIX - - Audio mixer slider in options doesn't always work. - Any remaining unicode-related crashes. - Exclude unnecessary imports for builds. - Mask & target not being passed to ``_max_msg_len``. diff --git a/pesterchum.py b/pesterchum.py index 610abd0..4f804e3 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -3277,7 +3277,7 @@ class PesterWindow(MovingWindow): self.chooseRemoveServerWidged.show() self.chooseRemoveServerWidged.setFocus() else: - logging.info(self.serverBox.currentText() + " chosen") + logging.info(self.serverBox.currentText() + " chosen.") with open(_datadir + "serverlist.json", "r") as server_file: read_file = server_file.read()