Skip to content

Commit b4a205f

Browse files
KamijoTomaRevySR
authored andcommitted
Bump lpi4a and meles to 20250420
Signed-off-by: KamijoToma <admin@misakacloud.net>
1 parent 8c03da7 commit b4a205f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/components/ImageLinks.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ interface ImageLink {
1010
export const imageLinks = [
1111
{
1212
device: "Lichee Pi 4A",
13-
version: "20250323",
14-
downloadLink: "https://mirror.iscas.ac.cn/revyos/extra/images/lpi4a/20250323/",
13+
version: "20250420",
14+
downloadLink: "https://mirror.iscas.ac.cn/revyos/extra/images/lpi4a/20250420/",
1515
sdCardSupport: true,
1616
},
1717
{
1818
device: "Milk-V Meles",
19-
version: "20250323",
20-
downloadLink: "https://mirror.iscas.ac.cn/revyos/extra/images/meles/20250323/",
19+
version: "20250420",
20+
downloadLink: "https://mirror.iscas.ac.cn/revyos/extra/images/meles/20250420/",
2121
sdCardSupport: true,
2222
},
2323
{
@@ -55,13 +55,13 @@ export const imageLinks = [
5555

5656
/**
5757
* 根据设备名称查找对应的下载链接,并渲染为 `<a>` 标签。
58-
*
58+
*
5959
* @param device 设备名称,仅允许 `DeviceName` 类型的值。
6060
* @returns 如果找到匹配的设备,则返回对应版本的下载链接;否则显示 "$device 暂无镜像"。
6161
*/
6262
export const DownloadLink: React.FC<{device: string}> = ({ device }) => {
6363
const link = imageLinks.find((item) => item.device === device);
64-
64+
6565
if (!link) return <span>${device} 暂无镜像</span>;
6666

6767
return <a href={link.downloadLink}>{link.version}</a>;

0 commit comments

Comments
 (0)