0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-19 09:51:19 +02:00

Merge pull request #37 from Boltgolt/dev

Version 2.2.2
This commit is contained in:
boltgolt 2018-05-11 11:13:26 +02:00 committed by GitHub
commit 961342a522
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
howdy (2.2.2) xenial; urgency=medium
* Fixed fetching of wrong config section (thanks @halcyoncheng and @arifeinberg!)
-- boltgolt <boltgolt@gmail.com> Fri, 11 May 2018 10:43:03 +0200
howdy (2.2.1) xenial; urgency=medium
* Added mechanism to keep config files between updates

View file

@ -82,7 +82,7 @@ insert_model = {
video_capture = cv2.VideoCapture(int(config.get("video", "device_id")))
# Force MJPEG decoding if true
if config.get("debug", "force_mjpeg") == "true":
if config.get("video", "force_mjpeg") == "true":
video_capture.set(cv2.CAP_PROP_FOURCC, 1196444237)
# Request a frame to wake the camera up

View file

@ -21,7 +21,7 @@ config.read(path + "/../config.ini")
video_capture = cv2.VideoCapture(int(config.get("video", "device_id")))
# Force MJPEG decoding if true
if config.get("debug", "force_mjpeg") == "true":
if config.get("video", "force_mjpeg") == "true":
video_capture.set(cv2.CAP_PROP_FOURCC, 1196444237)
# Let the user know what's up