diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e7182eb0e..6b8a254a92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ # Changelog -## Main branch +## Evennia 2.0 +June 10, 2023 + +- **Possible backwards incompatibility**: Updated contrib `ExtendedRoom` now + supports arbitrary room-states, state-based descriptions, embedded funcparser + tags, details and random messages. While this feature is made to be as + backwards-compatible as possible, so many people depend on this contrib class + that we are updating the major Evennia version to indicate the big changes. - New Contrib: `Container` typeclass with new commands for storing and retrieving things inside them (InspectorCaracal) -- Updated Contrib: `ExtendedRoom` now supports arbitrary room-states, - state-based descriptions, embedded funcparser tags, details and random messages. - Feature: Add `TagCategoryProperty` for setting categories with multiple tags as properties directly on objects. Complements `TagProperty`. - Feature: Attribute-support for saving/loading `deques` with `maxlen=` set. @@ -17,8 +22,11 @@ keyword arg, like our docs already claimed it should (Volund) - Fix: `TickerHandler` store key updating was refactored, fixing an issue with updating intervals (InspectorCaracal) +- Docs: Removed warning about Python3.11 on Windows; upstream Twistd now + supports 3.11 on Windows. - Docs: New Beginner-Tutorial lessons for NPCs, Base-Combat Twitch-Combat and Turnbased-combat (note that the Beginner tutorial is still WIP). +- Fix: A lot of other minor bug fixes. ## Evennia 1.3.0 diff --git a/docs/source/Coding/Changelog.md b/docs/source/Coding/Changelog.md index 8e7182eb0e..6b8a254a92 100644 --- a/docs/source/Coding/Changelog.md +++ b/docs/source/Coding/Changelog.md @@ -1,11 +1,16 @@ # Changelog -## Main branch +## Evennia 2.0 +June 10, 2023 + +- **Possible backwards incompatibility**: Updated contrib `ExtendedRoom` now + supports arbitrary room-states, state-based descriptions, embedded funcparser + tags, details and random messages. While this feature is made to be as + backwards-compatible as possible, so many people depend on this contrib class + that we are updating the major Evennia version to indicate the big changes. - New Contrib: `Container` typeclass with new commands for storing and retrieving things inside them (InspectorCaracal) -- Updated Contrib: `ExtendedRoom` now supports arbitrary room-states, - state-based descriptions, embedded funcparser tags, details and random messages. - Feature: Add `TagCategoryProperty` for setting categories with multiple tags as properties directly on objects. Complements `TagProperty`. - Feature: Attribute-support for saving/loading `deques` with `maxlen=` set. @@ -17,8 +22,11 @@ keyword arg, like our docs already claimed it should (Volund) - Fix: `TickerHandler` store key updating was refactored, fixing an issue with updating intervals (InspectorCaracal) +- Docs: Removed warning about Python3.11 on Windows; upstream Twistd now + supports 3.11 on Windows. - Docs: New Beginner-Tutorial lessons for NPCs, Base-Combat Twitch-Combat and Turnbased-combat (note that the Beginner tutorial is still WIP). +- Fix: A lot of other minor bug fixes. ## Evennia 1.3.0 diff --git a/docs/source/_templates/layout.html b/docs/source/_templates/layout.html index 1177222a5d..a79fff0ca0 100644 --- a/docs/source/_templates/layout.html +++ b/docs/source/_templates/layout.html @@ -45,9 +45,6 @@ {%- block relbaritems %} {% endblock %} - {%- if release == '1.0-dev' %} -
develop branch
- {%- endif %} {%- endmacro %} @@ -170,11 +167,24 @@ {%- block extrahead %} {% endblock %} {%- block body_tag %}{% endblock %} -{%- block header %}{% endblock %} +{%- block header %} + +{% endblock %} {%- block relbar1 %}{{ relbar() }}{% endblock %} {%- block content %} + + {% if legacy_versions %} + {% if release in legacy_versions %} +
+

Note

+

You are reading an old version of this documentation.

+
+ + {% endif %} + {% endif %} + {%- block sidebar1 %} {# possible location for sidebar #} {% endblock %}
diff --git a/docs/source/_templates/versioning.html b/docs/source/_templates/versioning.html index 5926fdbfc1..b5ae969e50 100644 --- a/docs/source/_templates/versioning.html +++ b/docs/source/_templates/versioning.html @@ -1,13 +1,13 @@ {% if versions %} -

{{ _('Versions') }}

+

{{ _('Doc Versions') }}