From d8655359875de477f11f54f604cc6d6e2705d2f9 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 16 Dec 2020 09:16:27 +0100 Subject: [PATCH 1/5] Update bug-report.md Clarified the form a little --- .github/ISSUE_TEMPLATE/bug-report.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md index 580225a96a..e7d0990a31 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -1,14 +1,14 @@ --- name: Bug report about: Create a report to help us improve -title: "[BUG] Enter a brief description here" +title: "[BUG] (Enter a brief description here)" labels: bug assignees: '' --- #### Describe the bug -A clear and concise description of what the bug is. +(Replace with a clear and concise description of what the bug is.) #### To Reproduce Steps to reproduce the behavior: @@ -18,10 +18,10 @@ Steps to reproduce the behavior: 4. See error #### Expected behavior -A clear and concise description of what you expected to happen. +(Replace with a clear and concise description of what you expected to happen.) #### Environment, Evennia version, OS etc -If unsure, run `evennia -v` or get the first few lines of the `about` command in-game. +(Replace with info. If unsure, run `evennia -v` or get the first few lines of the `about` command in-game.) #### Additional context -Any other context about the problem, or ideas on how to solve. +(Replace with any other context about the problem, or ideas on how to solve.) From 0be2c78b4676d21f21ed7165d789cdbb5580d906 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 16 Dec 2020 09:21:56 +0100 Subject: [PATCH 2/5] Update documentation-issue.md Clarified template a little. --- .github/ISSUE_TEMPLATE/documentation-issue.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/documentation-issue.md b/.github/ISSUE_TEMPLATE/documentation-issue.md index bffee8dfb5..f72656ca20 100644 --- a/.github/ISSUE_TEMPLATE/documentation-issue.md +++ b/.github/ISSUE_TEMPLATE/documentation-issue.md @@ -1,14 +1,17 @@ --- name: Documentation issue about: Documentation problems and suggestions -title: '[Documentation] Enter a brief description here' +title: '[Documentation] (Enter a brief description here)' labels: documentation assignees: '' --- +#### Existing page / new +(Link to existing documentation page or proposed name of new page) + #### Documentation issue -Describe what the issue is and where it can/should be found. +(Replace with the description of what the issue is or motivate a changes/additions) #### Suggested change -The suggested change. +(Enter the suggested change here) From 7206e5e0b9de504ff498bca5dc55d704764e1679 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 16 Dec 2020 09:31:30 +0100 Subject: [PATCH 3/5] Test some additional discussion links --- .github/ISSUE_TEMPLATE/config.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yaml diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml new file mode 100644 index 0000000000..d5a5b85723 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Questions + url: https://github.com/evennia/evennia/discussions?discussions_q=category%3A%22Evennia+Questions%22 + about: Ask usage questions here (Github Discussions) + - name: Feature discussions + url: https://github.com/evennia/evennia/discussions?discussions_q=category%3A%22Evennia+Engine+Development%22 + about: If you want to discuss before making a formal feature request (Github Discussions) From f39dcb8786e3bd622d426c819bf397d93da72927 Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 16 Dec 2020 09:34:04 +0100 Subject: [PATCH 4/5] Correctly rename config file --- .github/ISSUE_TEMPLATE/{config.yaml => config.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{config.yaml => config.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/config.yaml rename to .github/ISSUE_TEMPLATE/config.yml From a1830caeec384a92e9543d2ad7132940d8c5cbba Mon Sep 17 00:00:00 2001 From: Tim Chaplin Date: Sun, 27 Dec 2020 13:52:52 -0500 Subject: [PATCH 5/5] Increase SaveYesNoCmdSet priority to 150 Fixes a bug where typing "n" in a room with a "north" exit goes north instead of closing the editor when prompted. --- evennia/utils/eveditor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/utils/eveditor.py b/evennia/utils/eveditor.py index 8f0323fdd4..e4c69d3939 100644 --- a/evennia/utils/eveditor.py +++ b/evennia/utils/eveditor.py @@ -202,7 +202,7 @@ class SaveYesNoCmdSet(CmdSet): """Stores the yesno question""" key = "quitsave_yesno" - priority = 1 + priority = 150 # override other cmdsets. mergetype = "Replace" def at_cmdset_creation(self):