mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Version 1.0rc10, py3.10 min
This commit is contained in:
parent
18f04ef97b
commit
07935f68a3
10 changed files with 43 additions and 45 deletions
|
|
@ -5,7 +5,7 @@
|
|||
> Not released yet
|
||||
> 2019-2022 develop branch (WIP)
|
||||
|
||||
Increase requirements: Django 4.1+, Twisted 22.10+ Python 3.9, 3.10, 3.11. PostgreSQL 11+.
|
||||
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
|
||||
defaults to True for backwards-compatibility in 0.9, will be False in 1.0
|
||||
|
|
@ -222,6 +222,7 @@ Increase requirements: Django 4.1+, Twisted 22.10+ Python 3.9, 3.10, 3.11. Post
|
|||
- Add `AT_EXIT_TRAVERSE` signal, firing when an exit is traversed.
|
||||
- Add integration between Evennia and Discord channels (PR by Inspector Cararacal)
|
||||
- Support for using a Godot-powered client with Evennia (PR by ChrisLR)
|
||||
- Added German translation (patch by Zhuraj)
|
||||
|
||||
## Evennia 0.9.5
|
||||
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ caller.msg(coordinates=(9, 2))
|
|||
```
|
||||
|
||||
Godot
|
||||
```
|
||||
```gdscript
|
||||
func _on_data():
|
||||
...
|
||||
if json_data[0] == 'text':
|
||||
|
|
@ -130,7 +130,7 @@ you receive, so you can manage the code better.
|
|||
This is an example of a Script to use in Godot 3.
|
||||
The script can be attached to the root UI node.
|
||||
|
||||
```
|
||||
```gdscript
|
||||
extends Node
|
||||
|
||||
# The URL to connect to, should be your mud.
|
||||
|
|
@ -221,7 +221,7 @@ Note that the version is not final so the code may break.
|
|||
It requires a WebSocketClientNode as a child of the root node.
|
||||
The script can be attached to the root UI node.
|
||||
|
||||
```
|
||||
```gdscript
|
||||
extends Control
|
||||
|
||||
# The URL to connect to, should be your mud.
|
||||
|
|
|
|||
|
|
@ -7,12 +7,12 @@ you can run `evennia -l`, or start/reload the server with `evennia start -l` or
|
|||
|
||||
## Check your Requirements
|
||||
|
||||
Any system that supports Python3.9+ should work.
|
||||
Any system that supports Python3.10+ should work.
|
||||
- Linux/Unix
|
||||
- Windows (Win7, Win8, Win10, Win11)
|
||||
- Mac OSX (>10.5 recommended)
|
||||
|
||||
- [Python](https://www.python.org) (v3.9, 3.10 and 3.11 are tested. 3.11 is recommended)
|
||||
- [Python](https://www.python.org) (3.10 and 3.11 are tested. 3.11 is recommended)
|
||||
- [Twisted](https://twistedmatrix.com) (v22.3+)
|
||||
- [ZopeInterface](https://www.zope.org/Products/ZopeInterface) (v3.0+) - usually included in Twisted packages
|
||||
- Linux/Mac users may need the `gcc` and `python-dev` packages or equivalent.
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ You can also [clone Evennia from github](./Installation-Git.md) or use [docker
|
|||
```{sidebar} Develop in isolation
|
||||
Installing Evennia doesn't make anything visible online. Apart from installation and updating, you can develop your game without any internet connection if you want to.
|
||||
```
|
||||
- Evennia requires [Python](https://www.python.org/downloads/) 3.9, 3.10 or 3.11 (recommended). Any OS that supports Python should work.
|
||||
- Evennia requires [Python](https://www.python.org/downloads/) 3.10 or 3.11 (recommended). Any OS that supports Python should work.
|
||||
- _Windows_: In the installer, make sure you select `add python to path`. If you have multiple versions of Python installed, use `py` command instead of `python` to have Windows automatically use the latest.
|
||||
- _Windows:_ If you want to use Python 3.11, you must also install the [Windows SDK](https://aka.ms/vs/16/release/vs_buildtools.exe). Run the linked installer. Click the `Individual Components` tab at the top, then search and checkbox the latest `Windows 10 SDK` (also for older/newer Windows versions). Then click `Install`. If you have trouble, use Python 3.10 for now (2022).
|
||||
- Don't install Evennia as administrator or superuser.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue