Add roadmap sim-control idea and update classroom news date

This commit is contained in:
itsrubberduck
2026-02-15 15:41:02 +01:00
parent f471ed4887
commit df21f4242d
2 changed files with 9 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
---
title: "Classroom Update: Slower Audio, Smarter Phonetics, and METAR That Actually Makes Sense"
date: "2025-02-14"
date: "2026-02-14"
summary: "We listened to your feedback and improved audio clarity, fixed phonetic edge cases, and made METAR lessons actually understandable."
readingTime: "2 min read"
---
@@ -49,7 +49,6 @@ Now:
## Small Fixes
- The readback feedback label now says **"Expected:"** instead of the German "Soll:" -- sorry about that.
- The **Pushback Delay** lesson now accepts both the word form ("five") and the numeral ("5") for the delay field.
---

View File

@@ -95,6 +95,14 @@ export const ROADMAP_ITEMS: RoadmapItemDefinition[] = [
category: 'Traffic',
icon: 'mdi-airplane-takeoff',
},
{
key: 'frequency-sim-control',
title: 'Frequency-driven simulator control',
description:
'Use natural commands on frequency (for example "set me up for an approach from 5,000 ft to EDDF 07R" or "change my altitude to X") and let the bridge apply those changes directly in the sim.',
category: 'Bridge',
icon: 'mdi-radio-tower',
},
]
export const ROADMAP_ITEM_KEYS = new Set(ROADMAP_ITEMS.map((item) => item.key))