This commit is contained in:
Philipp Crocoll
2018-12-09 08:23:18 +01:00
4 changed files with 13 additions and 5 deletions

View File

@@ -55,7 +55,7 @@
<ItemGroup>
<None Include="Jars\AboutJars.txt" />
<None Include="Additions\AboutAdditions.txt" />
<LibraryProjectZip Include="Jars\app-debug.aar" />
<LibraryProjectZip Include="Jars\app-release.aar" />
</ItemGroup>
<ItemGroup>
<TransformFile Include="Transforms\Metadata.xml" />

View File

@@ -695,8 +695,11 @@ namespace keepass2android
{
_keepPasswordInOnResume = true;
}
}
App.Kp2a.RegisterOpenAttempt(_ioConnection);
SetContentView(Resource.Layout.password);
InitializeToolbar();

View File

@@ -775,9 +775,8 @@
<string name="ShowKeyboardDuringFingerprintAuth">Show soft keyboard for password input when fingerprint scan is active.</string>
<string name="ChangeLog_1_07">
Version 1.07-pre1\n
!!! Caution! This release comes with major changes under the hood. Please report any undesired behavior changes to crocoapps@gmail.com !!!\n
* Allow to open more than one database, allow to move entries between databases\n
Version 1.07-pre2\n
* Allow to open more than one database, compatible to KeeAutoExec\n
* SFTP: Allow public key authentication, check if host key changed\n
* Introduce pCloud support - thanks to gilbsgilbs!\n
* Make Nextcloud support explicit\n

View File

@@ -361,7 +361,13 @@ namespace keepass2android
public HashSet<PwGroup> DirtyGroups { get { return dirty; } }
public bool AttemptedToOpenBefore(IOConnectionInfo ioc)
public void RegisterOpenAttempt(IOConnectionInfo ioc)
{
_openAttempts.Add(ioc);
}
public bool AttemptedToOpenBefore(IOConnectionInfo ioc)
{
foreach (var attemptedIoc in _openAttempts)
{