Evennia 4.2.0 minor release

This commit is contained in:
Griatch 2024-06-27 22:37:43 +02:00
parent 609b646e45
commit 2a229b8b8e
6 changed files with 16 additions and 6 deletions

View file

@ -1,6 +1,8 @@
# Changelog
## Main branch
## Evennia 4.2.0
June 27, 2024
- [Feature][pull3470]: New `exit_order` kwarg to
`DefaultObject.get_display_exits` to easier customize the order in which

View file

@ -1,6 +1,8 @@
# Changelog
## Main branch
## Evennia 4.2.0
June 27, 2024
- [Feature][pull3470]: New `exit_order` kwarg to
`DefaultObject.get_display_exits` to easier customize the order in which

View file

@ -73,8 +73,14 @@ class Room(ContribRPRoom):
# ...
```
You need to set up Evennia to use the RPsystem's form to separate
between sdescs (`3-tall`) to make it compatible with how the rest of Evennia
separates between other multi-matches of searches/commands:
You will then need to reload the server and potentially force-reload
SEARCH_MULTIMATCH_REGEX = r"(?P<number>[0-9]+)-(?P<name>[^-]*)(?P<args>.*)"
SEARCH_MULTIMATCH_TEMPLATE = " {number}-{name}{aliases}{info}\n"
Finally, you will then need to reload the server and potentially force-reload
your objects, if you originally created them without this.
Example for your character:

View file

@ -1,6 +1,6 @@
# Evennia Documentation
This is the manual of [Evennia](https://www.evennia.com), the open source Python `MU*` creation system. Use the Search bar on the left to find or discover interesting articles. This manual was last updated June 27, 2024, see the [Evennia Changelog](Coding/Changelog.md). Latest released Evennia version is 4.1.1.
This is the manual of [Evennia](https://www.evennia.com), the open source Python `MU*` creation system. Use the Search bar on the left to find or discover interesting articles. This manual was last updated June 27, 2024, see the [Evennia Changelog](Coding/Changelog.md). Latest released Evennia version is 4.2.0.
- [Introduction](./Evennia-Introduction.md) - what is this Evennia thing?
- [Evennia in Pictures](./Evennia-In-Pictures.md) - a visual overview of Evennia

View file

@ -1 +1 @@
4.1.1
4.2.0

View file

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "evennia"
version = "4.1.1"
version = "4.2.0"
maintainers = [{ name = "Griatch", email = "griatch@gmail.com" }]
description = "A full-featured toolkit and server for text-based multiplayer games (MUDs, MU*, etc)."
requires-python = ">=3.10"