mirror of
https://github.com/evennia/evennia.git
synced 2026-04-05 23:47:16 +02:00
Update version string to 0.7, cleanup about cmd
This commit is contained in:
parent
44f01c48da
commit
cfa484565c
2 changed files with 13 additions and 13 deletions
|
|
@ -1 +1 @@
|
|||
0.6.0
|
||||
0.7.0
|
||||
|
|
|
|||
|
|
@ -610,25 +610,25 @@ class CmdAbout(COMMAND_DEFAULT_CLASS):
|
|||
"""Display information about server or target"""
|
||||
|
||||
string = """
|
||||
|cEvennia|n %s|n
|
||||
MUD/MUX/MU* development system
|
||||
|cEvennia|n {version}|n
|
||||
MU* development system
|
||||
|
||||
|wLicence|n https://opensource.org/licenses/BSD-3-Clause
|
||||
|wWeb|n http://www.evennia.com
|
||||
|wIrc|n #evennia on FreeNode
|
||||
|wIrc|n #evennia on irc.freenode.net:6667
|
||||
|wForum|n http://www.evennia.com/discussions
|
||||
|wMaintainer|n (2010-) Griatch (griatch AT gmail DOT com)
|
||||
|wMaintainer|n (2006-10) Greg Taylor
|
||||
|
||||
|wOS|n %s
|
||||
|wPython|n %s
|
||||
|wTwisted|n %s
|
||||
|wDjango|n %s
|
||||
""" % (utils.get_evennia_version(),
|
||||
os.name,
|
||||
sys.version.split()[0],
|
||||
twisted.version.short(),
|
||||
django.get_version())
|
||||
|wOS|n {os}
|
||||
|wPython|n {python}
|
||||
|wTwisted|n {twisted}
|
||||
|wDjango|n {django}
|
||||
""".format(version=utils.get_evennia_version(),
|
||||
os=os.name,
|
||||
python=sys.version.split()[0],
|
||||
twisted=twisted.version.short(),
|
||||
django=django.get_version())
|
||||
self.caller.msg(string)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue