Compare commits

..

No commits in common. "fa9aa2e1741642bc9563fb64eccb284031e9aa38" and "a31c976f388b2c02c61128ae57d62111c63312d3" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View file

@ -2,6 +2,6 @@
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver2"
version = "0.5.1"
version = "0.5.0"
update_changelog_on_bump = true
major_version_zero = true

View file

@ -1,9 +1,3 @@
## 0.5.1 (2025-06-17)
### Fix
- **csv output**: add missing frame width and height headers
## 0.5.0 (2025-06-16)
### Feat

View file

@ -291,7 +291,7 @@ func analyzeFramePersistence(videoPath string, tolerance uint64, csvOutput strin
csvWriter = csv.NewWriter(csvFile)
defer csvWriter.Flush()
err = csvWriter.Write([]string{"frame", "average_fps", "frame_time", "unique_frame_count", "real_frame_time", "frame_width", "frame_height"})
err = csvWriter.Write([]string{"frame", "average_fps", "frame_time", "unique_frame_count", "real_frame_time"})
if err != nil {
return fmt.Errorf("failed to write CSV header: %v", err)
}