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"""
|
"""Display information about server or target"""
|
||||||
|
|
||||||
string = """
|
string = """
|
||||||
|cEvennia|n %s|n
|
|cEvennia|n {version}|n
|
||||||
MUD/MUX/MU* development system
|
MU* development system
|
||||||
|
|
||||||
|wLicence|n https://opensource.org/licenses/BSD-3-Clause
|
|wLicence|n https://opensource.org/licenses/BSD-3-Clause
|
||||||
|wWeb|n http://www.evennia.com
|
|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
|
|wForum|n http://www.evennia.com/discussions
|
||||||
|wMaintainer|n (2010-) Griatch (griatch AT gmail DOT com)
|
|wMaintainer|n (2010-) Griatch (griatch AT gmail DOT com)
|
||||||
|wMaintainer|n (2006-10) Greg Taylor
|
|wMaintainer|n (2006-10) Greg Taylor
|
||||||
|
|
||||||
|wOS|n %s
|
|wOS|n {os}
|
||||||
|wPython|n %s
|
|wPython|n {python}
|
||||||
|wTwisted|n %s
|
|wTwisted|n {twisted}
|
||||||
|wDjango|n %s
|
|wDjango|n {django}
|
||||||
""" % (utils.get_evennia_version(),
|
""".format(version=utils.get_evennia_version(),
|
||||||
os.name,
|
os=os.name,
|
||||||
sys.version.split()[0],
|
python=sys.version.split()[0],
|
||||||
twisted.version.short(),
|
twisted=twisted.version.short(),
|
||||||
django.get_version())
|
django=django.get_version())
|
||||||
self.caller.msg(string)
|
self.caller.msg(string)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue