Skip to content

Commit

Permalink
Version 4.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-Dave committed Aug 21, 2024
1 parent 38ebb5e commit ae152ad
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 12 deletions.
8 changes: 8 additions & 0 deletions doc/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Summary of changes for version 4.7.0 are below
* Documentation updates
* Remove outdated MMAL camera source.
* Fix reaping of zombie processes from Motion.
* Allow for network cameras that are not completely standards compliant
* Fix v4l2M2M encoding.
* Fix fps conversion specifier.
* Allow for large date time and event numbers.
Summary of changes for version 4.6.0 are below
* Documentation updates
* Fix segfault on vaapi decoding
Expand Down
26 changes: 17 additions & 9 deletions doc/motion_guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ <h3><a name="Comparison"></a>Comparison Of Motion vs MotionPlus</h3>
</thead>
<tbody>
<tr>
<td bgcolor="#edf4f9" word-wrap:break-word >Limited</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Feature Enhancements</td>
<td bgcolor="#edf4f9" word-wrap:break-word >None</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Enhancements</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Yes</td>
</tr>
<tr>
Expand Down Expand Up @@ -142,7 +142,7 @@ <h3><a name="Comparison"></a>Comparison Of Motion vs MotionPlus</h3>
</tr>
<tr>
<td bgcolor="#edf4f9" word-wrap:break-word >-</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Direct libcamera support</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Pi camera controls</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Yes</td>
</tr>
<tr>
Expand All @@ -157,12 +157,16 @@ <h3><a name="Comparison"></a>Comparison Of Motion vs MotionPlus</h3>
</tr>
<tr>
<td bgcolor="#edf4f9" word-wrap:break-word >-</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Download/Play movies via web page</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Yes</td>
</tr>
<tr>
<td bgcolor="#edf4f9" word-wrap:break-word >-</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Add/Delete cameras via web page</td>
<td bgcolor="#edf4f9" word-wrap:break-word >Enhanced webcontrol<ul>
<li> Download/Play movies</li>
<li> Ability to change configuration parameters</li>
<li> Optional user developed web page</li>
<li> Add/delete cameras</li>
<li> Consolidated single image stream of all cameras</li>
<li> MpegTS video stream feeds</li>
<li> Execution of custom events/actions</li>
<li> Live feed of Motionplus log messages</li>
</ul></td>
<td bgcolor="#edf4f9" word-wrap:break-word >Yes</td>
</tr>
<tr>
Expand Down Expand Up @@ -199,6 +203,10 @@ <h3><a name="Prior"></a>Documentation For Prior Releases</h3>
</tr>
</thead>
<tbody>
<tr>
<td word-wrap:break-word > <a href="4.6.0/motion_config.html"> Version 4.6.0</a> </td>
<td word-wrap:break-word > <a href="mp0.1.0/motionplus_config.html"> Version 0.2.0</a></td>
</tr>
<tr>
<td word-wrap:break-word > <a href="4.5.1/motion_config.html"> Version 4.5.1</a> </td>
<td word-wrap:break-word > <a href="mp0.1.0/motionplus_config.html"> Version 0.1.0</a></td>
Expand Down
6 changes: 3 additions & 3 deletions scripts/version.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
BASE_VERSION="4.6.0"
BASE_VERSION="4.7.0"
if [ -d .git ]; then
if test "`git diff --name-only`" = "" ; then
GIT_COMMIT="git"
Expand All @@ -13,6 +13,6 @@ if [ -d .git ]; then
else
GIT_COMMIT="gitUNKNOWN"
fi
#printf "$BASE_VERSION"
printf "$BASE_VERSION+$GIT_COMMIT"
printf "$BASE_VERSION"
#printf "$BASE_VERSION+$GIT_COMMIT"

0 comments on commit ae152ad

Please sign in to comment.