From 414c3a0e75decdaa846476dfb47f173b49117cf0 Mon Sep 17 00:00:00 2001 From: boltgolt Date: Mon, 22 Jun 2020 18:37:08 +0200 Subject: [PATCH] Ready for 2.6.0 --- debian/changelog | 24 ++++++++++++++++++++++++ src/cli.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 338f9d4..00d388b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,27 @@ +howdy (2.6.0) xenial; urgency=medium + +* Added new options to capture a snapshot of failed or even successful logins +* Added command that creates a new snapshot and saves it +* Added version command +* Added question to automatically set certainty value on installation +* Added automatic logging to system-wide auth.log +* Added clearer feedback when login is rejected due to dark frames (thanks @andrewmv!) +* Refactored video capture logic (thanks @AnthonyWharton!) +* Reordered the editor priorities for the config command +* Fixed gstreamer warnings showing up in console (thanks @ajnart!) +* Fixed issue where add command would never end +* Fixed test command overlay not being in color (thanks @PetePriority!) +* Fixed typo preventing timeout config option from working (thanks @Ajayneethikannan!) +* Fixed old numpy installation failure (thanks @rushabh-v!) +* Fixed issue where no PAM response would be returned +* Fixed CLAHE not being applied equally to all video commands (thanks @PetePriority!) +* Fixed an incorrect suggested command (thanks @TheButlah!) +* Fixed missing release method in video capture class +* Removed deprecated dlib flags (thanks @rhysperry111!) +* Removed streamer as a required dependency + + -- boltgolt Mon, 22 Jun 2020 16:11:46 +0200 + howdy (2.5.1) xenial; urgency=medium * Removed dismiss_lockscreen as it could lock users out of their system (thanks @ujjwalbe, @ju916 and many others!) diff --git a/src/cli.py b/src/cli.py index 29dadac..863ac25 100755 --- a/src/cli.py +++ b/src/cli.py @@ -108,4 +108,4 @@ elif args.command == "snapshot": elif args.command == "test": import cli.test else: - print("Howdy 2.5.1") + print("Howdy 2.6.0")