Skip to content

Commit

Permalink
Repository data for FFmpeg 7.0.1.
Browse files Browse the repository at this point in the history
The changelog entries in 7.0.1 are not prefixed with `-`, so we need an extra
regex to detect them.
  • Loading branch information
ayosec committed Jun 16, 2024
1 parent bd46032 commit 2bc3708
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified lib/ffdocs/data/ffmpeg.tar.zst
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/ffdocs/source_docs/changelog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def latest
case lines.next.chomp
when /\A\s*\Z/
break if items.size > 0
when /\A-(.*)/m
when /\A-(.*)/m, /\A^ (\S.*)/m
items << $1.strip
when /\A\s+(\S.*)/m
items.last << " " << $1.strip
Expand Down

0 comments on commit 2bc3708

Please sign in to comment.