Skip to content

Commit 88e3f5d

Browse files
committed
Add event release notes for Orlando Hamcation 2026 and update hasSeenReleaseNotes logic
1 parent c305e32 commit 88e3f5d

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

stores/firmwareStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export const useFirmwareStore = defineStore('firmware', {
126126
selectedFirmware: eventMode.enabled ? eventMode.firmware : <FirmwareResource | undefined>{},
127127
selectedFile: <File | undefined>{},
128128
baudRate: 115200,
129-
hasSeenReleaseNotes: eventMode.enabled, // Auto-skip release notes in event mode
129+
hasSeenReleaseNotes: false,
130130
shouldCleanInstall: false,
131131
shouldBundleWebUI: false,
132132
shouldInstallMui: false,

types/resources.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,25 @@ export interface EventModeConfig {
2323

2424
const eventFirmwareId = '2.7.18.7e03cae';
2525

26+
const eventReleaseNotes = `
27+
## Welcome to Orlando Hamcation 2026!
28+
29+
This firmware has been customized for Hamcation with factory default configurations.
30+
31+
### ⚠️ Important: Backup Before Flashing
32+
33+
If your device has existing settings or encryption keys, **backup your keys / configurations** before proceeding. Flashing will reset your device to factory settings for the event.
34+
35+
### Quick Start
36+
37+
1. Ensure a **data-capable USB cable** is connected
38+
2. Select your device type
39+
3. Choose "Full Erase and Install"
40+
4. After flashing, download the Meshtastic app and pair via Bluetooth
41+
42+
**73 and happy meshing!**
43+
`;
44+
2645
export const eventMode: EventModeConfig = {
2746
enabled: false,
2847
eventName: 'Orlando Hamcation 2026',
@@ -31,6 +50,7 @@ export const eventMode: EventModeConfig = {
3150
id: `v${eventFirmwareId}`,
3251
title: `Meshtastic Firmware ${eventFirmwareId}`,
3352
zip_url: `https://github.com/meshtastic/meshtastic.github.io/raw/master/event/hamcation2026/firmware-${eventFirmwareId}.zip`,
53+
release_notes: eventReleaseNotes,
3454
},
3555
};
3656

0 commit comments

Comments
 (0)