Skip to content
This repository was archived by the owner on Aug 20, 2021. It is now read-only.

Commit

Permalink
fix "irc" module and dependencies for "irc" module
Browse files Browse the repository at this point in the history
  • Loading branch information
jquast authored Jun 17, 2020
1 parent da5d7cf commit a760b4d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 29 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


setup(name='x84',
version='2.0.16',
version='2.0.17',
description=("Framework for Telnet and SSH BBS or MUD server "
"development with example default bbs board"),
long_description=open(os.path.join(HERE, README)).read(),
Expand All @@ -43,7 +43,10 @@
'blessed>=1.17.8,<2',
'feedparser>=5.2.1,<6',
'html2text==2019.8.11',
'irc>=16.4,<17',
'irc>=11.0.1,<12',
'hgtools==8.1.1',
'more-itertools>=5,<6',
'jaraco.functools==1.20',
'requests>=2.23.0,<3',
'sauce>=1.2,<2',
'six>=1.15.0,<2',
Expand Down
31 changes: 4 additions & 27 deletions x84/default/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ def get_menu_items(session):
""" Returns list of MenuItem entries. """
#: A declaration of menu items and their acting gosub script
menu_items = [
# most 'expressive' scripts,
# hi :-)
#
# put your own fun scripts here
#
MenuItem(inp_key=u'irc',
text=u'irc chat',
script='ircchat',
Expand All @@ -111,10 +114,6 @@ def get_menu_items(session):
text=u"who's online",
script='online',
args=(), kwargs={}),
# MenuItem(inp_key=u'fb',
# text=u'file browser',
# script='fbrowse',
# args=(), kwargs={}),
MenuItem(inp_key=u'pe',
text=u'profile editor',
script='profile',
Expand All @@ -136,18 +135,10 @@ def get_menu_items(session):
text=u'one-liners',
script='ol',
args=(), kwargs={}),
MenuItem(inp_key=u'tetris',
text=u'tetris game',
script='tetris',
args=(), kwargs={}),
MenuItem(inp_key=u'vote',
text=u'voting booth',
script='vote',
args=(), kwargs={}),
MenuItem(inp_key=u'lc',
text=u'last callers',
script='lc',
args=(), kwargs={}),
MenuItem(inp_key=u'user',
text=u'user list',
script='userlist',
Expand All @@ -160,20 +151,6 @@ def get_menu_items(session):
text=u'system info',
script='si',
args=(), kwargs={}),
MenuItem(inp_key=u'key',
text=u'keyboard test',
script='test_keyboard_keys',
args=(), kwargs={}),
MenuItem(inp_key=u'ac',
text=u'adjust charset',
script='charset',
args=(), kwargs={}),

MenuItem(inp_key=u'msg',
text=u'message area',
script='msgarea',
args=(), kwargs={}),

MenuItem(inp_key=u'g',
text=u'logoff system',
script='logoff',
Expand Down

0 comments on commit a760b4d

Please sign in to comment.