Changelog

{#if data.upcomingChangelog && changesByCategory(data.upcomingChangelog).length > 0}
Prochainement {#each changesByCategory(data.upcomingChangelog) as [category, changes]}

{DISPLAY_CHANGELOG_CATEGORIES.get(category)}

    {#each changes as change}
  • {@html change.html} {#if change.issues.length > 0} ({#each change.issues as issue} #{issue} {/each}) {/if}
  • {/each}
{/each}
{/if} {#each data.combinedChangelog as version}

Version {version.version} {#if version.date} {formatDate(version.date)} {/if}

{@html version.description}
{#each changesByCategory(version) as [category, changes]}

{DISPLAY_CHANGELOG_CATEGORIES.get(category)}

{:else} {#if !version.description}

Pas grand chose d'intéréssant pour cette version… Détails techniques

{/if} {/each} {/each}