Add faceid as a option to unlock vault#25
Merged
aaravmaloo merged 33 commits intomasterfrom Mar 14, 2026
Merged
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR changelog
To reduce friction, the below commits enable APM to use faceid instead of manually typing the master password. The feature was being worked on for quite a few weeks and has been thoroughly tested.
Building APM now has two options. building the binary with faceid enabled and normal.
This is because to reduce the amount of setup a contributor to APM needs to do. If this were not implemented, each contributor would have to setup OpenCV and goCV, just to compile and check if their additions work as intended. With tags, the developer can build a non-faceid enabled binary and test their features. If they are contributing to a feature of APM faceid, then they would have to setup OpenCV and goCV.
Though the end user only has to setup opencv for faceid to work.
The docs have also been updated.
Lastly, here are the build commands:
normal:
go build -o pm.exewith faceid:
go build -tags faceid -o pm.exeAlso this is a feature that can work on any platform and I just took faceid as it sounded cool! This works on windows, linux, and darwin.