aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Announcement.svelte
Commit message (Collapse)AuthorAgeFilesLines
* style: apply biome autofixes and resolve remaining lint findingsFuwn4 days1-4/+4
| | | | | | | | | | | | | | Auto-fixed cosmetic findings (import ordering, obj["k"]->obj.k, optional chaining, template literals, Date.now, parseInt radix, useless ternaries/ switch cases). Resolved the non-autofixable rest by hand: - Senpy: static-only class -> object literal (no this/static reliance). - app.html: var global shim -> window.global = window (keeps the shim, drops the unused-var flag). - biome-ignore with rationale for the logout document.cookie clear and the holodule scrape non-null assertion. Verified: biome check 0 diagnostics, svelte-check 0/0, 24/24 unit tests.
* feat(analytics): track umami events across core actionsFuwn4 days1-1/+3
| | | | | | | | | Add a guarded track() wrapper (src/lib/analytics.ts) so programmatic events no-op instead of throwing when umami is absent (localhost), lazily loaded, or ad-blocked. Instrument the core loop (progress increment, roulette, list filter, force refresh), the auth funnel (log in/out, command palette), settings toggles/selects at the wrapper level, sync/debug/feed actions, and tool/sharing actions.
* chore(biome): drop formatter style overridesFuwn2026-03-011-19/+23
|
* chore(biome): enable svelte formattingFuwn2026-03-011-32/+32
|
* refactor: Migrate event handlers to new Svelte 5 syntaxFuwn2026-01-231-1/+1
|
* refactor(layout): Replace empty p elements with reusable Spacer componentFuwn2026-01-231-1/+2
|
* fix(html): Replace self-closing non-void HTML elements with proper closing tagsFuwn2026-01-231-1/+1
|
* format: Apply Prettier formattingFuwn2025-12-151-1/+1
|
* style(src): Remove self-closing p and div tagsFuwn2025-06-231-1/+1
|
* chore(prettier): use spaces instead of tabsFuwn2024-10-091-43/+43
|
* fix(Announcement): only show when authenticatedFuwn2024-05-281-1/+3
|
* refactor(lib): move componenets to modulesFuwn2024-04-211-1/+1
|
* feat(announcement): better format handlingFuwn2024-04-141-1/+19
|
* feat(layout): announcement featureFuwn2024-04-011-0/+33