Skip to content

Commit adba9ca

Browse files
Mr-DaveDevMr-Dave
authored andcommitted
CHANGELOG Update (#537)
Version 4.1
1 parent b103dc0 commit adba9ca

File tree

2 files changed

+33
-5
lines changed

2 files changed

+33
-5
lines changed

CHANGELOG

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
Summary of Changes
2-
2+
Version 4.1 Changes Below
3+
* Add flip_axis option
4+
* Add mask_privacy option
5+
* Add netcam_highres option
6+
* Add on_camera_found option
7+
* Add substream_port option
8+
* Add webcontrol_parms option
9+
* Rename ffmpeg_timelapse to timelapse_interval
10+
* Rename ffmpeg_timelapse_mode to timelapse_mode
11+
* Add timelapse_fps option
12+
* Add timelapse_codec option
13+
* Remove sdl_threadnr option
14+
* Remove v4l1 functionality
15+
* Add support for RTMP and additional v4l2 palette options
16+
* Add support for network cameras on macOSX
17+
* Add additional conversion specifiers
18+
* Add flood control for Motion log
19+
* Demote the ffmpeg log messages to INF level.
20+
* Additional reporting of configuration parms at the INF log level.
21+
* Remove debug messages at every frame
22+
* Report to log the IP of failed authentication attempts
23+
* Add option for output of images in WEBP format(via build option)
24+
* Added webcam on FreeBSD functionality/instructions.
25+
* Added functionality for v4l2 devices via the netcam modules
26+
* Refactoring of code for v4l2, netcam_rtsp, motion_loop, ffmpeg, configure.ac to assist future development.
27+
* Fix movie playback issues with timestamps.
28+
* Updated motion_guide.html, motion.1 documentation
329
Version 4.0 Changes Below
430
* PI Cam Support
531
* Web Interface fixes for preview, IPV6, HTML

version.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#!/bin/sh
2-
BASE_VERSION="4.0.1"
2+
BASE_VERSION="4.1"
33
if [ -d .git ]; then
4-
GIT_COMMIT=`git show -s --format=%h`
5-
printf "$BASE_VERSION+git$GIT_COMMIT"
4+
GIT_COMMIT=`git show -s --date=format:'%Y%m%d' --format=%cd-%h`
5+
printf "$BASE_VERSION"
6+
#printf "$BASE_VERSION+git$GIT_COMMIT"
67
else
7-
printf "$BASE_VERSION+gitUNKNOWN"
8+
printf "$BASE_VERSION"
9+
#printf "$BASE_VERSION+gitUNKNOWN"
810
fi

0 commit comments

Comments
 (0)