@@ -5,8 +5,38 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.1.0] - 2023-04-26
9
+
10
+ ### Added
11
+
12
+ - New Chapters will now be automatically muxed into the input file. The input file must be an MKV file.
13
+ - Implemented ` -k/--keyframes ` to only sync to Scene Changes on Key Frames.
14
+ - Chapters can now be sourced from a file as an alternative to loading them from the input video. This is
15
+ convenient when you don't want to use the chapters within the input video file, or if there's no chapters
16
+ within it. It supports both XML and Simple text formats.
17
+
18
+ ### Changed
19
+
20
+ - Replaced the debugging prints listing the before/after timestamp (in seconds) and the closest scene changes
21
+ with a Rich Table with information in a more readable format. Chapters that were removed because they matched
22
+ a previous chapter are now marked as such in the table.
23
+ - The new matroska chapters text data is no longer printed. It's now unnecessary to be printed as the new Rich
24
+ Table has all the information you need. If you still need to see the new chapters text, just open the saved
25
+ ` .retimed_chapters.txt ` file next to the input file.
26
+
27
+ ### Removed
28
+
29
+ - The ` -nr/--no-resync ` flag was removed as it didn't actually do anything or have purpose. It was intended to
30
+ stop resyncing chapters that were already synced to a Scene Change. However, the code never did this in the
31
+ first place nor do I want it to.
32
+
33
+ ### Fixed
34
+
35
+ - Fixed double-dot in the output chapters file (i.e. ` video..retimed_chapters.txt ` ).
36
+
8
37
## [ 1.0.0] - 2023-04-26
9
38
10
39
Initial release.
11
40
41
+ [ 1.1.0 ] : https://github.com/rlaphoenix/ChapSnap/releases/tag/v1.1.0
12
42
[ 1.0.0 ] : https://github.com/rlaphoenix/ChapSnap/releases/tag/v1.0.0
0 commit comments