├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── LICENSE ├── ReadMe.md ├── ReleaseNotes.md ├── WinHelloUnlock.sln └── WinHelloUnlock ├── LICENSE ├── Library.cs ├── OptionsPanel.Designer.cs ├── OptionsPanel.cs ├── OptionsPanel.resx ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── Resources └── windows-hello16x16.png ├── Screenshots ├── Confirmation.png ├── FirstPrompt.png ├── Options.png ├── ToUnlock.png └── WinHello.png ├── UWPLibrary.cs ├── WinHelloUnlock.csproj ├── WinHelloUnlockExt.cs └── keepass.version /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/ReadMe.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /WinHelloUnlock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock.sln -------------------------------------------------------------------------------- /WinHelloUnlock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/LICENSE -------------------------------------------------------------------------------- /WinHelloUnlock/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Library.cs -------------------------------------------------------------------------------- /WinHelloUnlock/OptionsPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/OptionsPanel.Designer.cs -------------------------------------------------------------------------------- /WinHelloUnlock/OptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/OptionsPanel.cs -------------------------------------------------------------------------------- /WinHelloUnlock/OptionsPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/OptionsPanel.resx -------------------------------------------------------------------------------- /WinHelloUnlock/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinHelloUnlock/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WinHelloUnlock/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Properties/Resources.resx -------------------------------------------------------------------------------- /WinHelloUnlock/Resources/windows-hello16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Resources/windows-hello16x16.png -------------------------------------------------------------------------------- /WinHelloUnlock/Screenshots/Confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Screenshots/Confirmation.png -------------------------------------------------------------------------------- /WinHelloUnlock/Screenshots/FirstPrompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Screenshots/FirstPrompt.png -------------------------------------------------------------------------------- /WinHelloUnlock/Screenshots/Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Screenshots/Options.png -------------------------------------------------------------------------------- /WinHelloUnlock/Screenshots/ToUnlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Screenshots/ToUnlock.png -------------------------------------------------------------------------------- /WinHelloUnlock/Screenshots/WinHello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/Screenshots/WinHello.png -------------------------------------------------------------------------------- /WinHelloUnlock/UWPLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/UWPLibrary.cs -------------------------------------------------------------------------------- /WinHelloUnlock/WinHelloUnlock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/WinHelloUnlock.csproj -------------------------------------------------------------------------------- /WinHelloUnlock/WinHelloUnlockExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelelz/WinHelloUnlock/HEAD/WinHelloUnlock/WinHelloUnlockExt.cs -------------------------------------------------------------------------------- /WinHelloUnlock/keepass.version: -------------------------------------------------------------------------------- 1 | : 2 | WinHelloUnlock:1.6.1 3 | : --------------------------------------------------------------------------------