From 55c2a1a4cf3a3e78f8154fcb5a7d3fafcc431674 Mon Sep 17 00:00:00 2001 From: Patrick Mulligan Date: Thu, 6 Aug 2026 22:28:31 +0200 Subject: [PATCH] Rename remaining festival identifiers to summit - Entity id 'festivals' -> 'summit' (data.ts) + lookups in gallery.ts and MyceliumNetwork.vue - Mycelium flower kind 'festival' -> 'summit', summitCaps, .myc-summit class and comments Co-Authored-By: Claude Opus 4.8 --- src/deck/components/MyceliumNetwork.vue | 26 ++++++++++++------------- src/deck/data.ts | 2 +- src/deck/gallery.ts | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/deck/components/MyceliumNetwork.vue b/src/deck/components/MyceliumNetwork.vue index 939dac8..da5e6c8 100644 --- a/src/deck/components/MyceliumNetwork.vue +++ b/src/deck/components/MyceliumNetwork.vue @@ -73,21 +73,21 @@ function thread([a, b]: [number, number], i: number) { } const sol = entityById('sollunar') // city -const fest = entityById('festivals') // travelling +const fest = entityById('summit') // travelling const cha = entityById('chateau') // farm // surface flowers: the three experiences + two faint "future" ones. // (Lab 484 is the mycelium itself โ€” the network below, not a flower.) const flowers = [ { x: 230, kind: 'bloom', color: 'var(--color-indigo)', name: sol.name, tag: sol.role }, - { x: 500, kind: 'festival', color: 'var(--color-rose)', name: fest.name, tag: fest.role }, + { x: 500, kind: 'summit', color: 'var(--color-rose)', name: fest.name, tag: fest.role }, { x: 770, kind: 'bloom', color: 'var(--color-clay)', name: cha.name, tag: cha.role }, { x: 100, kind: 'ghost' }, { x: 900, kind: 'ghost' }, ] as const -// small pop-up caps for the ephemeral festival flower -const festivalCaps = [ +// small pop-up caps for the ephemeral summit flower +const summitCaps = [ { dx: -18, dy: -58, r: 15 }, { dx: 0, dy: -74, r: 20 }, { dx: 20, dy: -60, r: 14 }, @@ -196,8 +196,8 @@ const festivalCaps = [ - -