TODO & CHANGELOG
This commit is contained in:
parent
044370be5f
commit
a2b103a809
3 changed files with 8 additions and 7 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,14 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
(This document uses YYYY-MM-DD as per ISO 8601)
|
(This document uses YYYY-MM-DD as per ISO 8601)
|
||||||
|
|
||||||
## [v2.1.0] - 2021-4-4
|
## [v2.1.0] - 2021-4-11
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Server prompt + interface for adding & removing servers.
|
- 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".
|
- Added theme support for "Beep on Message", "Flash on Message", "Mute Notifications".
|
||||||
- "Usage:" for pesterchum.py when running from the command line.
|
- "Usage:" for pesterchum.py when running from the command line.
|
||||||
- Made logging level configurable via command line arguments.
|
- Made logging level configurable via command line arguments.
|
||||||
|
- Added -h/--help.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed current mood icon not showing up.
|
- Fixed current mood icon not showing up.
|
||||||
|
@ -16,13 +17,14 @@
|
||||||
- Fixed "CONSOLE" & "REPORT BUG" menu options not being updated on theme change.
|
- Fixed "CONSOLE" & "REPORT BUG" menu options not being updated on theme change.
|
||||||
- Incorrect hex for color in MSChum theme.
|
- Incorrect hex for color in MSChum theme.
|
||||||
- Fixed \_datadir not being used for certain json files.
|
- 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 "Specified color without alpha value but alpha given: 'rgb 0,0,0,0'" in johntierchum.
|
||||||
- Fixed "RGB parameters out of range" in MSChum
|
- Fixed "RGB parameters out of range" in MSChum.
|
||||||
- Fixed nothing.png not being present in battlefield theme.
|
- Fixed nothing.png not being present in battlefield theme.
|
||||||
- Fixed "Report" string not being updated in convo window when changing 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 pesterChumAction's text not being updated in memo windows when changing theme.
|
||||||
- Fixed incorrect sRGB profile in paperchum.
|
- 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
|
### Changed
|
||||||
- Made it so handle and ident are passed to ``_max_msg_len``, so, hopefully the text cutoff will be *slightly* less restrictive.
|
- Made it so handle and ident are passed to ``_max_msg_len``, so, hopefully the text cutoff will be *slightly* less restrictive.
|
||||||
|
|
1
TODO.md
1
TODO.md
|
@ -4,7 +4,6 @@
|
||||||
- Memoserv support.
|
- Memoserv support.
|
||||||
|
|
||||||
## FIX
|
## FIX
|
||||||
- Audio mixer slider in options doesn't always work.
|
|
||||||
- Any remaining unicode-related crashes.
|
- Any remaining unicode-related crashes.
|
||||||
- Exclude unnecessary imports for builds.
|
- Exclude unnecessary imports for builds.
|
||||||
- Mask & target not being passed to ``_max_msg_len``.
|
- Mask & target not being passed to ``_max_msg_len``.
|
||||||
|
|
|
@ -3277,7 +3277,7 @@ class PesterWindow(MovingWindow):
|
||||||
self.chooseRemoveServerWidged.show()
|
self.chooseRemoveServerWidged.show()
|
||||||
self.chooseRemoveServerWidged.setFocus()
|
self.chooseRemoveServerWidged.setFocus()
|
||||||
else:
|
else:
|
||||||
logging.info(self.serverBox.currentText() + " chosen")
|
logging.info(self.serverBox.currentText() + " chosen.")
|
||||||
|
|
||||||
with open(_datadir + "serverlist.json", "r") as server_file:
|
with open(_datadir + "serverlist.json", "r") as server_file:
|
||||||
read_file = server_file.read()
|
read_file = server_file.read()
|
||||||
|
|
Loading…
Reference in a new issue