mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 12:56:30 +01:00
Update Changelog. Outline which doc files are auto-generated
This commit is contained in:
parent
febe9e9826
commit
7cce317da0
3 changed files with 36 additions and 1 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -7,6 +7,8 @@
|
|||
adding line breaks in hook returns. (InspectorCaracal)
|
||||
- [Feature][pull3458]: New `sethelp/category` switch to change a help topic's
|
||||
category after it was created (chiizujin)
|
||||
- [Feature][pull3467]: Add `alias/delete` switch for removing object aliases
|
||||
from in-game with default command (chiizujin)
|
||||
- [Fix][pull3446]: Use plural ('no apples') instead of singular ('no apple') in
|
||||
`get_numbered_name` for better grammatical form (InspectorCaracal)
|
||||
- [Fix][pull3453]: Object aliases not showing in search multi-match
|
||||
|
|
@ -19,6 +21,11 @@
|
|||
duplicates (chiizujin)
|
||||
- [Fix][pull3454]: Traceback in crafting contrib's `recipe.msg`
|
||||
(InspectorCaracal)
|
||||
- [Fix][pull3459]: EvEditor line-echo compacted whitespace erroneously (chiizujin)
|
||||
- [Fix][pull3463]: EvEditor :help described the :paste operation in the wrong
|
||||
way (chiizujin)
|
||||
- [Fix][pull3464]: EvEditor range:range specification didn't return correct
|
||||
range (chiizujin)
|
||||
- Doc: Added Beginner Tutorial lessons for AI, Quests and Procedural dungeon (Griatch)
|
||||
- Doc fixes (Griatch, InspectorCaracal)
|
||||
|
||||
|
|
@ -30,6 +37,10 @@
|
|||
[pull3457]: https://github.com/evennia/evennia/pull/3457
|
||||
[pull3458]: https://github.com/evennia/evennia/pull/3458
|
||||
[pull3454]: https://github.com/evennia/evennia/pull/3454
|
||||
[pull3459]: https://github.com/evennia/evennia/pull/3459
|
||||
[pull3463]: https://github.com/evennia/evennia/pull/3463
|
||||
[pull3464]: https://github.com/evennia/evennia/pull/3464
|
||||
[pull3467]: https://github.com/evennia/evennia/pull/3467
|
||||
|
||||
## Evennia 4.0.0
|
||||
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
adding line breaks in hook returns. (InspectorCaracal)
|
||||
- [Feature][pull3458]: New `sethelp/category` switch to change a help topic's
|
||||
category after it was created (chiizujin)
|
||||
- [Feature][pull3467]: Add `alias/delete` switch for removing object aliases
|
||||
from in-game with default command (chiizujin)
|
||||
- [Fix][pull3446]: Use plural ('no apples') instead of singular ('no apple') in
|
||||
`get_numbered_name` for better grammatical form (InspectorCaracal)
|
||||
- [Fix][pull3453]: Object aliases not showing in search multi-match
|
||||
|
|
@ -19,6 +21,11 @@
|
|||
duplicates (chiizujin)
|
||||
- [Fix][pull3454]: Traceback in crafting contrib's `recipe.msg`
|
||||
(InspectorCaracal)
|
||||
- [Fix][pull3459]: EvEditor line-echo compacted whitespace erroneously (chiizujin)
|
||||
- [Fix][pull3463]: EvEditor :help described the :paste operation in the wrong
|
||||
way (chiizujin)
|
||||
- [Fix][pull3464]: EvEditor range:range specification didn't return correct
|
||||
range (chiizujin)
|
||||
- Doc: Added Beginner Tutorial lessons for AI, Quests and Procedural dungeon (Griatch)
|
||||
- Doc fixes (Griatch, InspectorCaracal)
|
||||
|
||||
|
|
@ -30,6 +37,10 @@
|
|||
[pull3457]: https://github.com/evennia/evennia/pull/3457
|
||||
[pull3458]: https://github.com/evennia/evennia/pull/3458
|
||||
[pull3454]: https://github.com/evennia/evennia/pull/3454
|
||||
[pull3459]: https://github.com/evennia/evennia/pull/3459
|
||||
[pull3463]: https://github.com/evennia/evennia/pull/3463
|
||||
[pull3464]: https://github.com/evennia/evennia/pull/3464
|
||||
[pull3467]: https://github.com/evennia/evennia/pull/3467
|
||||
|
||||
## Evennia 4.0.0
|
||||
|
||||
|
|
|
|||
|
|
@ -23,12 +23,25 @@ at the root of `evennia/docs/source/`.
|
|||
result in Evennia. This is often on a tutorial or FAQ form and will refer to the rest of the documentation for further reading.
|
||||
- `source/Howtos/Beginner-Tutorial/` holds all documents part of the initial tutorial sequence.
|
||||
|
||||
|
||||
Other files and folders:
|
||||
- `source/api/` contains the auto-generated API documentation as `.html` files. Don't edit these files manually, they are auto-generated from sources.
|
||||
- `source/_templates` and `source/_static` hold files for the doc itself. They should only be modified if wanting to change the look and structure of the documentation generation itself.
|
||||
- `conf.py` holds the Sphinx configuration. It should usually not be modified except to update the Evennia version on a new branch.
|
||||
|
||||
## Automatically generated doc pages
|
||||
|
||||
Some doc pages are automatically generated. Changes to their generated markdown file will be overwritten. Instead they must be modified at the point the automation reads the text from.
|
||||
|
||||
- All API docs under `source/api` are built from the doc strings of Evennia core code. Documentation fixes for these needs to be done in the doc strings of the relevant module, function, class or method.
|
||||
- [Contribs/Contribs-Overview.md](Contribs/Contribs-Overview.md) is completely generated from scratch when building the docs, by the script `evennia/docs/pylib/contrib_readmes2docs.py`.
|
||||
- All contrib blurbs on the above page are taken from the first paragraph of each contrib's `README.md`, found under `evennia/contrib/*/*/README.md`.
|
||||
- Similarly, all contrib documentation linked from the above page is generated from each contrib's `README.md` file.
|
||||
- [Components/Default-Commands.md](Components/Default-Commands.md) is generated from the command classes found under `evennia/commands/default/`.
|
||||
- [Coding/Evennia-Code-Style.md](Coding/Evennia-Code-Style.md) is generated from `evennia/CODING_STYLE.md`.
|
||||
- [Coding/Changelog.md](Coding/Changelog.md) is generated from `evennia/CHANGELOG.md`
|
||||
- [Setup/Settings-Default.md](Setup/Settings-Default.md) is generated from the default settings file `evennia/default_settings.py`
|
||||
|
||||
Most auto-generated pages have a warning in the header indicating that it's auto-generated.
|
||||
|
||||
## Editing syntax
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue