Release 0.0.12

This commit is contained in:
2026-04-20 21:50:01 +00:00
parent 5472f72ba0
commit 7482685b61
3 changed files with 9 additions and 6 deletions

View File

@@ -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.11",
"version": "0.0.12",
"compatibility": {
"minimum": "13",
"verified": "13"

View File

@@ -95,9 +95,13 @@ function resolvePackageRelativeReference(rawValue, source) {
function dedupeReferences(references) {
const seen = new Set();
return references.filter(reference => {
const trailKey = Array.isArray(reference.sourceTrail)
? reference.sourceTrail.map(node => node.uuid ?? node.label ?? "").join(">")
: "";
const key = [
reference.sourceType,
reference.sourceLabel,
trailKey,
reference.normalized?.locator ?? "",
reference.rawValue
].join("|");

View File

@@ -86,7 +86,7 @@
.storage-audit__hero {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(14rem, 16rem);
grid-template-columns: minmax(0, 1fr);
gap: 1rem 1.25rem;
align-items: start;
}
@@ -124,6 +124,8 @@
gap: 0.75rem;
align-items: stretch;
min-width: 0;
width: 100%;
max-width: 18rem;
}
.storage-audit__actions .button {
@@ -293,12 +295,9 @@
}
@media (max-width: 1100px) {
.storage-audit__hero {
grid-template-columns: minmax(0, 1fr);
}
.storage-audit__actions {
width: 100%;
max-width: none;
}
}