Merge branch 'master' of https://github.com/PhilippC/keepass2android
This commit is contained in:
@@ -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" />
|
||||
|
||||
@@ -695,8 +695,11 @@ namespace keepass2android
|
||||
{
|
||||
_keepPasswordInOnResume = true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
App.Kp2a.RegisterOpenAttempt(_ioConnection);
|
||||
|
||||
SetContentView(Resource.Layout.password);
|
||||
|
||||
InitializeToolbar();
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user