diff --git a/.github/ISSUE_TEMPLATE/001-bug-report.yml b/.github/ISSUE_TEMPLATE/001-bug-report.yml index a0a6802..1abb8fa 100644 --- a/.github/ISSUE_TEMPLATE/001-bug-report.yml +++ b/.github/ISSUE_TEMPLATE/001-bug-report.yml @@ -1,5 +1,5 @@ # FOR DEVELOPMENT, DO NOT EDIT THIS FILE! EDIT THE TEMPlATES INSTEAD! -# See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-1:-Contributing-Information#section-5-template-information! +# See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-2:-Contributing-Information#section-5-template-information! name: Bug Report description: "Crashes or unintended behaviors arising from Nomi CEu's mods, configurations, or custom scripts." labels: bug @@ -108,7 +108,7 @@ body: label: Reproduction Steps description: | How do you trigger this bug? Please walk us through it step by step. - + Please leave this field blank if this is not applicable. (Quest Isuses, JEI Issues, Tooltip Issues, etc.) placeholder: | 1. diff --git a/.github/ISSUE_TEMPLATE/002-feature-request.yml b/.github/ISSUE_TEMPLATE/002-feature-request.yml index 26f714e..734e076 100644 --- a/.github/ISSUE_TEMPLATE/002-feature-request.yml +++ b/.github/ISSUE_TEMPLATE/002-feature-request.yml @@ -1,5 +1,5 @@ # FOR DEVELOPMENT, DO NOT EDIT THIS FILE! EDIT THE TEMPlATES INSTEAD! -# See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-1:-Contributing-Information#section-5-template-information! +# See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-2:-Contributing-Information#section-5-template-information! name: Feature Request description: Suggest an idea, including mod additions or addon scripts, for Nomi CEu. labels: enhancement @@ -107,7 +107,7 @@ body: attributes: label: How Will Your Solution Work description: | - Describe how the solution will fix the problem, or add to the pack. + Describe how the solution will fix the problem, or add to the pack. If you are suggesting a mod, please describe what the mod does, and how it will add to the pack. placeholder: "Example: If X was done, than Y will get a use, and..." validations: diff --git a/overrides/config/CustomMainMenu/mainmenu.json b/overrides/config/CustomMainMenu/mainmenu.json index 01cf2a1..95478d0 100644 --- a/overrides/config/CustomMainMenu/mainmenu.json +++ b/overrides/config/CustomMainMenu/mainmenu.json @@ -1,5 +1,5 @@ { - "_comment": "FOR DEVELOPMENT, DO NOT EDIT THIS FILE! EDIT THE TEMPlATES INSTEAD! See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-1:-Contributing-Information#section-5-template-information!", + "_comment": "FOR DEVELOPMENT, DO NOT EDIT THIS FILE! EDIT THE TEMPlATES INSTEAD! See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-2:-Contributing-Information#section-5-template-information!", "buttons": { "akliz": { "action": { @@ -148,4 +148,4 @@ } } } -} \ No newline at end of file +} diff --git a/overrides/config/nomilabs-version.cfg b/overrides/config/nomilabs-version.cfg index a0ff08a..3156472 100644 --- a/overrides/config/nomilabs-version.cfg +++ b/overrides/config/nomilabs-version.cfg @@ -1,5 +1,5 @@ # FOR DEVELOPMENT, DO NOT EDIT THIS FILE! EDIT THE TEMPlATES INSTEAD! -# See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-1:-Contributing-Information#section-5-template-information! +# See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-2:-Contributing-Information#section-5-template-information! # Configuration file general { @@ -16,5 +16,3 @@ general { # Max: 2147483647 I:manualFixVersion=1 } - - diff --git a/tools/tasks/changelog/specialParser.ts b/tools/tasks/changelog/specialParser.ts index 9de2d39..dace9c4 100644 --- a/tools/tasks/changelog/specialParser.ts +++ b/tools/tasks/changelog/specialParser.ts @@ -797,7 +797,7 @@ async function parseTOMLWithRootToList( function getEndMessage(delimiter: string) { const normal = dedent` - Try checking the TOML syntax in https://www.toml-lint.com/, checking the object tree in https://www.convertsimple.com/convert-toml-to-json/, checking syntax in https://toml.io/en/v1.0.0, and looking through https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-2:-Maintainer-Information#62-create-changelog! + Try checking the TOML syntax in https://www.toml-lint.com/, checking the object tree in https://www.convertsimple.com/convert-toml-to-json/, checking syntax in https://toml.io/en/v1.0.0, and looking through https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-3:-Maintainer-Information#12-create-changelog! Also check that you have surrounded the TOML in '${delimiter}'!`; if (data.isTest) return normal; return normal.concat("\nSkipping..."); diff --git a/tools/tasks/misc/transformFiles.ts b/tools/tasks/misc/transformFiles.ts index a04b10f..a3320cb 100644 --- a/tools/tasks/misc/transformFiles.ts +++ b/tools/tasks/misc/transformFiles.ts @@ -111,7 +111,7 @@ async function modifyFile( // Add warning to not edit file if (addWarning) modifiedData = dedent`# FOR DEVELOPMENT, DO NOT EDIT THIS FILE! EDIT THE TEMPlATES INSTEAD! - # See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-1:-Contributing-Information#section-5-template-information! + # See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-2:-Contributing-Information#section-5-template-information! ${modifiedData}`; // Write the modified content back to the file @@ -190,7 +190,7 @@ async function updateMainMenuConfig(): Promise { // Add warning to not edit file modifiedData["_comment"] = - "FOR DEVELOPMENT, DO NOT EDIT THIS FILE! EDIT THE TEMPlATES INSTEAD! See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-1:-Contributing-Information#section-5-template-information!"; + "FOR DEVELOPMENT, DO NOT EDIT THIS FILE! EDIT THE TEMPlATES INSTEAD! See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-2:-Contributing-Information#section-5-template-information!"; // Sort keys so that comment appears first modifiedData = sortKeysRecursive(modifiedData); diff --git a/tools/tasks/shared/quest.ts b/tools/tasks/shared/quest.ts index 8d9fcfb..aaba94a 100644 --- a/tools/tasks/shared/quest.ts +++ b/tools/tasks/shared/quest.ts @@ -176,7 +176,7 @@ export async function transformQuestBook(): Promise { lines.push( "# DO NOT EDIT THIS FILE!", "# THIS IS A SOURCE FILE ONLY!", - "# See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-1:-Contributing-Information#section-2-quest-book-contributing FOR HOW TO EDIT THE QUEST BOOK!", + "# See https://github.com/Nomi-CEu/Nomi-CEu/wiki/Part-2:-Contributing-Information#section-2-quest-book-contributing FOR HOW TO EDIT THE QUEST BOOK!", "", );