Skip to content

Commit

Permalink
Prepare files for v1.0.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Breakthrough committed Jan 12, 2017
1 parent b393c31 commit 6943123
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# DVR-Scan
:vhs: Tool for extracting scenes with motion from security camera/DVR footage. Written in Python, depends on OpenCV.

**Latest Release:** [v1.0 (January 11, 2017)](http://dvr-scan.readthedocs.io/en/latest/changelog/)
**Latest Release:** [v1.0.1 (January 12, 2017)](http://dvr-scan.readthedocs.io/en/latest/changelog/)

------------------------------------------------

Expand Down
6 changes: 5 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@

<h2>DVR-Scan Changelog</h2>

### 1.0 (January 11, 2017)
### 1.0.1 (2017-01-12)

* [bugfix] fixed bug when running under Python 2.7

### 1.0 (2017-01-11)

* [feature] detects motion events with configurable sensitivity and noise removal thresholds
* [feature] output events to individual video files, or as a single-file compilation
Expand Down
6 changes: 3 additions & 3 deletions docs/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ DVR-Scan is completely free software, and can be downloaded from the links below
### Source (All Platforms, Requires Python) &nbsp; <span class="wy-text-neutral"><span class="fa fa-windows"></span> &nbsp; <span class="fa fa-linux"></span> &nbsp; <span class="fa fa-apple"></span></span>

<div class="important">
<h3 class="wy-text-neutral"><span class="fa fa-forward wy-text-info"></span> Latest Release: <b class="wy-text-neutral">v1.0</b></h3>
<h4 class="wy-text-neutral"><span class="fa fa-calendar wy-text-info"></span>&nbsp; Release Date:&nbsp; <b>January 11, 2017</b></h4>
<a href="https://github.com/Breakthrough/DVR-Scan/archive/v1.0.zip" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Download</b>&nbsp;&nbsp;.zip</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="https://github.com/Breakthrough/DVR-Scan/archive/v1.0.tar.gz" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Download</b>&nbsp;&nbsp;.tar.gz</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../guide/installing/" class="btn btn-warning" style="margin-bottom:8px;" role="button"><span class="fa fa-gear"></span>&nbsp; <b>Installation</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../guide/examples/" class="btn btn-danger" style="margin-bottom:8px;" role="button"><span class="fa fa-book"></span>&nbsp; <b>Getting Started</b></a>
<h3 class="wy-text-neutral"><span class="fa fa-forward wy-text-info"></span> Latest Release: <b class="wy-text-neutral">v1.0.1</b></h3>
<h4 class="wy-text-neutral"><span class="fa fa-calendar wy-text-info"></span>&nbsp; Release Date:&nbsp; <b>January 12, 2017</b></h4>
<a href="https://github.com/Breakthrough/DVR-Scan/archive/v1.0.1.zip" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Download</b>&nbsp;&nbsp;.zip</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="https://github.com/Breakthrough/DVR-Scan/archive/v1.0.1.tar.gz" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Download</b>&nbsp;&nbsp;.tar.gz</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../guide/installing/" class="btn btn-warning" style="margin-bottom:8px;" role="button"><span class="fa fa-gear"></span>&nbsp; <b>Installation</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="../guide/examples/" class="btn btn-danger" style="margin-bottom:8px;" role="button"><span class="fa fa-book"></span>&nbsp; <b>Getting Started</b></a>
</div>

See the section [Installing & Updating](guide/installing.md) for instructions on installing DVR-Scan and the required system dependencies.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h4 class="wy-text-info">Find and extract motion events in videos.</h4>

<div class="important">
<h3 class="wy-text-neutral"><span class="fa fa-info-circle wy-text-info"></span>&nbsp; Latest Release: <b>v1.0</b> (January 11, 2017)</h3>
<h3 class="wy-text-neutral"><span class="fa fa-info-circle wy-text-info"></span>&nbsp; Latest Release: <b>v1.0.1</b> (January 12, 2017)</h3>
<a href="download/" class="btn btn-info" style="margin-bottom:8px;" role="button"><span class="fa fa-download"></span>&nbsp; <b>Download</b>&nbsp;&nbsp;(all platforms)</a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="guide/installing/" class="btn btn-success" style="margin-bottom:8px;" role="button"><span class="fa fa-gear"></span>&nbsp; <b>Installation</b></a> &nbsp;&nbsp;&nbsp;&nbsp; <a href="guide/examples/" class="btn btn-warning" style="margin-bottom:8px;" role="button"><span class="fa fa-book"></span>&nbsp; <b>Getting Started</b></a>
</div>

Expand Down
2 changes: 1 addition & 1 deletion dvr_scan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@


# Used for module identification and when printing copyright & version info.
__version__ = 'v1.0'
__version__ = 'v1.0.1'

# About & copyright message string shown for the -v/--version CLI argument.
ABOUT_STRING = """-----------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_requires():

setup(
name='DVR-Scan',
version='1.0',
version='1.0.1',
description="Tool for finding and extracting motion events in video files (e.g. security camera footage).",
long_description=open('package-info.rst').read(),
author='Brandon Castellano',
Expand Down

0 comments on commit 6943123

Please sign in to comment.