Release v0.6.0

This commit is contained in:
Omni
2026-04-20 20:57:23 +01:00
parent 69fabb32e6
commit 2ff09a1448
144 changed files with 4841 additions and 1306 deletions

View File

@@ -221,7 +221,7 @@ class FileValidatorService:
def _validate(self, file_path: Path, expected_hash: str) -> ValidationResult:
try:
# No expected hash accept by filename match alone, just move the file.
# No expected hash - accept by filename match alone, just move the file.
if not (expected_hash or "").strip():
return ValidationResult(matches=True, computed_hash=None, file_path=file_path)
h = xxhash.xxh64() if xxhash else _XXH64Fallback()