TODO & removed unrequired mode removal on welcome
This commit is contained in:
parent
e6d01200f8
commit
4ac5bd2e07
3 changed files with 15 additions and 3 deletions
|
@ -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.
|
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 [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)
|
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
|
[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/
|
[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
|
## INSTALATION
|
||||||
Download the appropriate release for your platform from [releases][releases], extract the zip file to any directory, and run the executable : )
|
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:`
|
* `:olliesouty:`
|
||||||
* `:billiards:`
|
* `:billiards:`
|
||||||
* `:billiardslarge:`
|
* `:billiardslarge:`
|
||||||
* `:whatdidyoudo:`
|
* `:whatdidyoudo:`
|
||||||
|
|
11
TODO.md
Normal file
11
TODO.md
Normal file
|
@ -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!!).
|
3
irc.py
3
irc.py
|
@ -419,8 +419,7 @@ class PesterHandler(DefaultCommandHandler):
|
||||||
if not self.mainwindow.config.lowBandwidth():
|
if not self.mainwindow.config.lowBandwidth():
|
||||||
helpers.join(self.client, "#pesterchum")
|
helpers.join(self.client, "#pesterchum")
|
||||||
helpers.msg(self.client, "#pesterchum", "MOOD >%d" % (mymood))
|
helpers.msg(self.client, "#pesterchum", "MOOD >%d" % (mymood))
|
||||||
# +T is not set by default anymore :)
|
|
||||||
|
|
||||||
def nicknameinuse(self, server, cmd, nick, msg):
|
def nicknameinuse(self, server, cmd, nick, msg):
|
||||||
newnick = "pesterClient%d" % (random.randint(100,999))
|
newnick = "pesterClient%d" % (random.randint(100,999))
|
||||||
helpers.nick(self.client, newnick)
|
helpers.nick(self.client, newnick)
|
||||||
|
|
Loading…
Reference in a new issue