Compare commits
2 Commits
fix-linux-
...
Branch_b0f
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0ce77a2729 | ||
|
|
b0f61038e3 |
@@ -190,12 +190,14 @@ public class GoogleDriveFileStorage extends JavaFileStorageBase {
|
|||||||
String part = parts[parts.length-1];
|
String part = parts[parts.length-1];
|
||||||
logDebug("parsing part " + part);
|
logDebug("parsing part " + part);
|
||||||
int indexOfSeparator = part.lastIndexOf(NAME_ID_SEP);
|
int indexOfSeparator = part.lastIndexOf(NAME_ID_SEP);
|
||||||
|
String name = "";
|
||||||
if (indexOfSeparator < 0)
|
if (indexOfSeparator < 0)
|
||||||
{
|
{
|
||||||
//seems invalid, but we're very generous here
|
//seems invalid, but we're very generous here
|
||||||
displayName += "/"+part;
|
displayName += "/"+part;
|
||||||
}
|
}
|
||||||
String name = part.substring(0, indexOfSeparator);
|
else
|
||||||
|
name = part.substring(0, indexOfSeparator);
|
||||||
try {
|
try {
|
||||||
name = decode(name);
|
name = decode(name);
|
||||||
} catch (UnsupportedEncodingException e) {
|
} catch (UnsupportedEncodingException e) {
|
||||||
|
|||||||
@@ -108,7 +108,7 @@
|
|||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<uses-library android:required="false" android:name="com.sec.android.app.multiwindow" />
|
<uses-library required="false" name="com.sec.android.app.multiwindow" />
|
||||||
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
|
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
|
||||||
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:value="632.0dip" />
|
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:value="632.0dip" />
|
||||||
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" android:value="598.0dip" />
|
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" android:value="598.0dip" />
|
||||||
@@ -127,4 +127,4 @@
|
|||||||
<!-- Samsung Pass permission -->
|
<!-- Samsung Pass permission -->
|
||||||
<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY" />
|
<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY" />
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
@@ -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="135"
|
android:versionCode="138"
|
||||||
android:versionName="1.07-pre8"
|
android:versionName="1.07-r1"
|
||||||
package="keepass2android.keepass2android"
|
package="keepass2android.keepass2android"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="26" />
|
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="26" />
|
||||||
|
|||||||
@@ -123,7 +123,7 @@
|
|||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<uses-library android:required="false" android:name="com.sec.android.app.multiwindow" />
|
<uses-library required="false" name="com.sec.android.app.multiwindow" />
|
||||||
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
|
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
|
||||||
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:value="632.0dip" />
|
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:value="632.0dip" />
|
||||||
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" android:value="598.0dip" />
|
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" android:value="598.0dip" />
|
||||||
@@ -138,4 +138,4 @@
|
|||||||
<uses-permission android:name="keepass2android.keepass2android.permission.KP2aInternalSearch" />
|
<uses-permission android:name="keepass2android.keepass2android.permission.KP2aInternalSearch" />
|
||||||
<!-- Samsung Pass permission -->
|
<!-- Samsung Pass permission -->
|
||||||
<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY" />
|
<uses-permission android:name="com.samsung.android.providers.context.permission.WRITE_USE_APP_FEATURE_SURVEY" />
|
||||||
</manifest>
|
</manifest>
|
||||||
@@ -625,7 +625,7 @@
|
|||||||
<string name="EntryChannel_name">Indtastningsnotifikationer</string>
|
<string name="EntryChannel_name">Indtastningsnotifikationer</string>
|
||||||
<string name="EntryChannel_desc">Notificering til forenkelse af adgang til den aktuelt valgte indtastning.</string>
|
<string name="EntryChannel_desc">Notificering til forenkelse af adgang til den aktuelt valgte indtastning.</string>
|
||||||
<string name="ShowKeyboardDuringFingerprintAuth">Vis soft-tastatur til adgangskodeinput, når fingeraftrykaflæsning er aktiv.</string>
|
<string name="ShowKeyboardDuringFingerprintAuth">Vis soft-tastatur til adgangskodeinput, når fingeraftrykaflæsning er aktiv.</string>
|
||||||
<string name="ChangeLog_1_07"> Version 1.07\n
|
<string name="ChangeLog_1_07"> Version 1.07-pre2\n
|
||||||
* Løser nedbrud på Samsungs Android 9\n
|
* Løser nedbrud på Samsungs Android 9\n
|
||||||
* Tillader åbning af flere end én database, kompatibel med KeeAutoExec\n
|
* Tillader åbning af flere end én database, kompatibel med KeeAutoExec\n
|
||||||
* SFTP: Tillader offentlig nøglegodkendelse, tjekker om værtsnøgle er ændret\n
|
* SFTP: Tillader offentlig nøglegodkendelse, tjekker om værtsnøgle er ændret\n
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user