Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ <h3>- Chart info -</h3>

<h3>- Other -</h3>

<abbr title="Who made this chart (optional)">i</abbr>
<label for="charter">Charter</label>
<input type="text" id="charter" name="charter">

<abbr title="Name used by mods to identify your chart. Use only a-Z, 1-9, _, -, and space. Should be globally unique.">i</abbr>
<label for="trackRef">trackRef</label>
<input type="text" id="trackRef" name="trackRef">
Expand Down Expand Up @@ -298,6 +302,10 @@ <h2>Meta Events</h2>

<div class="container">
<h2>Version history</h2>
<p>
v1.11a<br>
Added charter field.
</p>
<p>
v1.11<br>
Added support for background events
Expand Down
3 changes: 2 additions & 1 deletion src/inputs.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const Inputs = (function () {
songname: "name",
shortname: "shortName",
artist: "author",
charter: "charter",
releaseyear: "year",
genre: "genre",
description: "description",
Expand All @@ -22,7 +23,7 @@ const Inputs = (function () {
};

/** Inputs that are not required to be filled in */
const optionalInputNames = new Set(["songendpoint"]);
const optionalInputNames = new Set(["songendpoint", "charter"]);

/** Inputs that need to be formatted as ints */
const intInputNames = new Set([
Expand Down