From 703dc9da911983b76f0a17af17b8573f03d0c261 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 20 Sep 2017 21:51:43 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 5 +++++ bin/project_rename.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab9b5ae728..921cdf4dd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Evennia Changelog + +# Sept 2017: +Release of Evennia 0.7; upgrade to Django 1.11, change 'Player' to +'Account', rework the website template and a slew of other updates. + ## Feb 2017: New devel branch created, to lead up to Evennia 0.7. diff --git a/bin/project_rename.py b/bin/project_rename.py index 41634200c3..75417d15b1 100644 --- a/bin/project_rename.py +++ b/bin/project_rename.py @@ -305,7 +305,7 @@ if __name__ == "__main__": parser.add_argument('-r', '--recursive', action='store_true', help="Recurse subdirs") parser.add_argument('-f', '--fileending', action='append', - help="Change which file endings to allow (default .py)") + help="Change which file endings to allow (default .py and .html)") parser.add_argument('--nocolor', action='store_true', help="Turn off in-program color") parser.add_argument('--fake', action='store_true', @@ -325,7 +325,7 @@ if __name__ == "__main__": sys.exit() exc_list = exc_list or [] - fileend_list = fileend_list or [".py"] + fileend_list = fileend_list or [".py", ".html"] is_interactive = not args.auto is_recursive = args.recursive