feat: Sample Tag Viewer — read-only tag browser for AKAI disk images #17

Merged
david merged 5 commits from feat/sample-tag-editor into main 2026-06-22 18:13:53 +00:00
Showing only changes of commit 190c79487f - Show all commits
+1 -1
View File
@@ -236,7 +236,7 @@ func listTags(isoPath, part, volName string) ([]TagInfo, error) {
func parseTags(output string) []TagInfo { func parseTags(output string) []TagInfo {
reTag := regexp.MustCompile(`^\s*(\d+)\s+(\S.*)`) reTag := regexp.MustCompile(`^\s*(\d+)\s+(\S.*)`)
var tags []TagInfo tags := []TagInfo{}
inTags := false inTags := false
for _, line := range strings.Split(output, "\n") { for _, line := range strings.Split(output, "\n") {