diff --git a/README.md b/README.md index 774b790..e295ae0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # ![DVR-Scan Logo](https://raw.githubusercontent.com/Breakthrough/DVR-Scan/master/docs/img/dvr-scan-logo_small.png) :vhs: Tool for extracting scenes with motion from security camera/DVR footage. Written in Python, depends on OpenCV. -**Latest Release:** [v1.5 (July 30, 2022)](http://dvr-scan.readthedocs.io/en/latest/changelog/) +**Latest Release:** [v1.5.1 (August 15, 2022)](http://dvr-scan.readthedocs.io/en/latest/changelog/) ------------------------------------------------ diff --git a/dist/.version_info b/dist/.version_info index 1c8d80a..477a7a4 100644 --- a/dist/.version_info +++ b/dist/.version_info @@ -6,8 +6,8 @@ VSVersionInfo( ffi=FixedFileInfo( # filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4) # Set not needed items to zero 0. -filevers=(0, 1, 5, 0), -prodvers=(0, 1, 5, 0), +filevers=(0, 1, 5, 1), +prodvers=(0, 1, 5, 1), # Contains a bitmask that specifies the valid bits 'flags'r mask=0x3f, # Contains a bitmask that specifies the Boolean attributes of the file. @@ -31,12 +31,12 @@ StringFileInfo( u'040904B0', [StringStruct(u'CompanyName', u'github.com/Breakthrough'), StringStruct(u'FileDescription', u'dvr-scan.readthedocs.io'), - StringStruct(u'FileVersion', u'v1.5'), + StringStruct(u'FileVersion', u'v1.5.1'), StringStruct(u'InternalName', u'DVR-Scan'), StringStruct(u'LegalCopyright', u'Copyright © 2022 Brandon Castellano'), StringStruct(u'OriginalFilename', u'dvr-scan.exe'), StringStruct(u'ProductName', u'DVR-Scan'), - StringStruct(u'ProductVersion', u'v1.5')]) + StringStruct(u'ProductVersion', u'v1.5.1')]) ]), VarFileInfo([VarStruct(u'Translation', [1033, 1200])]) ] diff --git a/docs/changelog.md b/docs/changelog.md index f012796..686a549 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,13 +4,14 @@ DVR-Scan Changelog ## DVR-Scan 1.5 -### 1.5.1 (TBD)   +### 1.5.1 (August 15, 2022)   -#### Release Notes +#### Changelog * [bugfix] Fix crash when opening multiple input videos ([#95](https://github.com/Breakthrough/DVR-Scan/issues/95)) * [bugfix] Fix incorrect warning regarding frame decode failures at end of video + ### 1.5 (July 30, 2022) #### Release Notes @@ -71,6 +72,7 @@ DVR-Scan Changelog #### Known Issues + * Attempting to open multiple input videos will cause DVR-Scan to crash, fixed in v1.5.1 ([#95](https://github.com/Breakthrough/DVR-Scan/issues/95)) * Variable framerate videos (VFR) are not fully supported, and will yield incorrect timestamps ([#20](https://github.com/Breakthrough/DVR-Scan/issues/20)) * Video output when using frame skip and `-m opencv` (default output mode) will result in frames missing from the exported videos ([#81](https://github.com/Breakthrough/DVR-Scan/issues/81)) * Use `-m ffmpeg` or `-m copy` as a workaround diff --git a/docs/download.md b/docs/download.md index 76615b2..6254b44 100644 --- a/docs/download.md +++ b/docs/download.md @@ -24,19 +24,19 @@ DVR-Scan is available via `pip` as [the `dvr-scan` package](https://pypi.org/pro ### Windows Build (64-bit Only)  
-

Latest Release: v1.5

-

  Release Date:  July 30, 2022

-  Installer MSI        Portable ZIP        Nvidia CUDA® Build (Experimental)        Getting Started +

Latest Release: v1.5.1

+

  Release Date:  August 15, 2022

+  Installer MSI        Portable ZIP        Nvidia CUDA® Build (Experimental)        Getting Started
-Due to a change in the installer format, you must uninstall previous versions of DVR-Scan before installing v1.5. Windows builds including Nvidia CUDA® support are experimental, and are not code signed. +Due to a change in the installer format, you must uninstall previous versions of DVR-Scan before installing v1.5.1. Windows builds including Nvidia CUDA® support are experimental, and are not code signed. ### Python Distribution      
-

Latest Release: v1.5

-

  Release Date:  July 30, 2022

-  Wheel  .whl        Source  .tar.gz        Getting Started +

Latest Release: v1.5.1

+

  Release Date:  August 15, 2022

+  Wheel  .whl        Source  .tar.gz        Getting Started
To install from source, download and extract the latest release to a location of your choice, and make sure you have the appropriate [system requirements](guide/installing.md) installed before continuing. DVR-Scan can be built by running the following command: diff --git a/docs/index.md b/docs/index.md index 26a6aa1..8a9817b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,7 +2,7 @@

Find and extract motion events in videos.

-

  Latest Release: v1.5 (July 30, 2022)

+

  Latest Release: v1.5.1 (August 15, 2022)

  Download        Installation        Getting Started
diff --git a/dvr_scan/__init__.py b/dvr_scan/__init__.py index 7e04661..b8cf3c2 100644 --- a/dvr_scan/__init__.py +++ b/dvr_scan/__init__.py @@ -45,7 +45,7 @@ from dvr_scan.scanner import ScanContext # Used for module/distribution identification. -__version__ = 'v1.5' +__version__ = 'v1.5.1' def get_license_info() -> str: