Added changelog

This commit is contained in:
boltgolt 2019-01-06 16:04:57 +01:00
parent 77fd423df9
commit c3649dca3a
No known key found for this signature in database
GPG key ID: BECEC9937E1AAE26
4 changed files with 16 additions and 4 deletions

12
debian/changelog vendored
View file

@ -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 <boltgolt@gmail.com> 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!)

View file

@ -15,8 +15,8 @@ path = os.path.dirname(os.path.abspath(__file__))
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)

View file

@ -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

View file

@ -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