Skip to content

Commit b8b4c22

Browse files
authored
Merge pull request #34 from Angelelz/TransparencyIssue
Fix #33
2 parents 1b88273 + d06b7ee commit b8b4c22

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

ReleaseNotes.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# [WinHelloUnlock v1.4](https://github.com/Angelelz/WinHelloUnlock/releases/tag/v1.4)
1+
# [WinHelloUnlock v1.4.1](https://github.com/Angelelz/WinHelloUnlock/releases/tag/v1.4.1)
22

3-
- Fix [#31](https://github.com/Angelelz/WinHelloUnlock/issues/31). Performing AutoType after unlocking the database with that goal.
4-
- Related to [#31](https://github.com/Angelelz/WinHelloUnlock/issues/31). Added option to Re-lock databases after unlocking them to perform AutoType.
3+
- Fix [#33](https://github.com/Angelelz/WinHelloUnlock/issues/33). Login window not visible when database without Hello-Access is detected.

WinHelloUnlock/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.4")]
36-
[assembly: AssemblyFileVersion("1.4")]
35+
[assembly: AssemblyVersion("1.4.1")]
36+
[assembly: AssemblyFileVersion("1.4.1")]

WinHelloUnlock/WinHelloUnlockExt.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,13 @@ private async void WindowAddedHandler(object sender, GwmWindowEventArgs e)
162162
else if (!await UWPLibrary.FirstTime(dbName))
163163
{
164164
MessageService.ShowInfo("This Database has credential data saved. Enable Windows Hello to use.");
165+
keyPromptForm.Opacity = 1;
166+
keyPromptForm.Visible = true;
167+
}
168+
else
169+
{
170+
keyPromptForm.Opacity = 1;
171+
keyPromptForm.Visible = true;
165172
}
166173
}
167174

WinHelloUnlock/keepass.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
:
2-
WinHelloUnlock:1.4
2+
WinHelloUnlock:1.4.1
33
:

0 commit comments

Comments
 (0)