Back
Component New

Changelog Page

A page template for displaying version history with new features, improvements, and bug fixes.

Posthog Utility

27. Februar 2026 Version v1.2.0

Neue Funktionen

  • Added Posthog utility for setting up server-side analytics and feature flags

Update Popup and new Categories

26. Februar 2026 Version v1.1.0

Neue Funktionen

  • Added new category "Resources" for copy-paste code snippets
  • Added new category "Page Templates" for ready-to-use pages
  • Added sidebar items for viewing all components, utils, resources and page templates
  • Added Update Popup component alongside a version manager
  • Added Changelog Page as first entry in the Page Templates category
  • Added Glowing Gradient Button resource

Initial Release

2. Februar 2026 Version v1.0.0

Neue Funktionen

  • Added format-measurement-value utility function

Verbesserungen

  • Updated Data Table component with improved filtering, sorting, responsiveness and more more text for a second line

Installation

pnpm dlx shadcn-svelte@next add https://components.deckweiss.at/r/changelog-page.json

Component Source

{#each versions as version (version.version)} {@const isLatest = version.version === latestVersion}

{version.title}

{version.date} Version {version.version}
{#if version.detailedChanges.newFeatures.length > 0}

Neue Funktionen

    {#each version.detailedChanges.newFeatures as item}
  • {item}
  • {/each}
{/if} {#if version.detailedChanges.improvements.length > 0}

Verbesserungen

    {#each version.detailedChanges.improvements as item}
  • {item}
  • {/each}
{/if} {#if version.detailedChanges.bugFixes.length > 0}

Bugfixes

    {#each version.detailedChanges.bugFixes as item}
  • {item}
  • {/each}
{/if}
{/each}