Add more explanations

This commit is contained in:
Pieter Vander Vennet 2020-09-06 00:11:02 +02:00
parent 1ee921b089
commit 93bfa73088
3 changed files with 4 additions and 3 deletions

View file

@ -31,7 +31,8 @@ export default class HelpText extends UIElement {
if (setting === undefined) {
return "<h1>Welcome to the Custom Theme Builder</h1>" +
"Here, one can make their own custom mapcomplete themes.<br/>" +
"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.<br/>" +
"Want to see how the quests are doing in number of visits? All the stats are open on <a href='pietervdvn.goatcounter.com' target='_blank'>goatcounter</a>";
}
return new Combine(["<h1>", setting._name, "</h1>", setting._description.Render()]).Render();

View file

@ -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 = {

View file

@ -89,7 +89,7 @@ export default class TagRenderingPanel extends InputElement<TagRenderingConfigJs
setting(new MultiInput<{ if: AndOrTagConfigJson, then: (string | any), hideInAnswer?: boolean }>("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", "")
];