Imagery imported for icons and items. Live updates working.

Hover tooltip working. Features.md added for better tracking.
This commit is contained in:
2025-10-28 08:41:04 +08:00
parent 4ea30cc12e
commit ea8484fca7
16068 changed files with 3097 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
export const CURRENT_VERSION = 1;
export const GROUP_DATA_TTL = 30000; // 30 seconds in ms (shorter TTL for real-time group updates)
export const INITIAL_STATE = {
version: CURRENT_VERSION,
activeGroup: null, // Index of the active group in the groups array
groups: [], // Array of { name, token, createdAt }
groupDataCache: {}, // Keyed by group name, value has shape: { lastUpdated, loading, data, error }
};