diff --git a/lang/de.json b/lang/de.json index 32444b2..9ff2172 100644 --- a/lang/de.json +++ b/lang/de.json @@ -21,7 +21,7 @@ "OrphansLabel": "Ausblenden:", "OrphansModules": "modules/*", "OrphansSystems": "systems/*", - "OrphansCorePublic": "canvas/cards/icons/sounds/toolclips/ui" + "OrphansCorePublic": "canvas/cards/docs/icons/nue/sounds/toolclips/ui" }, "Progress": { "Initialize": "Initialisiere Analyse", diff --git a/lang/en.json b/lang/en.json index b9fa445..5d69397 100644 --- a/lang/en.json +++ b/lang/en.json @@ -21,7 +21,7 @@ "OrphansLabel": "Hide:", "OrphansModules": "modules/*", "OrphansSystems": "systems/*", - "OrphansCorePublic": "canvas/cards/icons/sounds/toolclips/ui" + "OrphansCorePublic": "canvas/cards/docs/icons/nue/sounds/toolclips/ui" }, "Progress": { "Initialize": "Initializing analysis", diff --git a/module.json b/module.json index 51b39e4..c0cf959 100644 --- a/module.json +++ b/module.json @@ -2,7 +2,7 @@ "id": "kosmos-storage-audit", "title": "Kosmos Storage Audit", "description": "Analyzes media references and risky storage locations across Foundry data and public roots.", - "version": "0.0.32", + "version": "0.0.33", "compatibility": { "minimum": "13", "verified": "13" diff --git a/scripts/apps/audit-report-app.js b/scripts/apps/audit-report-app.js index a2e3167..ee4818d 100644 --- a/scripts/apps/audit-report-app.js +++ b/scripts/apps/audit-report-app.js @@ -570,7 +570,7 @@ function shouldHideOrphanFinding(finding, orphanFilters) { if (orphanFilters.systems && path.startsWith("systems/")) return true; if ( orphanFilters.corePublic && - ["canvas/", "cards/", "icons/", "sounds/", "toolclips/", "ui/"].some(prefix => path.startsWith(prefix)) + ["canvas/", "cards/", "docs/", "icons/", "nue/", "sounds/", "toolclips/", "ui/"].some(prefix => path.startsWith(prefix)) ) return true; return false;