Skip to content

Commit 566301d

Browse files
committed
Separate changelog type for "Removed"
1 parent 8901c6d commit 566301d

3 files changed

Lines changed: 19 additions & 6 deletions

File tree

content/docs/changelog/1.0.5.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ date: August 18, 2026
1616
<Fixed>Incorrect VHF navaid icon shown in the FMS `FIX INFO` dialog</Fixed>
1717
<Fixed>`VREF` offset should not be required to set arrival speeds</Fixed>
1818
<Fixed>`STATUS` synoptic showed incorrect reading for right side brake temperatures</Fixed>
19-
<Fixed>Disabled `ALONG TRK WPT` option on flight plan legs until a correct implementation is made</Fixed>
20-
<Fixed>Disabled `CTRLD AIRSPACE` and `SUA` symbol layers until they are made more performant</Fixed>
2119
<Fixed>Out of date magnetic variation database from October 2025</Fixed>
2220
<Fixed>`VPATH` disarms if the aircraft deviates from the lateral flight plan [^2]</Fixed>
2321
<Fixed>Direct-to with a course draw in the wrong direction if the aircraft is past the fix</Fixed>
22+
23+
<Removed>`ALONG TRK WPT` option on flight plan legs until a correct implementation is made</Removed>
24+
<Removed>`CTRLD AIRSPACE` and `SUA` symbol layers until they are made more performant</Removed>
2425
</ChangelogList>
2526

2627

src/components/changelog-list.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,17 @@ export function Added({ className, ...props }: HTMLAttributes<HTMLDivElement>) {
5252
/>
5353
);
5454
}
55+
56+
export function Removed({
57+
className,
58+
...props
59+
}: HTMLAttributes<HTMLDivElement>) {
60+
return (
61+
<ChangelogItem
62+
label="Removed"
63+
variant="muted"
64+
className={className}
65+
{...props}
66+
/>
67+
);
68+
}

src/mdx-components.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import defaultMdxComponents from "fumadocs-ui/mdx";
55
import * as TabsComponents from "fumadocs-ui/components/tabs";
66
import type { MDXComponents } from "mdx/types";
77
import { Badge } from "@/components/badge";
8-
import { Added, ChangelogList, Fixed } from "@/components/changelog-list";
8+
import * as ChangelogComponents from "@/components/changelog-list";
99
import { LinkButton } from "@/components/link-button";
1010

1111
export function getMDXComponents(components?: MDXComponents): MDXComponents {
@@ -19,12 +19,10 @@ export function getMDXComponents(components?: MDXComponents): MDXComponents {
1919
),
2020
LinkButton,
2121
Badge,
22-
ChangelogList,
23-
Fixed,
24-
Added,
2522
File,
2623
Files,
2724
Folder,
25+
...ChangelogComponents,
2826
...TabsComponents,
2927
...components,
3028
};

0 commit comments

Comments
 (0)