Skip to content

Commit

Permalink
Manifest and changelog for 1.10-pre
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Crocoll committed Nov 21, 2023
1 parent d761f07 commit 2e9400c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/keepass2android/ChangeLog.cs
Expand Up @@ -27,6 +27,7 @@ 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_10, "1.10"),
BuildChangelogString(ctx, Resource.Array.ChangeLog_1_09e, "1.09e"),
BuildChangelogString(ctx, Resource.Array.ChangeLog_1_09d, "1.09d"),
BuildChangelogString(ctx, Resource.Array.ChangeLog_1_09c, "1.09c"),
Expand Down
4 changes: 2 additions & 2 deletions src/keepass2android/Properties/AndroidManifest_net.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="197"
android:versionName="1.09e-r7"
android:versionCode="198"
android:versionName="1.10-pre"
package="keepass2android.keepass2android"
xmlns:tools="http://schemas.android.com/tools"
android:installLocation="auto">
Expand Down
2 changes: 1 addition & 1 deletion src/keepass2android/Resources/values/config.xml
Expand Up @@ -39,7 +39,7 @@
<string name="default_file_path">/keepass/keepass.kdbx</string>
<string name="donate_url"><![CDATA[https://philipp.crocoll.net/donate.php?lang=%1$s&app=%2$s]]></string>
<string name="homepage">https://github.com/PhilippC/keepass2android</string>
<string name="further_author_names">Alex Vallat, Ben Rush, Matthieu, Wiktor Ławski, gilbsgilbs, Chih-Hsuan Yen, DDoSolitary, marcoDallas</string>
<string name="further_author_names">Alex Vallat, Ben Rush, Matthieu, Wiktor Ławski, gilbsgilbs, Chih-Hsuan Yen, DDoSolitary, marcoDallas, Rick Brown</string>
<string name="designer_names">Niki Hüttner (http://www.close-cut.de), Stefano Pignataro (http://www.spstudio.at)</string>
<string name="supporter_names">Arno Welzel, Sebastián Ramírez, A. Finkhäuser, Makoto Mizukami</string>
<string name="issues">https://github.com/PhilippC/keepass2android/issues</string>
Expand Down
9 changes: 9 additions & 0 deletions src/keepass2android/Resources/values/strings.xml
Expand Up @@ -715,6 +715,15 @@
<string name="EntryChannel_desc">Notification to simplify access to the currently selected entry.</string>
<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_10">
<item>Add support for notification permissions on Android 13+</item>
<item>Improve the FTP and SFTP implementation</item>
<item>Add access to full pCloud</item>
<item>Allow to select System language in the language dialog</item>
<item>Fix issue with remembering Keyfile + Challenge password type</item>
</string-array>

<string-array name="ChangeLog_1_09e">
<item>Bug fix to crashes and unexpected log-outs</item>
<item>Switch to new SFTP implementation, supporting modern public key algorithms such as rsa-sha2-256</item>
Expand Down

0 comments on commit 2e9400c

Please sign in to comment.