chore(changelog): fix platform-specific notes (#5832)

I overlooked that we can make a note Linux-specific or Windows-specific
by branching on the title. This fixes some of that and also puts the
"Maintenance release" in a list item for consistency

```[tasklist]
### Tasks
- [x] Don't have `<p>` directly inside `<ul>`
```
This commit is contained in:
Reactor Scram
2024-07-11 16:00:56 +00:00
committed by GitHub
parent 08182913a5
commit 041e3459ae

View File

@@ -13,6 +13,12 @@ export default function GUI({ title }: { title: string }) {
<Entries href={href} arches={arches} title={title}>
{/*<Entry version="1.1.6" date={new Date("2024-07-10")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
{title === "Linux GUI" && (
<li className="pl-2">
This is a maintenance release with no user-facing changes.
</li>
)}
{title === "Windows" && (
<li className="pl-2">
Unexpected IPC service stops are now{" "}
<Link
@@ -31,10 +37,12 @@ export default function GUI({ title }: { title: string }) {
a bug where DNS could stop working when you sign out.
</Link>
</li>
)}
</ul>
</Entry>*/}
<Entry version="1.1.5" date={new Date("2024-07-08")}>
<ul className="list-disc space-y-2 pl-4 mb-4">
{title === "Linux GUI" && (
<li className="pl-2">
The Linux GUI Client is now{" "}
<Link
@@ -44,6 +52,12 @@ export default function GUI({ title }: { title: string }) {
built for both x86-64 and ARM64
</Link>
</li>
)}
{title === "Windows" && (
<li className="pl-2">
This is a maintenance release with no user-facing changes.
</li>
)}
</ul>
</Entry>
<Entry version="1.1.4" date={new Date("2024-07-05")}>