Skip to content

Commit 0be76fe

Browse files
committed
fix(website): 颠倒了 Linux 安装包展示的 title 和 desc
因为我觉得这么做更合适,title 处应该写明**这是什么**而不是哪些系统能安装
1 parent 006e23b commit 0be76fe

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docs/.vitepress/components/DownloadPage.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -406,23 +406,23 @@ const classifiedAssets = computed<PlatformGroup[]>(() => {
406406
icon: "🐧",
407407
groups: [
408408
{
409-
title: "通用运行包",
410-
desc: "AppImage",
409+
title: "AppImage",
410+
desc: "通用运行包",
411411
assets: sortAssets(rawAssets.filter((f) => f.name.endsWith(".AppImage"))),
412412
},
413413
{
414-
title: "Debian / Ubuntu / Linux Mint...",
415-
desc: "DEB 安装包",
414+
title: "Debian ",
415+
desc: "Debian / Ubuntu / Linux Mint...",
416416
assets: sortAssets(rawAssets.filter((f) => f.name.endsWith(".deb"))),
417417
},
418418
{
419-
title: "RedHat / Fedora / AlmaLinux...",
420-
desc: "RPM 安装包",
419+
title: "RPM 包",
420+
desc: "Red Hat / Fedora / AlmaLinux...",
421421
assets: sortAssets(rawAssets.filter((f) => f.name.endsWith(".rpm"))),
422422
},
423423
{
424-
title: "Arch Linux / Manjaro...",
425-
desc: "Pacman 安装包",
424+
title: "Pacman 包",
425+
desc: "Arch Linux / Manjaro...",
426426
assets: sortAssets(rawAssets.filter((f) => f.name.endsWith(".pacman"))),
427427
},
428428
{

0 commit comments

Comments
 (0)