Skip to content

Commit

Permalink
manifest and changelog for 1.09d-r0
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippC committed Feb 5, 2022
1 parent ed234c8 commit 5028702
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/keepass2android/ChangeLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ public static void ShowChangeLog(Context ctx, Action onDismiss)
AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(ctx, Android.Resource.Style.ThemeHoloLightDialog));
builder.SetTitle(ctx.GetString(Resource.String.ChangeLog_title));
List<string> changeLog = new List<string>{
BuildChangelogString(ctx, Resource.Array.ChangeLog_1_09c, "1.09c"),
BuildChangelogString(ctx, Resource.Array.ChangeLog_1_09d, "1.09d"),
BuildChangelogString(ctx, Resource.Array.ChangeLog_1_09c, "1.09c"),
BuildChangelogString(ctx, Resource.Array.ChangeLog_1_09b, "1.09b"),
BuildChangelogString(ctx, Resource.Array.ChangeLog_1_09a, "1.09a"),
BuildChangelogString(ctx, Resource.Array.ChangeLog_1_08d, "1.08d"),
Expand Down
4 changes: 2 additions & 2 deletions src/keepass2android/Properties/AndroidManifest_net.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="185"
android:versionName="1.09c-r0"
android:versionCode="186"
android:versionName="1.09d-r0"
package="keepass2android.keepass2android"
xmlns:tools="http://schemas.android.com/tools"
android:installLocation="auto">
Expand Down
8 changes: 8 additions & 0 deletions src/keepass2android/Resources/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -844,6 +844,14 @@

<string name="CloseDbAfterFailedAttempts">Close database after three failed biometric unlock attempts.</string>
<string name="WarnFingerprintInvalidated">Warning! Biometric authentication can be invalidated by Android, e.g. after adding a new fingerprint in your device settings. Make sure you always know how to unlock with your master password!</string>


<string-array name="ChangeLog_1_09d">
<item>Added support for viewing, removing and restoring of entry backups</item>
<item>Implemented support for MEGA cloud storage</item>
<item>Added support for Google Drive with restricted scope</item>
</string-array>

<string-array name="ChangeLog_1_09c">
<item>Re-implemented Google Drive authentication, re-enabled Google Drive support</item>
</string-array>
Expand Down

0 comments on commit 5028702

Please sign in to comment.