Журнал изменений — RunCalc
A complete log of updates, new calculators, bug fixes, and improvements on RunCalc. See what has changed.
What's new
RunCalc Changelog
A running log of everything we ship — new calculators, performance improvements, bug fixes, and content updates. Last {commits.length} changes shown.
{Object.values(CATEGORY_MAP).map(({ label, emoji }) => (
{label}
))}
{[...grouped.entries()].map(([date, group]) => (
{group.commits.length} {group.commits.length === 1 ? 'update' : 'updates'}
<!-- Commit list -->
<ul class="cl-entries">
{group.commits.map((c) => (
<li class="cl-entry">
<span class="cl-entry-emoji" aria-label={c.category}>{c.emoji}</span>
<div class="cl-entry-body">
<p class="cl-entry-subject">{c.subject}</p>
<div class="cl-entry-meta">
<span class={`cl-badge cl-badge--${c.category.toLowerCase().replace(/\s+/g, '-')}`}>
{c.category}
</span>
<a
class="cl-hash"
href={`https://github.com/NHafnerR/running-calculator/commit/${c.hash}`}
target="_blank"
rel="noopener noreferrer"
aria-label={`View commit ${c.shortHash} on GitHub`}
>
<code>{c.shortHash}</code>
</a>
</div>
</div>
</li>
))}
</ul>
</section>
))}