From 4396e2be89ec70f5acd21c52be328205617a9e9f Mon Sep 17 00:00:00 2001 From: Jonas Tingeborn Date: Sat, 11 Sep 2021 18:14:10 +0200 Subject: [PATCH] Bump release version to 2.0.1 --- Readme.md | 1 + SmoothSkip.h | 2 +- plugin.rc | 12 ++++++------ 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Readme.md b/Readme.md index ef711ae..cbb0e1e 100644 --- a/Readme.md +++ b/Readme.md @@ -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 diff --git a/SmoothSkip.h b/SmoothSkip.h index effc5e9..488c966 100644 --- a/SmoothSkip.h +++ b/SmoothSkip.h @@ -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 diff --git a/plugin.rc b/plugin.rc index 49ba61e..d32f119 100644 --- a/plugin.rc +++ b/plugin.rc @@ -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 @@ -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"