-
-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from boltgolt/dev
Version 2.4.0
- Loading branch information
Showing
15 changed files
with
120 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
howdy (2.4.0) xenial; urgency=medium | ||
|
||
* Cameras are now selected by path instead of by video device number (thanks @Rhiyo!) | ||
* Added fallbacks to $EDITOR for the config command (thanks @yassineim!) | ||
* Fixed missing cv2 module after installation (thanks @bendandersen and many others!) | ||
* Fixed file permissions crashing Howdy in some cases (thanks @GJDitchfield!) | ||
* Fixed howdy using python3 from local virtual environment (thanks @EdwardJB!) | ||
|
||
-- boltgolt <[email protected]> Fri, 09 Nov 2018 20:59:45 +0100 | ||
|
||
howdy (2.3.1) xenial; urgency=high | ||
|
||
* Fixed issue where `frame_width` and `frame_height` would be completely ignored (thanks @janecz-n!) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,14 @@ Source: howdy | |
Section: misc | ||
Priority: optional | ||
Standards-Version: 3.9.7 | ||
Build-Depends: python, dh-python, devscripts, dh-make, debhelper | ||
Build-Depends: python, dh-python, devscripts, dh-make, debhelper, fakeroot | ||
Maintainer: boltgolt <[email protected]> | ||
Vcs-Git: https://github.com/boltgolt/howdy | ||
|
||
Package: howdy | ||
Homepage: https://github.com/boltgolt/howdy | ||
Architecture: all | ||
Depends: ${misc:Depends}, git, python3, python3-pip, python3-dev, python3-setuptools, build-essential, libpam-python, fswebcam, libopencv-dev, python-opencv, cmake | ||
Depends: ${misc:Depends}, git, python3, python3-pip, python3-dev, python3-setuptools, libpam-python, fswebcam, libopencv-dev, python-opencv, cmake, streamer | ||
Description: Howdy: Windows Hello style authentication for Linux. | ||
Use your built-in IR emitters and camera in combination with face recognition | ||
to prove who you are. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# W: Don't require ugly linebreaks in last 5 chars | ||
howdy: debian-changelog-line-too-long | ||
|
||
# E: Allows the name Howdy to show up in Ubuntu updater | ||
howdy: description-starts-with-package-name | ||
# E: Allows python for installation scripts | ||
howdy: unknown-control-interpreter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,3 @@ include /usr/share/dpkg/default.mk | |
|
||
%: | ||
dh $@ | ||
|
||
binary: | ||
dh binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
# Open the config file in gedit | ||
# Open the config file in an editor | ||
|
||
# Import required modules | ||
import os | ||
import time | ||
import subprocess | ||
|
||
# Let the user know what we're doing | ||
print("Opening config.ini in the default editor") | ||
|
||
# Open gedit as a subprocess and fork it | ||
subprocess.call(["/etc/alternatives/editor", os.path.dirname(os.path.realpath(__file__)) + "/../config.ini"]) | ||
# Default to the nano editor | ||
editor = "/bin/nano" | ||
|
||
# Use the user preferred editor if available | ||
if os.path.isfile("/etc/alternatives/editor"): | ||
editor = "/etc/alternatives/editor" | ||
elif "EDITOR" in os.environ: | ||
editor = os.environ["EDITOR"] | ||
|
||
# Open the editor as a subprocess and fork it | ||
subprocess.call([editor, os.path.dirname(os.path.realpath(__file__)) + "/../config.ini"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.