housekeeping: polish Submit Score modal copy, rename v0.10 changelog

- Kills/Deaths label no longer duplicates the "(e.g. 5/2)" hint already
  shown in the field's placeholder
- ATK/DEF/Heal placeholders drop the redundant "(case-insensitive)" note
- v0.10 changelog retitled "Sleep Check (The Vic Update)" and the New
  section's blurb reworded
This commit is contained in:
Nuno Duque Nunes 2026-07-30 04:29:06 +01:00
parent fc4f322885
commit ddc742211e
2 changed files with 6 additions and 6 deletions

View file

@ -1,7 +1,7 @@
{ {
"version": "v0.10", "version": "v0.10",
"date": "2026-07-30", "date": "2026-07-30",
"title": "Sleep Check", "title": "Sleep Check (The Vic Update)",
"layout": "default", "layout": "default",
"sections": [ "sections": [
{ {
@ -9,7 +9,7 @@
"label": "New", "label": "New",
"emoji": "✨", "emoji": "✨",
"items": [ "items": [
{ "text": "Sleep Check — players assigned a sleep-check role get a DM before TG asking them to confirm they're awake, with 💤 shown next to their name in the poll until they confirm" } { "text": "Sleepy princesses now get a royal wake-up call — before TG, they receive a DM asking them to confirm they're awake, with 💤 shown next to their name in the poll until they do" }
] ]
}, },
{ {

View file

@ -56,7 +56,7 @@ export namespace modals {
const kdInput = new TextInputBuilder() const kdInput = new TextInputBuilder()
.setCustomId("kd") .setCustomId("kd")
.setLabel("Kills / Deaths (e.g. 5/2)") .setLabel("Kills / Deaths")
.setStyle(TextInputStyle.Short) .setStyle(TextInputStyle.Short)
.setPlaceholder("5/2") .setPlaceholder("5/2")
.setRequired(false); .setRequired(false);
@ -65,21 +65,21 @@ export namespace modals {
.setCustomId("atk") .setCustomId("atk")
.setLabel("Attack Score") .setLabel("Attack Score")
.setStyle(TextInputStyle.Short) .setStyle(TextInputStyle.Short)
.setPlaceholder("e.g. 1.2M or 500K (case-insensitive)") .setPlaceholder("e.g. 1.2M or 500K")
.setRequired(false); .setRequired(false);
const defInput = new TextInputBuilder() const defInput = new TextInputBuilder()
.setCustomId("def") .setCustomId("def")
.setLabel("Defense Score") .setLabel("Defense Score")
.setStyle(TextInputStyle.Short) .setStyle(TextInputStyle.Short)
.setPlaceholder("e.g. 1.2M or 500K (case-insensitive)") .setPlaceholder("e.g. 1.2M or 500K")
.setRequired(false); .setRequired(false);
const healInput = new TextInputBuilder() const healInput = new TextInputBuilder()
.setCustomId("heal") .setCustomId("heal")
.setLabel("Healing Score") .setLabel("Healing Score")
.setStyle(TextInputStyle.Short) .setStyle(TextInputStyle.Short)
.setPlaceholder("e.g. 1.2M or 500K (case-insensitive)") .setPlaceholder("e.g. 1.2M or 500K")
.setRequired(false); .setRequired(false);
// Base fields always shown: pts, k/d, atk, def (4 fields) // Base fields always shown: pts, k/d, atk, def (4 fields)