Cleanup, signing and update of internals.

This commit is contained in:
2025-12-15 00:32:53 +00:00
parent 2d9c28657b
commit 100251b896
19 changed files with 439 additions and 313 deletions
+1 -1
View File
@@ -146,7 +146,7 @@ func parseVersion(v string) []int {
for _, p := range parts {
var num int
_, _ = fmt.Sscanf(p, "%d", &num)
_, _ = fmt.Sscanf(p, "%d", &num) // Error intentionally ignored - non-numeric parts become 0
result = append(result, num)
}