Compare commits
3 Commits
feature/82
...
v1.14-pre0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f655a89be0 | ||
|
|
0d6f837578 | ||
|
|
8c61b028b7 |
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@@ -3,10 +3,9 @@ env:
|
|||||||
NAME: 'Release'
|
NAME: 'Release'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
# the workflow is always triggered manually. This allows to test the apks
|
||||||
tags:
|
# before publishing the release and not having a broken tag in the repo if that test fails.
|
||||||
- "v1.*"
|
workflow_dispatch:
|
||||||
workflow_dispatch: # Allows manual triggering of the workflow
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build-release:
|
build-release:
|
||||||
|
|||||||
@@ -31,6 +31,10 @@ namespace keepass2android
|
|||||||
MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder(ctx);
|
MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder(ctx);
|
||||||
builder.SetTitle(ctx.GetString(Resource.String.ChangeLog_title));
|
builder.SetTitle(ctx.GetString(Resource.String.ChangeLog_title));
|
||||||
List<string> changeLog = new List<string>{
|
List<string> changeLog = new List<string>{
|
||||||
|
#if !NoNet
|
||||||
|
BuildChangelogString(ctx, new List<int>{Resource.Array.ChangeLog_1_14_net}, "1.14"),
|
||||||
|
#endif
|
||||||
|
|
||||||
BuildChangelogString(ctx, new List<int>{Resource.Array.ChangeLog_1_13}, "1.13"),
|
BuildChangelogString(ctx, new List<int>{Resource.Array.ChangeLog_1_13}, "1.13"),
|
||||||
|
|
||||||
BuildChangelogString(ctx, new List<int>{Resource.Array.ChangeLog_1_12
|
BuildChangelogString(ctx, new List<int>{Resource.Array.ChangeLog_1_12
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:versionCode="222"
|
android:versionCode="223"
|
||||||
android:versionName="1.13-r0"
|
android:versionName="1.14-pre0"
|
||||||
package="keepass2android.keepass2android"
|
package="keepass2android.keepass2android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:versionCode="222"
|
android:versionCode="223"
|
||||||
android:versionName="1.13-r0"
|
android:versionName="1.14-pre0"
|
||||||
package="keepass2android.keepass2android_nonet"
|
package="keepass2android.keepass2android_nonet"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
|
|||||||
@@ -739,6 +739,12 @@
|
|||||||
<string name="webdav_chunked_upload_size_title">Chunk size for WebDav upload</string>
|
<string name="webdav_chunked_upload_size_title">Chunk size for WebDav upload</string>
|
||||||
<string name="webdav_chunked_upload_size_summary">Size of chunks when uploading to WebDav servers in bytes. Use 0 to disable chunked upload.</string>
|
<string name="webdav_chunked_upload_size_summary">Size of chunks when uploading to WebDav servers in bytes. Use 0 to disable chunked upload.</string>
|
||||||
|
|
||||||
|
<string-array name="ChangeLog_1_14_net">
|
||||||
|
<item>WebDav improvements: Bug fix for listing folders; support for chunked uploads and transactions</item>
|
||||||
|
<item>Added support for Samba/Windows network shares</item>
|
||||||
|
<item>Updated FluentFTP and enabled support for GnuTLS stream, supporting TLS 1.3 and solving other FTPS issues</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
|
||||||
<string-array name="ChangeLog_1_13">
|
<string-array name="ChangeLog_1_13">
|
||||||
<item>Improved password quality estimation by considering most popular passwords.</item>
|
<item>Improved password quality estimation by considering most popular passwords.</item>
|
||||||
|
|||||||
Reference in New Issue
Block a user