Skip to content

Commit 57b4527

Browse files
committed
Only show v0.7 for now
1 parent 25144cd commit 57b4527

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/App.svelte

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,11 @@ function langHref(lang: string, href: string) {
470470
}}>
471471
<optgroup label="Stable">
472472
{#each builds.filter((b) => !b.prerelease) as build}
473-
<option value={build.build_number}>{build.build_number}</option>
473+
<!--TODO: versions below 0.7 are not exactly supported, do a better job at dynamically finding latest supported versions. -->
474+
{#if build.build_number === "v0.7.0"}
475+
<option value={build.build_number}
476+
>{build.build_number}</option>
477+
{/if}
474478
{/each}
475479
</optgroup>
476480
<optgroup label="Experimental">

0 commit comments

Comments
 (0)