mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 21:17:17 +02:00
Evennia 5.0.0 major release
This commit is contained in:
parent
7aa3e996ed
commit
8cd49c9ac3
7 changed files with 14 additions and 9 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## Main branch
|
||||
|
||||
Updated dependencies: Django >5.1 (<5,2), Twisted >24 (<25).
|
||||
Updated dependencies: Django >5.2 (<5.3), Twisted >24 (<25).
|
||||
Python versions: 3.11, 3.12, 3.13.
|
||||
|
||||
This upgrade requires running `evennia migrate` on your existing database
|
||||
|
|
@ -18,6 +18,7 @@ This upgrade requires running `evennia migrate` on your existing database
|
|||
- [Feat][pull3757]: Add more i18n strings to `DefaultObject` for easier translation (JohnFi)
|
||||
- [Feat][pull3783]: Support users of `ruff` linter by adding compatible config in `pyproject.toml` (jaborsh)
|
||||
- [Feat][pull3777]: New contrib `debugpy` for debugging Evennia with in VSCode with `debugpy` adapter (electroglyph)
|
||||
- [Feat][pull3795]: Support evennia launcher for use with `uv` installation (TehomCD)
|
||||
- [Fix][pull3677]: Make sure that `DefaultAccount.create` normalizes to empty
|
||||
strings instead of `None` if no name is provided, also enforce string type (InspectorCaracal)
|
||||
- [Fix][pull3682]: Allow in-game help searching for commands natively starting
|
||||
|
|
@ -92,6 +93,7 @@ This upgrade requires running `evennia migrate` on your existing database
|
|||
[pull3783]: https://github.com/evennia/evennia/pull/3783
|
||||
[pull3777]: https://github.com/evennia/evennia/pull/3777
|
||||
[pull3794]: https://github.com/evennia/evennia/pull/3794
|
||||
[pull3795]: https://github.com/evennia/evennia/pull/3795
|
||||
[issue3688]: https://github.com/evennia/evennia/issues/3688
|
||||
[issue3687]: https://github.com/evennia/evennia/issues/3687
|
||||
[issue3788]: https://github.com/evennia/evennia/issues/3788
|
||||
|
|
|
|||
|
|
@ -62,8 +62,8 @@ smv_tag_whitelist = r"^$"
|
|||
# These are also read from the deploy.py script. These are also the names of
|
||||
# the folders built in the gh-pages evennia branch, under docs/.
|
||||
latest_version = "latest"
|
||||
legacy_versions = ["4.x", "3.x", "2.x", "1.x", "0.x"]
|
||||
legacy_branches = ["v4.0.0", "v3.0.0", "v2.0.0", "v1.0.0", "v0.9.5"]
|
||||
legacy_versions = ["5.x", "4.x", "3.x", "2.x", "1.x", "0.x"]
|
||||
legacy_branches = ["v5.0.0", "v4.0.0", "v3.0.0", "v2.0.0", "v1.0.0", "v0.9.5"]
|
||||
|
||||
|
||||
def add_legacy_versions_to_html_page_context(app, pagename, templatename, context, doctree):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue