Skip to content

Commit

Permalink
Bump release version to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jojje committed Sep 11, 2021
1 parent 38408b8 commit 4396e2b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Same base license as AviSynth; GNU GPL v2 or later.
Fork it at [github], hack away and send a pull request.

## Release notes
* 2.0.1 Fixes scene-change detection for single frame cycles. Now also allows the plugin to be used more than once in a script.
* 2.0.0 Adds multithreading support, scene detection. Fixes debug paint overflow. Removes "dm" option.
* 1.0.2 Fix bounds check on user input
* 1.0.1 Fix for invalid end-frame calculation
Expand Down
2 changes: 1 addition & 1 deletion SmoothSkip.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "CycleCache.h"
#include "FrameDiff.h"

#define VERSION "2.0.0"
#define VERSION "2.0.1"

class SmoothSkip : public GenericVideoFilter {
PClip altclip; // The super clip from MVTools2
Expand Down
12 changes: 6 additions & 6 deletions plugin.rc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
1 VERSIONINFO
FILEVERSION 2,0,0,0
PRODUCTVERSION 2,0,0,0
FILEVERSION 2,0,1,0
PRODUCTVERSION 2,0,1,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -17,11 +17,11 @@ BEGIN
BEGIN
VALUE "ProductName", "SmoothSkip"
VALUE "OriginalFilename", "SmoothSkip.dll"
VALUE "FileDescription", "AviSynth plugin to lessen sharp skips/jumps in clips"
VALUE "FileVersion", "2.0.0"
VALUE "ProductVersion", "2.0.0"
VALUE "FileDescription", "AviSynth plugin to lessen sharp skips/jumps/judder in clips"
VALUE "FileVersion", "2.0.1"
VALUE "ProductVersion", "2.0.1"
VALUE "InternalName", "SmoothSkip"
VALUE "LegalCopyright", "Copyright � 2019 Jonas Tingeborn"
VALUE "LegalCopyright", "Copyright � 2021 Jonas Tingeborn"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 4396e2b

Please sign in to comment.