profiler: drop percentage from scan progress line

Show only 'N / total files — path' during 'Profile from card'; the
percentage was redundant. Help docs updated. SW cache v55 -> v56.
This commit is contained in:
2026-09-10 22:40:59 +03:00
parent 0ecfd5f720
commit 8f24200537
4 changed files with 4 additions and 5 deletions
+1 -2
View File
@@ -7136,8 +7136,7 @@ async function profilerScanStart() {
btn.textContent = t('Scanning...');
try {
const rules = await profilerScanCard(ignoreFids, ignoreNames, fciMode, (done, total, path) => {
const pct = total ? Math.round(done / total * 100) : 0;
progEl.textContent = done + ' / ' + total + ' ' + t('files') + ' (' + pct + '%)' + (path ? ' — ' + path : '');
progEl.textContent = done + ' / ' + total + ' ' + t('files') + (path ? ' — ' + path : '');
});
const profile = { id: profilerNewId(), name: name, created: new Date().toISOString(), rules: rules };
profiles.push(profile);