Skip to content

Commit c06e8ab

Browse files
committed
changelog and manifest for 1.15-pre0
1 parent 47ae971 commit c06e8ab

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

src/keepass2android-app/ChangeLog.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public static void ShowChangeLog(Context ctx, Action onDismiss)
3131
MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder(ctx);
3232
builder.SetTitle(ctx.GetString(Resource.String.ChangeLog_title));
3333
List<string> changeLog = new List<string>{
34-
35-
BuildChangelogString(ctx, new List<int>
34+
BuildChangelogString(ctx, new List<int>{Resource.Array.ChangeLog_1_15}, "1.15"),
35+
BuildChangelogString(ctx, new List<int>
3636
{
3737
Resource.Array.ChangeLog_1_14,
3838
#if !NoNet

src/keepass2android-app/Manifests/AndroidManifest_net.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
android:versionCode="240"
4-
android:versionName="1.14-r1"
3+
android:versionCode="241"
4+
android:versionName="1.15-pre0"
55
package="keepass2android.keepass2android"
66
xmlns:tools="http://schemas.android.com/tools"
77
android:installLocation="auto">

src/keepass2android-app/Manifests/AndroidManifest_nonet.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
android:versionCode="240"
4-
android:versionName="1.14-r1"
3+
android:versionCode="241"
4+
android:versionName="1.15-pre0"
55
package="keepass2android.keepass2android_nonet"
66
xmlns:tools="http://schemas.android.com/tools"
77
android:installLocation="auto">

src/keepass2android-app/Resources/values/strings.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,11 @@
750750
<string name="cleartextTrafficPermitted_title">Allow clear-text network traffic in WebDav</string>
751751
<string name="cleartextTrafficPermitted_summary">HTTP connections are not secure. Only enable this if you have other security measures in place.</string>
752752

753+
<string-array name="ChangeLog_1_15">
754+
<item>Added background synchronization: Keepass2Android now uses the internal cache copy of the database for loading and saving to make these operations faster. After this, synchronization with the remote database is started. </item>
755+
<item>Added user preferences to control behavior of background synchronization. You can enable periodic background synchronization and control if synchronization should be performed always or only in Wi-Fi networks.</item>
756+
</string-array>
757+
753758
<string-array name="ChangeLog_1_14">
754759
<item>Update to .net 9 and Target SDK version 35. This comes with transparent status bar on Android 15 because edge-to-edge is now the default.</item>
755760
<item>Minor UI improvements</item>

0 commit comments

Comments
 (0)