From 6b38d6dcf1687fdf06992db429999c5e56af7c6d Mon Sep 17 00:00:00 2001 From: boltgolt Date: Fri, 9 Nov 2018 21:09:59 +0100 Subject: [PATCH] Ready for next release --- .travis.yml | 9 +++++---- debian/changelog | 10 ++++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01542b6..e3eb3ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,14 +8,15 @@ script: # Install the binary, running the debian scripts in the process - sudo apt install ../*.deb -y + # Confirm the cv2 module has been installed correctly + - sudo /usr/bin/env python3 -c "import cv2; print(cv2.__version__);" + # Confirm the face_recognition module has been installed correctly + - sudo /usr/bin/env python3 -c "import face_recognition; print(face_recognition.__version__);" + # Check if the username passthough works correctly with sudo - 'howdy | ack-grep --passthru --color "current active user: travis"' - 'sudo howdy | ack-grep --passthru --color "current active user: travis"' - - echo "import face_recognition; print(face_recognition.__version__);" > /tmp/h.py - - sudo /usr/bin/env python3 /tmp/h.py - - sudo howdy test - # Remove howdy from the installation - sudo apt purge howdy -y diff --git a/debian/changelog b/debian/changelog index 2c54122..3c22e93 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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!)