Ready for next release

This commit is contained in:
boltgolt 2018-11-09 21:09:59 +01:00
parent aaa4a8a311
commit 6b38d6dcf1
No known key found for this signature in database
GPG key ID: BECEC9937E1AAE26
2 changed files with 15 additions and 4 deletions

View file

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

10
debian/changelog vendored
View file

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