Evennia 1.1.0 minor release

This commit is contained in:
Griatch 2023-01-07 22:26:16 +01:00
parent b8012b7e92
commit 3d05932156
6 changed files with 32 additions and 11 deletions

View file

@ -1,23 +1,32 @@
# Changelog
### Evennia 1.0.2
## Evennia 1.1.0
Jan 7, 2023
- Stop new registrations with `settings.NEW_ACCOUNT_REGISTRATION_ENABLED`
(inspectorcaracal)
- Bug fixes.
## Evennia 1.0.2
Dec 21, 2022
Bug fix release. Fix more issues with discord bot reconnecting. Some doc
- Bug fix release. Fix more issues with discord bot reconnecting. Some doc
updates.
### Evennia 1.0.1
## Evennia 1.0.1
Dec 7, 2022
Bug fix release. Main issue was reconnect bug for discord bot.
- Bug fix release. Main issue was reconnect bug for discord bot.
## Evennia 1.0
## Evennia 1.0.0
2019-2022
_Changed to using `main` branch to follow github standard. Old `master` branch remains
for now but will not be used anymore, so as to not break installs during transition._
Also changing to using semantic versioning with this version.
Increase requirements: Django 4.1+, Twisted 22.10+ Python 3.10, 3.11. PostgreSQL 11+.
- New `drop:holds()` lock default to limit dropping nonsensical things. Access check

View file

@ -1,23 +1,32 @@
# Changelog
### Evennia 1.0.2
## Evennia 1.1.0
Jan 7, 2023
- Stop new registrations with `settings.NEW_ACCOUNT_REGISTRATION_ENABLED`
(inspectorcaracal)
- Bug fixes
## Evennia 1.0.2
Dec 21, 2022
Bug fix release. Fix more issues with discord bot reconnecting. Some doc
updates.
### Evennia 1.0.1
## Evennia 1.0.1
Dec 7, 2022
Bug fix release. Main issue was reconnect bug for discord bot.
## Evennia 1.0
## Evennia 1.0.0
2019-2022
_Changed to using `main` branch to follow github standard. Old `master` branch remains
for now but will not be used anymore, so as to not break installs during transition._
Also changing to using semantic versioning with this version.
Increase requirements: Django 4.1+, Twisted 22.10+ Python 3.10, 3.11. PostgreSQL 11+.
- New `drop:holds()` lock default to limit dropping nonsensical things. Access check

View file

@ -60,7 +60,7 @@ The default hierarchy is
- `Admin` - can kick and ban accounts
- `Developer` - full access, usually also trusted with server access
There is also the _superuser_, the "owner" of the game you create when you first set up your database. This user goes outside the regular hierarchy and while powerful it's not so suitable for testing since it bypasses all [locks](Locks) (using `quell` or a separate `Developer`-level account is recommended).
There is also the _superuser_, the "owner" of the game you create when you first set up your database. This user goes outside the regular hierarchy and while powerful it's not so suitable for testing since it bypasses all [locks](../../../Components/Locks.md) (using `quell` or a separate `Developer`-level account is recommended).
**EvAdventure Answer**

View file

@ -53,6 +53,9 @@ SERVER_HOSTNAME = "localhost"
# Lockdown mode will cut off the game from any external connections
# and only allow connections from localhost. Requires a cold reboot.
LOCKDOWN_MODE = False
# Controls whether new account registration is available.
# Set to False to lock down the registration page and the create account command.
NEW_ACCOUNT_REGISTRATION_ENABLED = True
# Activate telnet service
TELNET_ENABLED = True
# A list of ports the Evennia telnet server listens on Can be one or many.

View file

@ -1 +1 @@
1.0.2
1.1.0

View file

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "evennia"
version = "1.0.2"
version = "1.1.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"