From 87f2af174728d70842bb5c49f7c13c59b9f41370 Mon Sep 17 00:00:00 2001 From: Alfred Date: Fri, 24 Oct 2025 01:24:28 +0800 Subject: [PATCH] feat: Update CPU core numbering from 0-based to 1-based in dashboard - Change inference server CPU cores display from 0-11 to 1-12 - Change application server CPU cores display from 0-7 to 1-8 - Update both Chinese and English translations - Improve user experience with more intuitive core numbering --- sdcard/web/index.htm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdcard/web/index.htm b/sdcard/web/index.htm index 61ad358..0635b10 100644 --- a/sdcard/web/index.htm +++ b/sdcard/web/index.htm @@ -1077,7 +1077,7 @@

应用模组监控

html += `
-
${coreLabel} ${core.id}
+
${coreLabel} ${core.id + 1}
${usage.toFixed(1)}%
@@ -1447,7 +1447,7 @@

应用模组监控

html += `
-
${coreLabel} ${core.id}
+
${coreLabel} ${core.id + 1}
${usage.toFixed(1)}%