diff -Nru ifetch-tools-0.15.26c/debian/changelog ifetch-tools-0.15.26d/debian/changelog --- ifetch-tools-0.15.26c/debian/changelog 2017-06-06 07:59:28.000000000 +0000 +++ ifetch-tools-0.15.26d/debian/changelog 2017-11-07 20:47:36.000000000 +0000 @@ -1,3 +1,23 @@ +ifetch-tools (0.15.26d-1) unstable; urgency=medium + + [ Richard Nelson ] + * Allow for adjusting playback speed at all times on + templates/CameraHistoryPlayback. + * Drop tabs for 2 space indention on htdocs/style.css. + * Add some radius to tables in htdocs/style.css. + * Improve html presentation on Archive and Live templates. + * Adjust floating nav with border-radius on templates/CameraHistory. + * Bump version to 0.15.26d for next release. + * Improve presentation of default htdocs/index.html. + * Bump Standards-Version to 4.1.0 (no changes required). + * Adjust logo size on templates/LiveSingle. + * Finish unify of presentation on templates/LiveSingle. + * Drop /bin/sh to /bin/false shell on adduser call on + debian/ifetch-tools.postinst. + * Dropping libav-tools for ffmpeg on debian/control (Closes: #873193). + + -- Richard Nelson Tue, 07 Nov 2017 21:47:36 +0100 + ifetch-tools (0.15.26c-1) unstable; urgency=low [ Richard Nelson ] diff -Nru ifetch-tools-0.15.26c/debian/control ifetch-tools-0.15.26d/debian/control --- ifetch-tools-0.15.26c/debian/control 2016-10-09 14:11:18.000000000 +0000 +++ ifetch-tools-0.15.26d/debian/control 2017-09-28 16:33:31.000000000 +0000 @@ -3,12 +3,12 @@ Priority: optional Maintainer: Richard Nelson Build-Depends: debhelper (>= 9) -Standards-Version: 3.9.8 +Standards-Version: 4.1.0 Homepage: http://fyeox.com/ifetch-tools/ Package: ifetch-tools Architecture: all -Depends: ${misc:Depends}, adduser, libav-tools, lsb-base (>=3.0-6), ruby, ruby-rmagick, ruby-net-http-digest-auth +Depends: ${misc:Depends}, adduser, ffmpeg, lsb-base (>=3.0-6), ruby, ruby-rmagick, ruby-net-http-digest-auth Description: Collect, monitor, and view images from ip cameras A set of tools that can collect images from IP based cameras, monitor the collection process, and provide an interface to view the collected history. diff -Nru ifetch-tools-0.15.26c/debian/ifetch-tools.postinst ifetch-tools-0.15.26d/debian/ifetch-tools.postinst --- ifetch-tools-0.15.26c/debian/ifetch-tools.postinst 2015-03-02 15:02:32.000000000 +0000 +++ ifetch-tools-0.15.26d/debian/ifetch-tools.postinst 2017-09-14 00:55:22.000000000 +0000 @@ -15,7 +15,7 @@ if ! getent passwd "ifetch-tools" > /dev/null 2>&1 then # Add new user account - adduser --system --shell /bin/sh --disabled-password --home /dev/null --gecos 'ifetch-tools account' --group --quiet ifetch-tools + adduser --system --shell /bin/false --disabled-password --home /dev/null --gecos 'ifetch-tools account' --group --quiet ifetch-tools elif ! getent group "ifetch-tools" > /dev/null 2>&1 then # Add existing user to new new group diff -Nru ifetch-tools-0.15.26c/htdocs/index.html ifetch-tools-0.15.26d/htdocs/index.html --- ifetch-tools-0.15.26c/htdocs/index.html 2017-03-17 14:49:56.000000000 +0000 +++ ifetch-tools-0.15.26d/htdocs/index.html 2017-09-12 03:05:48.000000000 +0000 @@ -6,6 +6,17 @@


+ + + + + + +
+ +
+ Archive | Live | Monitor +
####################################################################################
# ifetch-tools is a set of tools that can collect images from ip based cameras, @@ -33,9 +44,7 @@

If you need $$ support or consulting on ifetch-tools you are welcome to email the author at unixabg@gmail.com , which may elect to provide support and consulting for a fee. On a paid solicitation please include a subject line of **pay-support-ifetch-tools** to ensure that your email will not be filtered.

- -

Live Cameras | Surveillance Archive | System Status

-

Updated on 20151021 by RJ Ent of FYEOX

+

Updated on 20170911 by RJ Ent of FYEOX

diff -Nru ifetch-tools-0.15.26c/htdocs/style.css ifetch-tools-0.15.26d/htdocs/style.css --- ifetch-tools-0.15.26c/htdocs/style.css 2017-03-17 14:49:56.000000000 +0000 +++ ifetch-tools-0.15.26d/htdocs/style.css 2017-09-11 22:16:05.000000000 +0000 @@ -1,7 +1,15 @@ body { - background-color: white; + background-color: white; } a { - color: black; + color: black; +} + +table { + border-radius: 25px; +} + +td { + border-radius: 25px; } diff -Nru ifetch-tools-0.15.26c/ifetch ifetch-tools-0.15.26d/ifetch --- ifetch-tools-0.15.26c/ifetch 2017-05-12 01:42:19.000000000 +0000 +++ ifetch-tools-0.15.26d/ifetch 2017-09-12 02:49:16.000000000 +0000 @@ -22,7 +22,7 @@ ############################################################################################## # Set the current version information. ############################################################################################## -VER = "0.15.26c" +VER = "0.15.26d" ############################################################################################## # The below should daemonize this code. diff -Nru ifetch-tools-0.15.26c/ifetch-tools-html-page/index.html ifetch-tools-0.15.26d/ifetch-tools-html-page/index.html --- ifetch-tools-0.15.26c/ifetch-tools-html-page/index.html 2017-05-12 01:58:57.000000000 +0000 +++ ifetch-tools-0.15.26d/ifetch-tools-html-page/index.html 2017-09-12 02:50:19.000000000 +0000 @@ -118,7 +118,7 @@
If you do not like the above opinions please email me for information to send a unit you want me to test. -

Current release - 0.15.26c

+

Current release - 0.15.26d

ifetch-tools information being tracked in Debian:

BTS (Bug Tracking System)
diff -Nru ifetch-tools-0.15.26c/templates/Archive ifetch-tools-0.15.26d/templates/Archive --- ifetch-tools-0.15.26c/templates/Archive 2017-03-17 14:49:56.000000000 +0000 +++ ifetch-tools-0.15.26d/templates/Archive 2017-09-12 02:23:27.000000000 +0000 @@ -18,19 +18,18 @@ - - - - - -
- -
Archive View -
- Archive Live Monitor -
- #{_DATE} #{_UPTIME} -
+ + + + + #{_DATE} + #{_UPTIME} +
+ (Archive) Live Monitor + + + + #{myTempRespond}
version: #{VER} diff -Nru ifetch-tools-0.15.26c/templates/CameraHistory ifetch-tools-0.15.26d/templates/CameraHistory --- ifetch-tools-0.15.26c/templates/CameraHistory 2017-03-17 14:49:56.000000000 +0000 +++ ifetch-tools-0.15.26d/templates/CameraHistory 2017-09-12 02:40:45.000000000 +0000 @@ -32,8 +32,9 @@ * Floating Div from http://www.javascript-fx.com ******************************************************** -->
#{myNavigation} diff -Nru ifetch-tools-0.15.26c/templates/CameraHistoryPlayback ifetch-tools-0.15.26d/templates/CameraHistoryPlayback --- ifetch-tools-0.15.26c/templates/CameraHistoryPlayback 2017-05-09 02:32:43.000000000 +0000 +++ ifetch-tools-0.15.26d/templates/CameraHistoryPlayback 2017-06-17 02:32:53.000000000 +0000 @@ -55,8 +55,6 @@ } function startSlideshow() { if(smode=="play") { - document.getElementById("slowDown").disabled=""; - document.getElementById("speedUp").disabled=""; document.getElementById("play").disabled="disabled"; document.getElementById("playRev").disabled="disabled"; document.getElementById("pause").disabled=""; @@ -77,8 +75,6 @@ window.open(nextURLPlayback, "showframe"); } } else if(smode=="playRev") { - document.getElementById("slowDown").disabled=""; - document.getElementById("speedUp").disabled=""; document.getElementById("play").disabled="disabled"; document.getElementById("playRev").disabled="disabled"; document.getElementById("pause").disabled=""; @@ -97,8 +93,6 @@ i--; } else if(smode=="pause") { document.getElementById("pause").disabled="disabled"; - document.getElementById("slowDown").disabled="disabled"; - document.getElementById("speedUp").disabled="disabled"; document.getElementById("play").disabled=""; document.getElementById("play").value="Resume Forward"; document.getElementById("playRev").disabled=""; @@ -109,8 +103,6 @@ document.getElementById("playRev").disabled=""; document.getElementById("playRev").value="Play Backward"; document.getElementById("pause").disabled="disabled"; - document.getElementById("slowDown").disabled="disabled"; - document.getElementById("speedUp").disabled="disabled"; document.getElementById("stop").disabled="disabled"; document.getElementById("slideshow").src=myImages[0]; i=0; @@ -124,9 +116,9 @@
- + - +

diff -Nru ifetch-tools-0.15.26c/templates/Live ifetch-tools-0.15.26d/templates/Live --- ifetch-tools-0.15.26c/templates/Live 2017-03-17 14:49:56.000000000 +0000 +++ ifetch-tools-0.15.26d/templates/Live 2017-09-12 02:18:51.000000000 +0000 @@ -18,19 +18,18 @@ - - - - - -
- -
Live View -
- Archive Live Monitor -
- #{_DATE} #{_UPTIME} -
+ + + + + #{_DATE} + #{_UPTIME} +
+ Archive (Live) Monitor + + + + #{myTempRespond}
version: #{VER} diff -Nru ifetch-tools-0.15.26c/templates/LiveSingle ifetch-tools-0.15.26d/templates/LiveSingle --- ifetch-tools-0.15.26c/templates/LiveSingle 2017-03-17 14:49:56.000000000 +0000 +++ ifetch-tools-0.15.26d/templates/LiveSingle 2017-09-13 02:37:01.000000000 +0000 @@ -22,19 +22,20 @@ - - - - - -
- -
Cam #{cameraName} #{image_alt} -
- Archive Live Monitor -
- #{_DATE} #{_UPTIME} -
+ + + + + #{_DATE} + #{_UPTIME} +
+ Cam #{cameraName} #{image_alt} +
+ Archive Live Monitor + + + + #{myTempRespond}
version: #{VER} diff -Nru ifetch-tools-0.15.26c/wwwifetch ifetch-tools-0.15.26d/wwwifetch --- ifetch-tools-0.15.26c/wwwifetch 2017-05-12 01:42:29.000000000 +0000 +++ ifetch-tools-0.15.26d/wwwifetch 2017-09-12 02:49:39.000000000 +0000 @@ -23,7 +23,7 @@ # Set some variables. ############################################################################################## # Version number -VER = "0.15.26c" +VER = "0.15.26d" ############################################################################################## # Set some options to ensure memory management.