From 93bfa730884de5f4c789ce1d4bd361c659d692f0 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sun, 6 Sep 2020 00:11:02 +0200 Subject: [PATCH] Add more explanations --- Customizations/HelpText.ts | 3 ++- State.ts | 2 +- UI/CustomGenerator/TagRenderingPanel.ts | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Customizations/HelpText.ts b/Customizations/HelpText.ts index 814a10d..af0ccf3 100644 --- a/Customizations/HelpText.ts +++ b/Customizations/HelpText.ts @@ -31,7 +31,8 @@ export default class HelpText extends UIElement { if (setting === undefined) { return "

Welcome to the Custom Theme Builder

" + "Here, one can make their own custom mapcomplete themes.
" + - "Fill out the fields to get a working mapcomplete theme. More information on the selected field will appear here when you click it"; + "Fill out the fields to get a working mapcomplete theme. More information on the selected field will appear here when you click it.
" + + "Want to see how the quests are doing in number of visits? All the stats are open on goatcounter"; } return new Combine(["

", setting._name, "

", setting._description.Render()]).Render(); diff --git a/State.ts b/State.ts index 8899503..58527f2 100644 --- a/State.ts +++ b/State.ts @@ -23,7 +23,7 @@ export class State { // The singleton of the global state public static state: State; - public static vNumber = "0.0.7h"; + public static vNumber = "0.0.7i"; // The user journey states thresholds when a new feature gets unlocked public static userJourney = { diff --git a/UI/CustomGenerator/TagRenderingPanel.ts b/UI/CustomGenerator/TagRenderingPanel.ts index b92b9d9..5d1dade 100644 --- a/UI/CustomGenerator/TagRenderingPanel.ts +++ b/UI/CustomGenerator/TagRenderingPanel.ts @@ -89,7 +89,7 @@ export default class TagRenderingPanel extends InputElement("Add a mapping", () => ({if: undefined, then: undefined}), () => new MappingInput(languages, options?.disableQuestions ?? false)), "mappings", - "If a tag matches, then show the respective text", "") + "If a tag matches, then show the first respective text", "") ];