20 lines
627 B
Plaintext
20 lines
627 B
Plaintext
$newline never
|
|
|
|
$# SPDX-FileCopyrightText: 2022 Gregor Kleen <gregor.kleen@ifi.lmu.de>
|
|
$#
|
|
$# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
<dl .deflist #changelog>
|
|
$forall (Down d, es) <- Map.toList changelogEntries
|
|
<dt .deflist__dt ##{"changelog-date--" <> toPathPiece d}>
|
|
^{formatTimeW SelFormatDate d}
|
|
<dd .deflist__dd>
|
|
<ul>
|
|
$forall e <- Set.toList es
|
|
<li ##{"changelog-item--" <> toPathPiece e}>
|
|
$if is _ChangelogItemBugfix $ classifyChangelogItem e
|
|
<i>
|
|
_{ChangelogItemBugfix}
|
|
: #
|
|
^{changelogItems ! toPathPiece e}
|