From 4ac5bd2e0745fd5e5be582b9e4900685356d4962 Mon Sep 17 00:00:00 2001 From: Dpeta Date: Thu, 25 Mar 2021 19:53:25 +0100 Subject: [PATCH] TODO & removed unrequired mode removal on welcome --- README.md | 4 +++- TODO.md | 11 +++++++++++ irc.py | 3 +-- 3 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 TODO.md diff --git a/README.md b/README.md index 2caeebc..d9bfc30 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,13 @@ Maintained repository of ghostDunk's Pesterchum. Connects to irc.pesterchum.xyz This repository builds on (and was mirrored from!) from pesterchum-karxi + Hydrothermal's nickserv fix. Check out [CHANGELOG.md] file to see what's changed! +Check out [TODO.md] to see this repo's current goals >:3c For the old READMEs and guides, view the [docs] folder. (I removed Lexicality's macBuilds since it's no longer applicable) [CHANGELOG.md]: https://github.com/Dpeta/pesterchum-alt-servers/blob/py3_pyqt5/CHANGELOG.md [docs]: https://github.com/Dpeta/pesterchum-alt-servers/tree/py3_pyqt5/docs/ +[TODO.md]: https://github.com/Dpeta/pesterchum-alt-servers/blob/py3_pyqt5/TODO.md ## INSTALATION Download the appropriate release for your platform from [releases][releases], extract the zip file to any directory, and run the executable : ) @@ -104,4 +106,4 @@ Just for easy reference. :3 (Taken from docs/README-karxi.mkdn) * `:olliesouty:` * `:billiards:` * `:billiardslarge:` -* `:whatdidyoudo:` \ No newline at end of file +* `:whatdidyoudo:` diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..923c859 --- /dev/null +++ b/TODO.md @@ -0,0 +1,11 @@ +# TODO LIST : ) +## ADD + - A proper prompt for choosing a server. + +## FIX +- Pesterchum gets stuck on the system tray even after shutdown on windows. +- Audio mixer slider in options doesn't always work. (Not working on linux?) +- QUIT not send to server on shutdown. +- TLS randomly causing socket to break. +- Make setup.py work with 32-bit python. +- Make setup.py work with py2app (might not be required if pyinstaller works better!!). \ No newline at end of file diff --git a/irc.py b/irc.py index ec0eff3..fcddfdb 100644 --- a/irc.py +++ b/irc.py @@ -419,8 +419,7 @@ class PesterHandler(DefaultCommandHandler): if not self.mainwindow.config.lowBandwidth(): helpers.join(self.client, "#pesterchum") helpers.msg(self.client, "#pesterchum", "MOOD >%d" % (mymood)) - # +T is not set by default anymore :) - + def nicknameinuse(self, server, cmd, nick, msg): newnick = "pesterClient%d" % (random.randint(100,999)) helpers.nick(self.client, newnick)