Skip to content

Commit

Permalink
Added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
boltgolt committed Jan 6, 2019
1 parent 77fd423 commit c3649dc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
howdy (2.5.0) xenial; urgency=medium

* Added FFmpeg and v4l2 recorders (thanks @timwelch!)
* Added automatic PAM inclusion on installation
* Added optional notice on detection attempt (thanks @mrkmg!)
* Added support for grayscale frame encoding (thanks @dmig and @sapjunior!)
* Massively improved recognition speed (thanks @dmig!)
* Fixed typo in "timout" config value
* Removed unneeded dependencies (thanks @dmig!)

-- boltgolt <[email protected]> Sun, 06 Jan 2019 14:37:41 +0100

howdy (2.4.0) xenial; urgency=medium

* Cameras are now selected by path instead of by video device number (thanks @Rhiyo!)
Expand Down
4 changes: 2 additions & 2 deletions src/cli/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
config = configparser.ConfigParser()
config.read(path + "/../config.ini")

if config.get("video", "recording_plugin") == "ffmpeg":
print("Howdy has been configured to use ffmpeg as recorder, which doesn't support the test command yet")
if config.get("video", "recording_plugin") != "opencv":
print("Howdy has been configured to use a recorder which doesn't support the test command yet")
print("Aborting")
sys.exit(12)

Expand Down
2 changes: 1 addition & 1 deletion src/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[core]
# Print that face detection is being attempted
show_detection_attempt = false
detection_notice = false

# Do not print anything when a face verification succeeds
no_confirmation = false
Expand Down
2 changes: 1 addition & 1 deletion src/pam.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def doAuth(pamh):
sys.exit(0)

# Alert the user that we are doing face detection
if config.get("core", "show_detection_attempt") == "true":
if config.get("core", "detection_notice") == "true":
pamh.conversation(pamh.Message(pamh.PAM_TEXT_INFO, "Attempting face detection"))

# Run compare as python3 subprocess to circumvent python version and import issues
Expand Down

0 comments on commit c3649dc

Please sign in to comment.