mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Merge branch 'release/2.9.17'
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
KeePassDX(2.9.17)
|
||||
* Import / Export app properties #839
|
||||
* Force twofish padding compatibility #955
|
||||
* Better timeout preference #579
|
||||
|
||||
KeePassDX(2.9.16)
|
||||
* Fix small bugs #948
|
||||
|
||||
|
||||
@@ -11,8 +11,8 @@ android {
|
||||
applicationId "com.kunzisoft.keepass"
|
||||
minSdkVersion 15
|
||||
targetSdkVersion 30
|
||||
versionCode = 70
|
||||
versionName = "2.9.16"
|
||||
versionCode = 71
|
||||
versionName = "2.9.17"
|
||||
multiDexEnabled true
|
||||
|
||||
testApplicationId = "com.kunzisoft.keepass.tests"
|
||||
|
||||
@@ -505,7 +505,7 @@ class EntryEditActivity : LockingActivity(),
|
||||
entryEditFragment?.icon = icon
|
||||
}
|
||||
|
||||
mExternalFileHelper?.onActivityResultCallback(requestCode, resultCode, data) { uri ->
|
||||
mExternalFileHelper?.onOpenDocumentResult(requestCode, resultCode, data) { uri ->
|
||||
uri?.let { attachmentToUploadUri ->
|
||||
UriUtil.getFileData(this, attachmentToUploadUri)?.also { documentFile ->
|
||||
documentFile.name?.let { fileName ->
|
||||
|
||||
@@ -355,7 +355,7 @@ class FileDatabaseSelectActivity : SpecialModeActivity(),
|
||||
AutofillHelper.onActivityResultSetResultAndFinish(this, requestCode, resultCode, data)
|
||||
}
|
||||
|
||||
mExternalFileHelper?.onActivityResultCallback(requestCode, resultCode, data) { uri ->
|
||||
mExternalFileHelper?.onOpenDocumentResult(requestCode, resultCode, data) { uri ->
|
||||
if (uri != null) {
|
||||
launchPasswordActivityWithPath(uri)
|
||||
}
|
||||
|
||||
@@ -276,7 +276,7 @@ class IconPickerActivity : LockingActivity() {
|
||||
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
||||
super.onActivityResult(requestCode, resultCode, data)
|
||||
|
||||
mExternalFileHelper?.onActivityResultCallback(requestCode, resultCode, data) { uri ->
|
||||
mExternalFileHelper?.onOpenDocumentResult(requestCode, resultCode, data) { uri ->
|
||||
addCustomIcon(uri)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -695,7 +695,7 @@ open class PasswordActivity : SpecialModeActivity(), AdvancedUnlockFragment.Buil
|
||||
|
||||
var keyFileResult = false
|
||||
mExternalFileHelper?.let {
|
||||
keyFileResult = it.onActivityResultCallback(requestCode, resultCode, data
|
||||
keyFileResult = it.onOpenDocumentResult(requestCode, resultCode, data
|
||||
) { uri ->
|
||||
if (uri != null) {
|
||||
mDatabaseKeyFileUri = uri
|
||||
|
||||
@@ -286,7 +286,7 @@ class AssignMasterKeyDialogFragment : DialogFragment() {
|
||||
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
||||
super.onActivityResult(requestCode, resultCode, data)
|
||||
|
||||
mExternalFileHelper?.onActivityResultCallback(requestCode, resultCode, data) { uri ->
|
||||
mExternalFileHelper?.onOpenDocumentResult(requestCode, resultCode, data) { uri ->
|
||||
uri?.let { pathUri ->
|
||||
UriUtil.getFileData(requireContext(), uri)?.length()?.let { lengthFile ->
|
||||
keyFileSelectionView?.error = null
|
||||
|
||||
@@ -104,11 +104,11 @@ class ExternalFileHelper {
|
||||
|
||||
/**
|
||||
* To use in onActivityResultCallback in Fragment or Activity
|
||||
* @param keyFileCallback Callback retrieve from data
|
||||
* @return true if requestCode was captured, false elsechere
|
||||
* @param onFileSelected Callback retrieve from data
|
||||
* @return true if requestCode was captured, false elsewhere
|
||||
*/
|
||||
fun onActivityResultCallback(requestCode: Int, resultCode: Int, data: Intent?,
|
||||
keyFileCallback: ((uri: Uri?) -> Unit)?): Boolean {
|
||||
fun onOpenDocumentResult(requestCode: Int, resultCode: Int, data: Intent?,
|
||||
onFileSelected: ((uri: Uri?) -> Unit)?): Boolean {
|
||||
|
||||
when (requestCode) {
|
||||
FILE_BROWSE -> {
|
||||
@@ -118,7 +118,7 @@ class ExternalFileHelper {
|
||||
if (filename != null) {
|
||||
keyUri = UriUtil.parse(filename)
|
||||
}
|
||||
keyFileCallback?.invoke(keyUri)
|
||||
onFileSelected?.invoke(keyUri)
|
||||
}
|
||||
return true
|
||||
}
|
||||
@@ -138,7 +138,7 @@ class ExternalFileHelper {
|
||||
} catch (e: Exception) {
|
||||
// nop
|
||||
}
|
||||
keyFileCallback?.invoke(uri)
|
||||
onFileSelected?.invoke(uri)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -190,11 +190,16 @@ class ExternalFileHelper {
|
||||
return null
|
||||
}
|
||||
|
||||
/**
|
||||
* To use in onActivityResultCallback in Fragment or Activity
|
||||
* @param onFileCreated Callback retrieve from data
|
||||
* @return true if requestCode was captured, false elsewhere
|
||||
*/
|
||||
fun onCreateDocumentResult(requestCode: Int, resultCode: Int, data: Intent?,
|
||||
action: (fileCreated: Uri?)->Unit) {
|
||||
onFileCreated: (fileCreated: Uri?)->Unit) {
|
||||
// Retrieve the created URI from the file manager
|
||||
if (fileRequestCodes.contains(requestCode) && resultCode == RESULT_OK) {
|
||||
action.invoke(data?.data)
|
||||
onFileCreated.invoke(data?.data)
|
||||
fileRequestCodes.remove(requestCode)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,12 +37,12 @@ object Stylish {
|
||||
* Initialize the class with a theme preference
|
||||
* @param context Context to retrieve the theme preference
|
||||
*/
|
||||
fun init(context: Context) {
|
||||
fun load(context: Context) {
|
||||
Log.d(Stylish::class.java.name, "Attatching to " + context.packageName)
|
||||
themeString = PreferencesUtil.getStyle(context)
|
||||
}
|
||||
|
||||
private fun retrieveEquivalentSystemStyle(context: Context, styleString: String): String {
|
||||
fun retrieveEquivalentSystemStyle(context: Context, styleString: String): String {
|
||||
val systemNightMode = when (PreferencesUtil.getStyleBrightness(context)) {
|
||||
context.getString(R.string.list_style_brightness_light) -> false
|
||||
context.getString(R.string.list_style_brightness_night) -> true
|
||||
@@ -84,12 +84,16 @@ object Stylish {
|
||||
}
|
||||
}
|
||||
|
||||
fun defaultStyle(context: Context): String {
|
||||
return context.getString(R.string.list_style_name_light)
|
||||
}
|
||||
|
||||
/**
|
||||
* Assign the style to the class attribute
|
||||
* @param styleString Style id String
|
||||
*/
|
||||
fun assignStyle(context: Context, styleString: String) {
|
||||
themeString = retrieveEquivalentSystemStyle(context, styleString)
|
||||
PreferencesUtil.setStyle(context, styleString)
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -29,7 +29,7 @@ class App : MultiDexApplication() {
|
||||
override fun onCreate() {
|
||||
super.onCreate()
|
||||
|
||||
Stylish.init(this)
|
||||
Stylish.load(this)
|
||||
PRNGFixes.apply()
|
||||
}
|
||||
|
||||
|
||||
@@ -36,6 +36,9 @@ abstract class CipherEngine {
|
||||
return 16
|
||||
}
|
||||
|
||||
// Used only with padding workaround
|
||||
var forcePaddingCompatibility = false
|
||||
|
||||
@Throws(NoSuchAlgorithmException::class, NoSuchPaddingException::class, InvalidKeyException::class, InvalidAlgorithmParameterException::class)
|
||||
abstract fun getCipher(opmode: Int, key: ByteArray, IV: ByteArray): Cipher
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ class TwofishEngine : CipherEngine() {
|
||||
|
||||
@Throws(NoSuchAlgorithmException::class, NoSuchPaddingException::class, InvalidKeyException::class, InvalidAlgorithmParameterException::class)
|
||||
override fun getCipher(opmode: Int, key: ByteArray, IV: ByteArray): Cipher {
|
||||
return CipherFactory.getTwofish(opmode, key, IV)
|
||||
return CipherFactory.getTwofish(opmode, key, IV, forcePaddingCompatibility)
|
||||
}
|
||||
|
||||
override fun getEncryptionAlgorithm(): EncryptionAlgorithm {
|
||||
|
||||
@@ -151,9 +151,11 @@ class DatabaseInputKDBX(cacheDirectory: File,
|
||||
val cipher: Cipher
|
||||
try {
|
||||
engine = EncryptionAlgorithm.getFrom(mDatabase.cipherUuid).cipherEngine
|
||||
engine.forcePaddingCompatibility = true
|
||||
mDatabase.setDataEngine(engine)
|
||||
mDatabase.encryptionAlgorithm = engine.getEncryptionAlgorithm()
|
||||
cipher = engine.getCipher(Cipher.DECRYPT_MODE, mDatabase.finalKey!!, header.encryptionIV)
|
||||
engine.forcePaddingCompatibility = false
|
||||
} catch (e: Exception) {
|
||||
throw InvalidAlgorithmDatabaseException(e)
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@ import com.kunzisoft.keepass.R
|
||||
import com.kunzisoft.keepass.app.database.CipherDatabaseEntity
|
||||
import com.kunzisoft.keepass.settings.PreferencesUtil
|
||||
import com.kunzisoft.keepass.timeout.TimeoutHelper
|
||||
import kotlinx.coroutines.*
|
||||
|
||||
class AdvancedUnlockNotificationService : NotificationService() {
|
||||
|
||||
@@ -18,9 +17,6 @@ class AdvancedUnlockNotificationService : NotificationService() {
|
||||
|
||||
private var mActionTaskBinder = AdvancedUnlockBinder()
|
||||
|
||||
private var notificationTimeoutMilliSecs: Long = 0
|
||||
private var mTimerJob: Job? = null
|
||||
|
||||
inner class AdvancedUnlockBinder: Binder() {
|
||||
fun getCipherDatabase(databaseUri: Uri): CipherDatabaseEntity? {
|
||||
return mTempCipherDao.firstOrNull { it.databaseUri == databaseUri.toString()}
|
||||
@@ -80,24 +76,12 @@ class AdvancedUnlockNotificationService : NotificationService() {
|
||||
|
||||
when (intent?.action) {
|
||||
ACTION_TIMEOUT -> {
|
||||
notificationTimeoutMilliSecs = PreferencesUtil.getAdvancedUnlockTimeout(this)
|
||||
val notificationTimeoutMilliSecs = PreferencesUtil.getAdvancedUnlockTimeout(this)
|
||||
// Not necessarily a foreground service
|
||||
if (mTimerJob == null && notificationTimeoutMilliSecs != TimeoutHelper.NEVER) {
|
||||
mTimerJob = CoroutineScope(Dispatchers.Main).launch {
|
||||
val maxPos = 100
|
||||
val posDurationMills = notificationTimeoutMilliSecs / maxPos
|
||||
for (pos in maxPos downTo 0) {
|
||||
notificationBuilder.setProgress(maxPos, pos, false)
|
||||
startForeground(notificationId, notificationBuilder.build())
|
||||
delay(posDurationMills)
|
||||
if (pos <= 0) {
|
||||
defineTimerJob(notificationBuilder, notificationTimeoutMilliSecs) {
|
||||
stopSelf()
|
||||
}
|
||||
}
|
||||
notificationManager?.cancel(notificationId)
|
||||
mTimerJob = null
|
||||
cancel()
|
||||
}
|
||||
} else {
|
||||
startForeground(notificationId, notificationBuilder.build())
|
||||
}
|
||||
@@ -118,7 +102,6 @@ class AdvancedUnlockNotificationService : NotificationService() {
|
||||
|
||||
override fun onDestroy() {
|
||||
mTempCipherDao.clear()
|
||||
mTimerJob?.cancel()
|
||||
super.onDestroy()
|
||||
}
|
||||
|
||||
|
||||
@@ -37,8 +37,7 @@ class ClipboardEntryNotificationService : LockNotificationService() {
|
||||
override val notificationId = 485
|
||||
private var mEntryInfo: EntryInfo? = null
|
||||
private var clipboardHelper: ClipboardHelper? = null
|
||||
private var notificationTimeoutMilliSecs: Long = 0
|
||||
private var cleanCopyNotificationTimerTask: Thread? = null
|
||||
private var mNotificationTimeoutMilliSecs: Long = 0
|
||||
|
||||
override fun retrieveChannelId(): String {
|
||||
return CHANNEL_CLIPBOARD_ID
|
||||
@@ -70,7 +69,7 @@ class ClipboardEntryNotificationService : LockNotificationService() {
|
||||
mEntryInfo = intent?.getParcelableExtra(EXTRA_ENTRY_INFO)
|
||||
|
||||
//Get settings
|
||||
notificationTimeoutMilliSecs = PreferencesUtil.getClipboardTimeout(this)
|
||||
mNotificationTimeoutMilliSecs = PreferencesUtil.getClipboardTimeout(this)
|
||||
|
||||
when {
|
||||
intent == null -> Log.w(TAG, "null intent")
|
||||
@@ -78,7 +77,7 @@ class ClipboardEntryNotificationService : LockNotificationService() {
|
||||
newNotification(mEntryInfo?.title, constructListOfField(intent))
|
||||
}
|
||||
ACTION_CLEAN_CLIPBOARD == intent.action -> {
|
||||
stopTask(cleanCopyNotificationTimerTask)
|
||||
mTimerJob?.cancel()
|
||||
cleanClipboard()
|
||||
stopNotificationAndSendLockIfNeeded()
|
||||
}
|
||||
@@ -121,7 +120,7 @@ class ClipboardEntryNotificationService : LockNotificationService() {
|
||||
}
|
||||
|
||||
private fun newNotification(title: String?, fieldsToAdd: ArrayList<ClipboardEntryNotificationField>) {
|
||||
stopTask(cleanCopyNotificationTimerTask)
|
||||
mTimerJob?.cancel()
|
||||
|
||||
val builder = buildNewNotification()
|
||||
.setSmallIcon(R.drawable.notification_ic_clipboard_key_24dp)
|
||||
@@ -147,7 +146,7 @@ class ClipboardEntryNotificationService : LockNotificationService() {
|
||||
}
|
||||
|
||||
private fun copyField(fieldToCopy: ClipboardEntryNotificationField, nextFields: ArrayList<ClipboardEntryNotificationField>) {
|
||||
stopTask(cleanCopyNotificationTimerTask)
|
||||
mTimerJob?.cancel()
|
||||
|
||||
try {
|
||||
var generatedValue = fieldToCopy.getGeneratedValue(mEntryInfo)
|
||||
@@ -170,40 +169,23 @@ class ClipboardEntryNotificationService : LockNotificationService() {
|
||||
this, 0, cleanIntent, PendingIntent.FLAG_UPDATE_CURRENT)
|
||||
builder.setDeleteIntent(cleanPendingIntent)
|
||||
|
||||
val myNotificationId = notificationId
|
||||
|
||||
if (notificationTimeoutMilliSecs != NEVER) {
|
||||
cleanCopyNotificationTimerTask = Thread {
|
||||
val maxPos = 100
|
||||
val posDurationMills = notificationTimeoutMilliSecs / maxPos
|
||||
for (pos in maxPos downTo 0) {
|
||||
if (mNotificationTimeoutMilliSecs != NEVER) {
|
||||
defineTimerJob(builder, mNotificationTimeoutMilliSecs, {
|
||||
val newGeneratedValue = fieldToCopy.getGeneratedValue(mEntryInfo)
|
||||
// New auto generated value
|
||||
if (generatedValue != newGeneratedValue) {
|
||||
generatedValue = newGeneratedValue
|
||||
clipboardHelper?.copyToClipboard(fieldToCopy.label, generatedValue)
|
||||
}
|
||||
builder.setProgress(maxPos, pos, false)
|
||||
notificationManager?.notify(myNotificationId, builder.build())
|
||||
try {
|
||||
Thread.sleep(posDurationMills)
|
||||
} catch (e: InterruptedException) {
|
||||
break
|
||||
}
|
||||
if (pos <= 0) {
|
||||
}) {
|
||||
stopNotificationAndSendLockIfNeeded()
|
||||
}
|
||||
}
|
||||
stopTask(cleanCopyNotificationTimerTask)
|
||||
notificationManager?.cancel(myNotificationId)
|
||||
// Clean password only if no next field
|
||||
if (nextFields.size <= 0)
|
||||
cleanClipboard()
|
||||
}
|
||||
cleanCopyNotificationTimerTask?.start()
|
||||
} else {
|
||||
// No timer
|
||||
notificationManager?.notify(myNotificationId, builder.build())
|
||||
notificationManager?.notify(notificationId, builder.build())
|
||||
}
|
||||
|
||||
} catch (e: Exception) {
|
||||
@@ -228,10 +210,6 @@ class ClipboardEntryNotificationService : LockNotificationService() {
|
||||
|
||||
override fun onDestroy() {
|
||||
cleanClipboard()
|
||||
|
||||
stopTask(cleanCopyNotificationTimerTask)
|
||||
cleanCopyNotificationTimerTask = null
|
||||
|
||||
super.onDestroy()
|
||||
}
|
||||
|
||||
|
||||
@@ -35,8 +35,7 @@ import com.kunzisoft.keepass.utils.LOCK_ACTION
|
||||
class KeyboardEntryNotificationService : LockNotificationService() {
|
||||
|
||||
override val notificationId = 486
|
||||
private var cleanNotificationTimerTask: Thread? = null
|
||||
private var notificationTimeoutMilliSecs: Long = 0
|
||||
private var mNotificationTimeoutMilliSecs: Long = 0
|
||||
|
||||
private var pendingDeleteIntent: PendingIntent? = null
|
||||
|
||||
@@ -61,7 +60,7 @@ class KeyboardEntryNotificationService : LockNotificationService() {
|
||||
super.onStartCommand(intent, flags, startId)
|
||||
|
||||
//Get settings
|
||||
notificationTimeoutMilliSecs = PreferenceManager.getDefaultSharedPreferences(this)
|
||||
mNotificationTimeoutMilliSecs = PreferenceManager.getDefaultSharedPreferences(this)
|
||||
.getString(getString(R.string.keyboard_entry_timeout_key),
|
||||
getString(R.string.timeout_default))?.toLong() ?: TimeoutHelper.DEFAULT_TIMEOUT
|
||||
|
||||
@@ -107,29 +106,14 @@ class KeyboardEntryNotificationService : LockNotificationService() {
|
||||
notificationManager?.cancel(notificationId)
|
||||
notificationManager?.notify(notificationId, builder.build())
|
||||
|
||||
stopTask(cleanNotificationTimerTask)
|
||||
// Timeout only if notification clear is available
|
||||
if (PreferencesUtil.isClearKeyboardNotificationEnable(this)) {
|
||||
if (notificationTimeoutMilliSecs != TimeoutHelper.NEVER) {
|
||||
cleanNotificationTimerTask = Thread {
|
||||
val maxPos = 100
|
||||
val posDurationMills = notificationTimeoutMilliSecs / maxPos
|
||||
for (pos in maxPos downTo 0) {
|
||||
builder.setProgress(maxPos, pos, false)
|
||||
notificationManager?.notify(notificationId, builder.build())
|
||||
try {
|
||||
Thread.sleep(posDurationMills)
|
||||
} catch (e: InterruptedException) {
|
||||
break
|
||||
}
|
||||
if (pos <= 0) {
|
||||
if (mNotificationTimeoutMilliSecs != TimeoutHelper.NEVER) {
|
||||
defineTimerJob(builder, mNotificationTimeoutMilliSecs) {
|
||||
stopNotificationAndSendLockIfNeeded()
|
||||
}
|
||||
}
|
||||
}
|
||||
cleanNotificationTimerTask?.start()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun onTaskRemoved(rootIntent: Intent?) {
|
||||
@@ -142,8 +126,6 @@ class KeyboardEntryNotificationService : LockNotificationService() {
|
||||
// Remove the entry from the keyboard
|
||||
MagikIME.removeEntry(this)
|
||||
|
||||
stopTask(cleanNotificationTimerTask)
|
||||
cleanNotificationTimerTask = null
|
||||
pendingDeleteIntent?.cancel()
|
||||
|
||||
super.onDestroy()
|
||||
|
||||
@@ -50,11 +50,6 @@ abstract class LockNotificationService : NotificationService() {
|
||||
return super.onStartCommand(intent, flags, startId)
|
||||
}
|
||||
|
||||
protected fun stopTask(task: Thread?) {
|
||||
if (task != null && task.isAlive)
|
||||
task.interrupt()
|
||||
}
|
||||
|
||||
override fun onTaskRemoved(rootIntent: Intent?) {
|
||||
notificationManager?.cancel(notificationId)
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ import androidx.core.app.NotificationCompat
|
||||
import androidx.core.app.NotificationManagerCompat
|
||||
import com.kunzisoft.keepass.R
|
||||
import com.kunzisoft.keepass.activities.stylish.Stylish
|
||||
import kotlinx.coroutines.*
|
||||
|
||||
|
||||
abstract class NotificationService : Service() {
|
||||
@@ -18,6 +19,8 @@ abstract class NotificationService : Service() {
|
||||
protected var notificationManager: NotificationManagerCompat? = null
|
||||
private var colorNotificationAccent: Int = 0
|
||||
|
||||
protected var mTimerJob: Job? = null
|
||||
|
||||
protected abstract val notificationId: Int
|
||||
|
||||
override fun onBind(intent: Intent): IBinder? {
|
||||
@@ -71,7 +74,33 @@ abstract class NotificationService : Service() {
|
||||
}
|
||||
}
|
||||
|
||||
protected fun defineTimerJob(builder: NotificationCompat.Builder,
|
||||
timeoutMilliseconds: Long,
|
||||
actionAfterASecond: (() -> Unit)? = null,
|
||||
actionEnd: () -> Unit) {
|
||||
mTimerJob?.cancel()
|
||||
mTimerJob = CoroutineScope(Dispatchers.Main).launch {
|
||||
val timeoutInSeconds = timeoutMilliseconds / 1000L
|
||||
for (currentTime in timeoutInSeconds downTo 0) {
|
||||
actionAfterASecond?.invoke()
|
||||
builder.setProgress(100,
|
||||
(currentTime * 100 / timeoutInSeconds).toInt(),
|
||||
false)
|
||||
startForeground(notificationId, builder.build())
|
||||
delay(1000)
|
||||
if (currentTime <= 0) {
|
||||
actionEnd()
|
||||
}
|
||||
}
|
||||
notificationManager?.cancel(notificationId)
|
||||
mTimerJob = null
|
||||
cancel()
|
||||
}
|
||||
}
|
||||
|
||||
override fun onDestroy() {
|
||||
mTimerJob?.cancel()
|
||||
mTimerJob = null
|
||||
notificationManager?.cancel(notificationId)
|
||||
|
||||
super.onDestroy()
|
||||
|
||||
@@ -20,9 +20,12 @@
|
||||
package com.kunzisoft.keepass.settings
|
||||
|
||||
import android.os.Bundle
|
||||
import androidx.fragment.app.DialogFragment
|
||||
import androidx.preference.Preference
|
||||
import androidx.preference.PreferenceFragmentCompat
|
||||
|
||||
import com.kunzisoft.keepass.R
|
||||
import com.kunzisoft.keepass.settings.preferencedialogfragment.DurationDialogFragmentCompat
|
||||
|
||||
class MagikeyboardSettingsFragment : PreferenceFragmentCompat() {
|
||||
|
||||
@@ -30,4 +33,31 @@ class MagikeyboardSettingsFragment : PreferenceFragmentCompat() {
|
||||
// Load the preferences from an XML resource
|
||||
setPreferencesFromResource(R.xml.preferences_keyboard, rootKey)
|
||||
}
|
||||
|
||||
override fun onDisplayPreferenceDialog(preference: Preference?) {
|
||||
|
||||
var otherDialogFragment = false
|
||||
|
||||
var dialogFragment: DialogFragment? = null
|
||||
// Main Preferences
|
||||
when (preference?.key) {
|
||||
getString(R.string.keyboard_entry_timeout_key) -> {
|
||||
dialogFragment = DurationDialogFragmentCompat.newInstance(preference.key)
|
||||
}
|
||||
else -> otherDialogFragment = true
|
||||
}
|
||||
|
||||
if (dialogFragment != null) {
|
||||
dialogFragment.setTargetFragment(this, 0)
|
||||
dialogFragment.show(parentFragmentManager, TAG_PREF_FRAGMENT)
|
||||
}
|
||||
// Could not be handled here. Try with the super method.
|
||||
else if (otherDialogFragment) {
|
||||
super.onDisplayPreferenceDialog(preference)
|
||||
}
|
||||
}
|
||||
|
||||
companion object {
|
||||
private const val TAG_PREF_FRAGMENT = "TAG_PREF_FRAGMENT"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,6 +30,7 @@ import android.view.autofill.AutofillManager
|
||||
import android.widget.Toast
|
||||
import androidx.annotation.RequiresApi
|
||||
import androidx.appcompat.app.AlertDialog
|
||||
import androidx.fragment.app.DialogFragment
|
||||
import androidx.fragment.app.FragmentActivity
|
||||
import androidx.preference.ListPreference
|
||||
import androidx.preference.Preference
|
||||
@@ -46,6 +47,7 @@ import com.kunzisoft.keepass.education.Education
|
||||
import com.kunzisoft.keepass.icons.IconPackChooser
|
||||
import com.kunzisoft.keepass.services.AdvancedUnlockNotificationService
|
||||
import com.kunzisoft.keepass.settings.preference.IconPackListPreference
|
||||
import com.kunzisoft.keepass.settings.preferencedialogfragment.DurationDialogFragmentCompat
|
||||
import com.kunzisoft.keepass.utils.UriUtil
|
||||
|
||||
|
||||
@@ -90,6 +92,20 @@ class NestedAppSettingsFragment : NestedSettingsFragment() {
|
||||
}
|
||||
true
|
||||
}
|
||||
|
||||
findPreference<Preference>(getString(R.string.import_app_properties_key))?.setOnPreferenceClickListener { _ ->
|
||||
(activity as? SettingsActivity?)?.apply {
|
||||
importAppProperties()
|
||||
}
|
||||
true
|
||||
}
|
||||
|
||||
findPreference<Preference>(getString(R.string.export_app_properties_key))?.setOnPreferenceClickListener { _ ->
|
||||
(activity as? SettingsActivity?)?.apply {
|
||||
exportAppProperties()
|
||||
}
|
||||
true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -388,10 +404,7 @@ class NestedAppSettingsFragment : NestedSettingsFragment() {
|
||||
Stylish.assignStyle(activity, styleIdString)
|
||||
// Relaunch the current activity to redraw theme
|
||||
(activity as? SettingsActivity?)?.apply {
|
||||
keepCurrentScreen()
|
||||
startActivity(intent)
|
||||
finish()
|
||||
activity.overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out)
|
||||
relaunchCurrentScreen()
|
||||
}
|
||||
}
|
||||
styleEnabled
|
||||
@@ -399,10 +412,7 @@ class NestedAppSettingsFragment : NestedSettingsFragment() {
|
||||
|
||||
findPreference<ListPreference>(getString(R.string.setting_style_brightness_key))?.setOnPreferenceChangeListener { _, _ ->
|
||||
(activity as? SettingsActivity?)?.apply {
|
||||
keepCurrentScreen()
|
||||
startActivity(intent)
|
||||
finish()
|
||||
activity.overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out)
|
||||
relaunchCurrentScreen()
|
||||
}
|
||||
true
|
||||
}
|
||||
@@ -440,6 +450,31 @@ class NestedAppSettingsFragment : NestedSettingsFragment() {
|
||||
}
|
||||
}
|
||||
|
||||
override fun onDisplayPreferenceDialog(preference: Preference?) {
|
||||
|
||||
var otherDialogFragment = false
|
||||
|
||||
var dialogFragment: DialogFragment? = null
|
||||
// Main Preferences
|
||||
when (preference?.key) {
|
||||
getString(R.string.app_timeout_key),
|
||||
getString(R.string.clipboard_timeout_key),
|
||||
getString(R.string.temp_advanced_unlock_timeout_key) -> {
|
||||
dialogFragment = DurationDialogFragmentCompat.newInstance(preference.key)
|
||||
}
|
||||
else -> otherDialogFragment = true
|
||||
}
|
||||
|
||||
if (dialogFragment != null) {
|
||||
dialogFragment.setTargetFragment(this, 0)
|
||||
dialogFragment.show(parentFragmentManager, TAG_PREF_FRAGMENT)
|
||||
}
|
||||
// Could not be handled here. Try with the super method.
|
||||
else if (otherDialogFragment) {
|
||||
super.onDisplayPreferenceDialog(preference)
|
||||
}
|
||||
}
|
||||
|
||||
override fun onResume() {
|
||||
super.onResume()
|
||||
activity?.let { activity ->
|
||||
@@ -470,7 +505,7 @@ class NestedAppSettingsFragment : NestedSettingsFragment() {
|
||||
}
|
||||
|
||||
companion object {
|
||||
|
||||
private const val REQUEST_CODE_AUTOFILL = 5201
|
||||
private const val TAG_PREF_FRAGMENT = "TAG_PREF_FRAGMENT"
|
||||
}
|
||||
}
|
||||
@@ -576,7 +576,6 @@ class NestedDatabaseSettingsFragment : NestedSettingsFragment() {
|
||||
}
|
||||
|
||||
companion object {
|
||||
|
||||
private const val TAG_PREF_FRAGMENT = "TAG_PREF_FRAGMENT"
|
||||
}
|
||||
}
|
||||
@@ -21,14 +21,17 @@ package com.kunzisoft.keepass.settings
|
||||
|
||||
import android.app.backup.BackupManager
|
||||
import android.content.Context
|
||||
import android.content.SharedPreferences
|
||||
import android.content.res.Resources
|
||||
import android.net.Uri
|
||||
import android.util.Log
|
||||
import androidx.preference.PreferenceManager
|
||||
import com.kunzisoft.keepass.BuildConfig
|
||||
import com.kunzisoft.keepass.R
|
||||
import com.kunzisoft.keepass.activities.stylish.Stylish
|
||||
import com.kunzisoft.keepass.biometric.AdvancedUnlockManager
|
||||
import com.kunzisoft.keepass.database.element.SortNodeEnum
|
||||
import com.kunzisoft.keepass.education.Education
|
||||
import com.kunzisoft.keepass.timeout.TimeoutHelper
|
||||
import java.util.*
|
||||
|
||||
@@ -134,28 +137,46 @@ object PreferencesUtil {
|
||||
}
|
||||
|
||||
fun getStyle(context: Context): String {
|
||||
val stylishPrefKey = context.getString(R.string.setting_style_key)
|
||||
val defaultStyleString = context.getString(R.string.list_style_name_light)
|
||||
val defaultStyleString = Stylish.defaultStyle(context)
|
||||
val styleString = PreferenceManager.getDefaultSharedPreferences(context)
|
||||
.getString(stylishPrefKey, defaultStyleString)
|
||||
.getString(context.getString(R.string.setting_style_key), defaultStyleString)
|
||||
?: defaultStyleString
|
||||
return Stylish.retrieveEquivalentLightStyle(context, styleString)
|
||||
// Return the system style
|
||||
return Stylish.retrieveEquivalentSystemStyle(context, styleString)
|
||||
}
|
||||
|
||||
fun setStyle(context: Context, styleString: String) {
|
||||
var tempThemeString = styleString
|
||||
if (tempThemeString in BuildConfig.STYLES_DISABLED) {
|
||||
tempThemeString = Stylish.defaultStyle(context)
|
||||
}
|
||||
// Store light style to show selection in array list
|
||||
tempThemeString = Stylish.retrieveEquivalentLightStyle(context, tempThemeString)
|
||||
PreferenceManager.getDefaultSharedPreferences(context)
|
||||
.edit()
|
||||
.putString(context.getString(R.string.setting_style_key), tempThemeString)
|
||||
.apply()
|
||||
Stylish.load(context)
|
||||
}
|
||||
|
||||
fun getStyleBrightness(context: Context): String? {
|
||||
val prefs = PreferenceManager.getDefaultSharedPreferences(context)
|
||||
return prefs.getString(context.getString(R.string.setting_style_brightness_key),
|
||||
context.resources.getString(R.string.list_style_brightness_follow_system))
|
||||
context.getString(R.string.list_style_brightness_follow_system))
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve the text size in % (1 for 100%)
|
||||
*/
|
||||
fun getListTextSize(context: Context): Float {
|
||||
val index = try {
|
||||
val prefs = PreferenceManager.getDefaultSharedPreferences(context)
|
||||
val listSizeString = prefs.getString(context.getString(R.string.list_size_key),
|
||||
context.getString(R.string.list_size_string_medium))
|
||||
val index = context.resources.getStringArray(R.array.list_size_string_values).indexOf(listSizeString)
|
||||
context.resources.getStringArray(R.array.list_size_string_values).indexOf(listSizeString)
|
||||
} catch (e: Exception) {
|
||||
1
|
||||
}
|
||||
val typedArray = context.resources.obtainTypedArray(R.array.list_size_values)
|
||||
val listSize = typedArray.getFloat(index, 1.0F)
|
||||
typedArray.recycle()
|
||||
@@ -289,11 +310,13 @@ object PreferencesUtil {
|
||||
}
|
||||
|
||||
fun getListSort(context: Context): SortNodeEnum {
|
||||
try {
|
||||
val prefs = PreferenceManager.getDefaultSharedPreferences(context)
|
||||
prefs.getString(context.getString(R.string.sort_node_key),
|
||||
SortNodeEnum.DB.name)?.let {
|
||||
return SortNodeEnum.valueOf(it)
|
||||
}
|
||||
} catch (e: Exception) {}
|
||||
return SortNodeEnum.DB
|
||||
}
|
||||
|
||||
@@ -517,4 +540,133 @@ object PreferencesUtil {
|
||||
.putStringSet(context.getString(R.string.autofill_web_domain_blocklist_key), setItems)
|
||||
.apply()
|
||||
}
|
||||
|
||||
fun getAppProperties(context: Context): Properties {
|
||||
val properties = Properties()
|
||||
for ((name, value) in PreferenceManager.getDefaultSharedPreferences(context).all) {
|
||||
properties[name] = value.toString()
|
||||
}
|
||||
for ((name, value) in Education.getEducationSharedPreferences(context).all) {
|
||||
properties[name] = value.toString()
|
||||
}
|
||||
return properties
|
||||
}
|
||||
|
||||
private fun getStringSetFromProperties(value: String): Set<String> {
|
||||
return value.removePrefix("[")
|
||||
.removeSuffix("]")
|
||||
.split(", ")
|
||||
.toSet()
|
||||
}
|
||||
|
||||
private fun putPropertiesInPreferences(properties: Properties,
|
||||
preferences: SharedPreferences,
|
||||
putProperty: (editor: SharedPreferences.Editor,
|
||||
name: String,
|
||||
value: String) -> Unit) {
|
||||
preferences.edit().apply {
|
||||
for ((name, value) in properties) {
|
||||
try {
|
||||
putProperty(this, name as String, value as String)
|
||||
} catch (e:Exception) {
|
||||
Log.e("PreferencesUtil", "Error when trying to parse app property $name=$value", e)
|
||||
}
|
||||
}
|
||||
}.apply()
|
||||
}
|
||||
|
||||
fun setAppProperties(context: Context, properties: Properties) {
|
||||
putPropertiesInPreferences(properties,
|
||||
PreferenceManager.getDefaultSharedPreferences(context)) { editor, name, value ->
|
||||
when (name) {
|
||||
context.getString(R.string.allow_no_password_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.delete_entered_password_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.enable_read_only_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.enable_auto_save_database_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.omit_backup_search_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.auto_focus_search_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.subdomain_search_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.app_timeout_key) -> editor.putString(name, value.toLong().toString())
|
||||
context.getString(R.string.lock_database_screen_off_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.lock_database_back_root_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.lock_database_show_button_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.password_length_key) -> editor.putInt(name, value.toInt())
|
||||
context.getString(R.string.list_password_generator_options_key) -> editor.putStringSet(name, getStringSetFromProperties(value))
|
||||
context.getString(R.string.hide_password_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.allow_copy_password_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.remember_database_locations_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.show_recent_files_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.hide_broken_locations_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.remember_keyfile_locations_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.biometric_unlock_enable_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.device_credential_unlock_enable_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.biometric_auto_open_prompt_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.temp_advanced_unlock_enable_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.temp_advanced_unlock_timeout_key) -> editor.putString(name, value.toLong().toString())
|
||||
|
||||
context.getString(R.string.magic_keyboard_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.clipboard_notifications_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.clear_clipboard_notification_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.clipboard_timeout_key) -> editor.putString(name, value.toLong().toString())
|
||||
context.getString(R.string.settings_autofill_enable_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_notification_entry_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_notification_entry_clear_close_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_entry_timeout_key) -> editor.putString(name, value.toLong().toString())
|
||||
context.getString(R.string.keyboard_selection_entry_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_search_share_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_save_search_info_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_auto_go_action_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_key_vibrate_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_key_sound_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_previous_database_credentials_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_previous_fill_in_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.keyboard_previous_lock_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.autofill_close_database_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.autofill_auto_search_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.autofill_inline_suggestions_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.autofill_save_search_info_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.autofill_ask_to_save_data_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.autofill_application_id_blocklist_key) -> editor.putStringSet(name, getStringSetFromProperties(value))
|
||||
context.getString(R.string.autofill_web_domain_blocklist_key) -> editor.putStringSet(name, getStringSetFromProperties(value))
|
||||
|
||||
context.getString(R.string.setting_style_key) -> setStyle(context, value)
|
||||
context.getString(R.string.setting_style_brightness_key) -> editor.putString(name, value)
|
||||
context.getString(R.string.setting_icon_pack_choose_key) -> editor.putString(name, value)
|
||||
context.getString(R.string.list_entries_show_username_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.list_groups_show_number_entries_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.list_size_key) -> editor.putString(name, value)
|
||||
context.getString(R.string.monospace_font_fields_enable_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.hide_expired_entries_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.show_uuid_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.enable_education_screens_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
|
||||
context.getString(R.string.sort_node_key) -> editor.putString(name, value)
|
||||
context.getString(R.string.sort_group_before_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.sort_ascending_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.sort_recycle_bin_bottom_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.allow_copy_password_first_time_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
}
|
||||
}
|
||||
|
||||
putPropertiesInPreferences(properties,
|
||||
Education.getEducationSharedPreferences(context)) { editor, name, value ->
|
||||
when (name) {
|
||||
context.getString(R.string.education_create_db_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_select_db_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_unlock_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_read_only_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_biometric_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_search_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_new_node_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_sort_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_lock_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_copy_username_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_entry_edit_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_password_generator_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_entry_new_field_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_add_attachment_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
context.getString(R.string.education_setup_OTP_key) -> editor.putBoolean(name, value.toBoolean())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,22 +24,27 @@ import android.app.backup.BackupManager
|
||||
import android.content.Intent
|
||||
import android.net.Uri
|
||||
import android.os.Bundle
|
||||
import android.util.Log
|
||||
import android.view.MenuItem
|
||||
import android.view.View
|
||||
import android.widget.Toast
|
||||
import androidx.appcompat.widget.Toolbar
|
||||
import androidx.coordinatorlayout.widget.CoordinatorLayout
|
||||
import androidx.fragment.app.Fragment
|
||||
import com.kunzisoft.keepass.R
|
||||
import com.kunzisoft.keepass.activities.dialogs.AssignMasterKeyDialogFragment
|
||||
import com.kunzisoft.keepass.activities.dialogs.PasswordEncodingDialogFragment
|
||||
import com.kunzisoft.keepass.activities.helpers.ExternalFileHelper
|
||||
import com.kunzisoft.keepass.activities.helpers.ReadOnlyHelper
|
||||
import com.kunzisoft.keepass.activities.lock.LockingActivity
|
||||
import com.kunzisoft.keepass.activities.lock.resetAppTimeoutWhenViewFocusedOrChanged
|
||||
import com.kunzisoft.keepass.activities.stylish.Stylish
|
||||
import com.kunzisoft.keepass.database.element.Database
|
||||
import com.kunzisoft.keepass.model.MainCredential
|
||||
import com.kunzisoft.keepass.services.DatabaseTaskNotificationService
|
||||
import com.kunzisoft.keepass.timeout.TimeoutHelper
|
||||
import com.kunzisoft.keepass.view.showActionErrorIfNeeded
|
||||
import java.util.*
|
||||
|
||||
open class SettingsActivity
|
||||
: LockingActivity(),
|
||||
@@ -48,6 +53,8 @@ open class SettingsActivity
|
||||
PasswordEncodingDialogFragment.Listener {
|
||||
|
||||
private var backupManager: BackupManager? = null
|
||||
private var mExternalFileHelper: ExternalFileHelper? = null
|
||||
private var appPropertiesFileCreationRequestCode: Int? = null
|
||||
|
||||
private var coordinatorLayout: CoordinatorLayout? = null
|
||||
private var toolbar: Toolbar? = null
|
||||
@@ -70,6 +77,8 @@ open class SettingsActivity
|
||||
coordinatorLayout = findViewById(R.id.toolbar_coordinator)
|
||||
toolbar = findViewById(R.id.toolbar)
|
||||
|
||||
mExternalFileHelper = ExternalFileHelper(this)
|
||||
|
||||
if (savedInstanceState?.getString(TITLE_KEY).isNullOrEmpty())
|
||||
toolbar?.setTitle(R.string.settings)
|
||||
else
|
||||
@@ -216,6 +225,13 @@ open class SettingsActivity
|
||||
hideOrShowLockButton(key)
|
||||
}
|
||||
|
||||
fun relaunchCurrentScreen() {
|
||||
keepCurrentScreen()
|
||||
startActivity(intent)
|
||||
finish()
|
||||
overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out)
|
||||
}
|
||||
|
||||
/**
|
||||
* To keep the current screen when activity is reloaded
|
||||
*/
|
||||
@@ -235,6 +251,58 @@ open class SettingsActivity
|
||||
replaceFragment(key, reload)
|
||||
}
|
||||
|
||||
fun importAppProperties() {
|
||||
mExternalFileHelper?.openDocument()
|
||||
}
|
||||
|
||||
fun exportAppProperties() {
|
||||
appPropertiesFileCreationRequestCode = mExternalFileHelper?.createDocument(getString(R.string.app_properties_file_name))
|
||||
}
|
||||
|
||||
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
||||
super.onActivityResult(requestCode, resultCode, data)
|
||||
|
||||
// Import app properties result
|
||||
try {
|
||||
mExternalFileHelper?.onOpenDocumentResult(requestCode, resultCode, data) { selectedfileUri ->
|
||||
selectedfileUri?.let { uri ->
|
||||
val appProperties = Properties()
|
||||
contentResolver?.openInputStream(uri)?.use { inputStream ->
|
||||
appProperties.load(inputStream)
|
||||
}
|
||||
PreferencesUtil.setAppProperties(this, appProperties)
|
||||
|
||||
// Restart the current activity
|
||||
relaunchCurrentScreen()
|
||||
Toast.makeText(this, R.string.success_import_app_properties, Toast.LENGTH_LONG).show()
|
||||
}
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
Toast.makeText(this, R.string.error_import_app_properties, Toast.LENGTH_LONG).show()
|
||||
Log.e(TAG, "Unable to import app properties", e)
|
||||
}
|
||||
|
||||
// Export app properties result
|
||||
try {
|
||||
if (requestCode == appPropertiesFileCreationRequestCode) {
|
||||
mExternalFileHelper?.onCreateDocumentResult(requestCode, resultCode, data) { createdFileUri ->
|
||||
createdFileUri?.let { uri ->
|
||||
contentResolver?.openOutputStream(uri)?.use { outputStream ->
|
||||
PreferencesUtil
|
||||
.getAppProperties(this)
|
||||
.store(outputStream, getString(R.string.description_app_properties))
|
||||
}
|
||||
Toast.makeText(this, R.string.success_export_app_properties, Toast.LENGTH_LONG).show()
|
||||
}
|
||||
}
|
||||
appPropertiesFileCreationRequestCode = null
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
Toast.makeText(this, R.string.error_export_app_properties, Toast.LENGTH_LONG).show()
|
||||
Log.e(LockingActivity.TAG, "Unable to export app properties", e)
|
||||
}
|
||||
}
|
||||
|
||||
override fun onSaveInstanceState(outState: Bundle) {
|
||||
super.onSaveInstanceState(outState)
|
||||
|
||||
@@ -244,6 +312,8 @@ open class SettingsActivity
|
||||
|
||||
companion object {
|
||||
|
||||
private val TAG = SettingsActivity::class.java.name
|
||||
|
||||
private const val SHOW_LOCK = "SHOW_LOCK"
|
||||
private const val TITLE_KEY = "TITLE_KEY"
|
||||
private const val TAG_NESTED = "TAG_NESTED"
|
||||
|
||||
@@ -0,0 +1,77 @@
|
||||
/*
|
||||
* Copyright 2019 Jeremy Jamet / Kunzisoft.
|
||||
*
|
||||
* This file is part of KeePassDX.
|
||||
*
|
||||
* KeePassDX is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* KeePassDX is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with KeePassDX. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
package com.kunzisoft.keepass.settings.preference
|
||||
|
||||
import android.content.Context
|
||||
import android.content.res.TypedArray
|
||||
import android.util.AttributeSet
|
||||
import androidx.preference.DialogPreference
|
||||
import com.kunzisoft.keepass.R
|
||||
|
||||
class DurationDialogPreference @JvmOverloads constructor(context: Context,
|
||||
attrs: AttributeSet? = null,
|
||||
defStyleAttr: Int = R.attr.dialogPreferenceStyle,
|
||||
defStyleRes: Int = defStyleAttr)
|
||||
: DialogPreference(context, attrs, defStyleAttr, defStyleRes) {
|
||||
|
||||
private var mDuration: Long = 0L
|
||||
|
||||
override fun getDialogLayoutResource(): Int {
|
||||
return R.layout.pref_dialog_duration
|
||||
}
|
||||
|
||||
/**
|
||||
* Get current duration of preference
|
||||
*/
|
||||
fun getDuration(): Long {
|
||||
return if (mDuration >= 0) mDuration else -1
|
||||
}
|
||||
|
||||
/**
|
||||
* Assign [duration] of preference
|
||||
*/
|
||||
fun setDuration(duration: Long) {
|
||||
persistString(duration.toString())
|
||||
notifyChanged()
|
||||
}
|
||||
|
||||
override fun onSetInitialValue(restorePersistedValue: Boolean, defaultValue: Any?) {
|
||||
if (restorePersistedValue) {
|
||||
mDuration = getPersistedString(mDuration.toString()).toLongOrNull() ?: mDuration
|
||||
} else {
|
||||
mDuration = defaultValue?.toString()?.toLongOrNull() ?: mDuration
|
||||
persistString(mDuration.toString())
|
||||
}
|
||||
}
|
||||
|
||||
override fun onGetDefaultValue(a: TypedArray?, index: Int): Any {
|
||||
return try {
|
||||
a?.getString(index)?.toLongOrNull() ?: mDuration
|
||||
} catch (e: Exception) {
|
||||
mDuration
|
||||
}
|
||||
}
|
||||
|
||||
// Was previously a string
|
||||
override fun persistString(value: String?): Boolean {
|
||||
mDuration = value?.toLongOrNull() ?: mDuration
|
||||
return super.persistString(value)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,180 @@
|
||||
/*
|
||||
* Copyright 2021 Jeremy Jamet / Kunzisoft.
|
||||
*
|
||||
* This file is part of KeePassDX.
|
||||
*
|
||||
* KeePassDX is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* KeePassDX is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with KeePassDX. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
package com.kunzisoft.keepass.settings.preferencedialogfragment
|
||||
|
||||
import android.os.Bundle
|
||||
import android.view.View
|
||||
import android.widget.NumberPicker
|
||||
import com.kunzisoft.keepass.R
|
||||
import com.kunzisoft.keepass.settings.preference.DurationDialogPreference
|
||||
|
||||
|
||||
class DurationDialogFragmentCompat : InputPreferenceDialogFragmentCompat() {
|
||||
|
||||
private var mEnabled = true
|
||||
private var mDays = 0
|
||||
private var mHours = 0
|
||||
private var mMinutes = 0
|
||||
private var mSeconds = 0
|
||||
|
||||
private var daysNumberPicker: NumberPicker? = null
|
||||
private var hoursNumberPicker: NumberPicker? = null
|
||||
private var minutesNumberPicker: NumberPicker? = null
|
||||
private var secondsNumberPicker: NumberPicker? = null
|
||||
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
|
||||
// To get items from saved instance state
|
||||
if (savedInstanceState != null
|
||||
&& savedInstanceState.containsKey(ENABLE_KEY)
|
||||
&& savedInstanceState.containsKey(DAYS_KEY)
|
||||
&& savedInstanceState.containsKey(HOURS_KEY)
|
||||
&& savedInstanceState.containsKey(MINUTES_KEY)
|
||||
&& savedInstanceState.containsKey(SECONDS_KEY)) {
|
||||
mEnabled = savedInstanceState.getBoolean(ENABLE_KEY)
|
||||
mDays = savedInstanceState.getInt(DAYS_KEY)
|
||||
mHours = savedInstanceState.getInt(HOURS_KEY)
|
||||
mMinutes = savedInstanceState.getInt(MINUTES_KEY)
|
||||
mSeconds = savedInstanceState.getInt(SECONDS_KEY)
|
||||
} else {
|
||||
val currentPreference = preference
|
||||
if (currentPreference is DurationDialogPreference) {
|
||||
durationToDaysHoursMinutesSeconds(currentPreference.getDuration())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun durationToDaysHoursMinutesSeconds(duration: Long) {
|
||||
if (duration < 0) {
|
||||
mDays = 0
|
||||
mHours = 0
|
||||
mMinutes = 0
|
||||
mSeconds = 0
|
||||
} else {
|
||||
mDays = (duration / (24L * 60L * 60L * 1000L)).toInt()
|
||||
val daysMilliseconds = mDays * 24L * 60L * 60L * 1000L
|
||||
mHours = ((duration - daysMilliseconds) / (60L * 60L * 1000L)).toInt()
|
||||
val hoursMilliseconds = mHours * 60L * 60L * 1000L
|
||||
mMinutes = ((duration - daysMilliseconds - hoursMilliseconds) / (60L * 1000L)).toInt()
|
||||
val minutesMilliseconds = mMinutes * 60L * 1000L
|
||||
mSeconds = ((duration - daysMilliseconds - hoursMilliseconds - minutesMilliseconds) / (1000L)).toInt()
|
||||
}
|
||||
}
|
||||
|
||||
private fun assignValuesInViews() {
|
||||
daysNumberPicker?.value = mDays
|
||||
hoursNumberPicker?.value = mHours
|
||||
minutesNumberPicker?.value = mMinutes
|
||||
secondsNumberPicker?.value = mSeconds
|
||||
}
|
||||
|
||||
override fun onBindDialogView(view: View) {
|
||||
super.onBindDialogView(view)
|
||||
|
||||
daysNumberPicker = view.findViewById<NumberPicker>(R.id.days_picker).apply {
|
||||
minValue = 0
|
||||
maxValue = 364
|
||||
setOnValueChangedListener { _, _, newVal ->
|
||||
mDays = newVal
|
||||
activateSwitch()
|
||||
}
|
||||
}
|
||||
|
||||
hoursNumberPicker = view.findViewById<NumberPicker>(R.id.hours_picker).apply {
|
||||
minValue = 0
|
||||
maxValue = 23
|
||||
setOnValueChangedListener { _, _, newVal ->
|
||||
mHours = newVal
|
||||
activateSwitch()
|
||||
}
|
||||
}
|
||||
|
||||
minutesNumberPicker = view.findViewById<NumberPicker>(R.id.minutes_picker).apply {
|
||||
minValue = 0
|
||||
maxValue = 59
|
||||
setOnValueChangedListener { _, _, newVal ->
|
||||
mMinutes = newVal
|
||||
activateSwitch()
|
||||
}
|
||||
}
|
||||
|
||||
secondsNumberPicker = view.findViewById<NumberPicker>(R.id.seconds_picker).apply {
|
||||
minValue = 0
|
||||
maxValue = 59
|
||||
setOnValueChangedListener { _, _, newVal ->
|
||||
mSeconds = newVal
|
||||
activateSwitch()
|
||||
}
|
||||
}
|
||||
|
||||
setSwitchAction({ isChecked ->
|
||||
mEnabled = isChecked
|
||||
}, mDays + mHours + mMinutes + mSeconds > 0)
|
||||
|
||||
assignValuesInViews()
|
||||
}
|
||||
|
||||
private fun buildDuration(): Long {
|
||||
return if (mEnabled) {
|
||||
mDays * 24L * 60L * 60L * 1000L +
|
||||
mHours * 60L * 60L * 1000L +
|
||||
mMinutes * 60L * 1000L +
|
||||
mSeconds * 1000L
|
||||
} else {
|
||||
-1
|
||||
}
|
||||
}
|
||||
|
||||
override fun onSaveInstanceState(outState: Bundle) {
|
||||
super.onSaveInstanceState(outState)
|
||||
outState.putBoolean(ENABLE_KEY, mEnabled)
|
||||
outState.putInt(DAYS_KEY, mDays)
|
||||
outState.putInt(HOURS_KEY, mHours)
|
||||
outState.putInt(MINUTES_KEY, mMinutes)
|
||||
outState.putInt(SECONDS_KEY, mSeconds)
|
||||
}
|
||||
|
||||
override fun onDialogClosed(positiveResult: Boolean) {
|
||||
if (positiveResult) {
|
||||
val currentPreference = preference
|
||||
if (currentPreference is DurationDialogPreference) {
|
||||
currentPreference.setDuration(buildDuration())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
companion object {
|
||||
private const val ENABLE_KEY = "ENABLE_KEY"
|
||||
private const val DAYS_KEY = "DAYS_KEY"
|
||||
private const val HOURS_KEY = "HOURS_KEY"
|
||||
private const val MINUTES_KEY = "MINUTES_KEY"
|
||||
private const val SECONDS_KEY = "SECONDS_KEY"
|
||||
|
||||
fun newInstance(key: String): DurationDialogFragmentCompat {
|
||||
val fragment = DurationDialogFragmentCompat()
|
||||
val bundle = Bundle(1)
|
||||
bundle.putString(ARG_KEY, key)
|
||||
fragment.arguments = bundle
|
||||
|
||||
return fragment
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -154,4 +154,14 @@ abstract class InputPreferenceDialogFragmentCompat : PreferenceDialogFragmentCom
|
||||
onCheckedChange?.invoke(isChecked)
|
||||
}
|
||||
}
|
||||
|
||||
fun activateSwitch() {
|
||||
if (switchElementView?.isChecked != true)
|
||||
switchElementView?.isChecked = true
|
||||
}
|
||||
|
||||
fun deactivateSwitch() {
|
||||
if (switchElementView?.isChecked == true)
|
||||
switchElementView?.isChecked = false
|
||||
}
|
||||
}
|
||||
|
||||
5
app/src/main/res/drawable/ic_day_white_24dp.xml
Normal file
5
app/src/main/res/drawable/ic_day_white_24dp.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FFFFFF" android:pathData="M19,3h-1L18,1h-2v2L8,3L8,1L6,1v2L5,3c-1.11,0 -1.99,0.9 -1.99,2L3,19c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2L21,5c0,-1.1 -0.9,-2 -2,-2zM19,19L5,19L5,8h14v11zM7,10h5v5L7,15z"/>
|
||||
</vector>
|
||||
149
app/src/main/res/layout/pref_dialog_duration.xml
Normal file
149
app/src/main/res/layout/pref_dialog_duration.xml
Normal file
@@ -0,0 +1,149 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 2019 Jeremy Jamet / Kunzisoft.
|
||||
|
||||
This file is part of KeePassDX.
|
||||
|
||||
KeePassDX is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
KeePassDX is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with KeePassDX. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/edit"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:importantForAutofill="noExcludeDescendants"
|
||||
tools:targetApi="o">
|
||||
<androidx.appcompat.widget.AppCompatTextView
|
||||
android:id="@+id/explanation_text"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="0dp"
|
||||
android:gravity="center"
|
||||
android:layout_marginBottom="8dp"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
style="@style/KeepassDXStyle.TextAppearance.SmallTitle"/>
|
||||
|
||||
<androidx.appcompat.widget.SwitchCompat
|
||||
android:id="@+id/switch_element"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/enable"
|
||||
android:layout_marginStart="20dp"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_marginEnd="20dp"
|
||||
android:layout_marginRight="20dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/explanation_text" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintTop_toBottomOf="@+id/switch_element">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/duration_days_picker"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@+id/duration_hours_picker"
|
||||
app:layout_constraintRight_toLeftOf="@+id/duration_hours_picker">
|
||||
<NumberPicker
|
||||
android:id="@+id/days_picker"
|
||||
android:scrollbarFadeDuration="0"
|
||||
android:scrollbarDefaultDelayBeforeFade="0"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:src="@drawable/ic_day_white_24dp"
|
||||
app:tint="?android:attr/textColor"
|
||||
android:contentDescription="@string/digits" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/duration_hours_picker"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
tools:ignore="HardcodedText"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/duration_days_picker"
|
||||
app:layout_constraintLeft_toRightOf="@+id/duration_days_picker"
|
||||
app:layout_constraintEnd_toStartOf="@+id/duration_time_picker"
|
||||
app:layout_constraintRight_toLeftOf="@+id/duration_time_picker">
|
||||
<NumberPicker
|
||||
android:id="@+id/hours_picker"
|
||||
android:scrollbarFadeDuration="0"
|
||||
android:scrollbarDefaultDelayBeforeFade="0"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:textStyle="bold"
|
||||
android:text=":" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/duration_time_picker"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
tools:ignore="HardcodedText"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/duration_hours_picker"
|
||||
app:layout_constraintLeft_toRightOf="@+id/duration_hours_picker"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent">
|
||||
<NumberPicker
|
||||
android:id="@+id/minutes_picker"
|
||||
android:scrollbarFadeDuration="0"
|
||||
android:scrollbarDefaultDelayBeforeFade="0"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:textSize="28sp"
|
||||
android:text="'"/>
|
||||
<NumberPicker
|
||||
android:id="@+id/seconds_picker"
|
||||
android:scrollbarFadeDuration="0"
|
||||
android:scrollbarDefaultDelayBeforeFade="0"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:textSize="28sp"
|
||||
android:text="''"/>
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
@@ -122,17 +122,6 @@
|
||||
<string name="uppercase">Majúscules</string>
|
||||
<string name="version_label">Versió %1$s</string>
|
||||
<string name="education_unlock_summary">Introdueix una contrasenya i/o un arxiu clau per desbloquejar la base de dades.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 segons</item>
|
||||
<item>10 segons</item>
|
||||
<item>20 segons</item>
|
||||
<item>30 segons</item>
|
||||
<item>1 minut</item>
|
||||
<item>5 minuts</item>
|
||||
<item>15 minuts</item>
|
||||
<item>30 minuts</item>
|
||||
<item>Mai</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Petita</item>
|
||||
<item>Mitjana</item>
|
||||
|
||||
@@ -133,17 +133,6 @@
|
||||
<string name="education_unlock_summary">Databázi odemknete zadáním hesla a/nebo souboru s klíčem.
|
||||
\n
|
||||
\nNezapomeňte po každé úpravě zálohovat kopii svého .kdbx souboru na bezpečné místo.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 sekund</item>
|
||||
<item>10 sekund</item>
|
||||
<item>20 sekund</item>
|
||||
<item>30 sekund</item>
|
||||
<item>1 minuta</item>
|
||||
<item>5 minut</item>
|
||||
<item>15 minut</item>
|
||||
<item>30 minut</item>
|
||||
<item>Nikdy</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Malý</item>
|
||||
<item>Střední</item>
|
||||
|
||||
@@ -132,17 +132,6 @@
|
||||
<string name="education_unlock_summary">Angiv en adgangskode og/eller en nøglefil til at låse databasen op.
|
||||
\n
|
||||
\nHusk at gemme en kopi af .kdbx filen i et sikkert sted efter hver ændring.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 sekunder</item>
|
||||
<item>10 sekunder</item>
|
||||
<item>20 sekunder</item>
|
||||
<item>30 sekunder</item>
|
||||
<item>1 minut</item>
|
||||
<item>5 minutter</item>
|
||||
<item>15 minutter</item>
|
||||
<item>30 minutter</item>
|
||||
<item>Aldrig</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Lille</item>
|
||||
<item>Mellem</item>
|
||||
|
||||
@@ -147,17 +147,6 @@
|
||||
<string name="education_unlock_summary">Geben Sie das Passwort und/oder die Schlüsseldatei ein, um Ihre Datenbank zu entsperren.
|
||||
\n
|
||||
\nSichern Sie Ihre Datenbankdatei nach jeder Änderung an einem sicheren Ort.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 Sekunden</item>
|
||||
<item>10 Sekunden</item>
|
||||
<item>20 Sekunden</item>
|
||||
<item>30 Sekunden</item>
|
||||
<item>1 Minute</item>
|
||||
<item>5 Minuten</item>
|
||||
<item>15 Minuten</item>
|
||||
<item>30 Minuten</item>
|
||||
<item>Nie</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Klein</item>
|
||||
<item>Mittel</item>
|
||||
|
||||
@@ -135,17 +135,6 @@
|
||||
<string name="education_unlock_summary">Καταχωρίστε τον κωδικό πρόσβασης και /ή το αρχείο-κλειδί για να ξεκλειδώσετε τη βάση δεδομένων σας.
|
||||
\n
|
||||
\nΔημιουργήστε αντίγραφα ασφαλείας του αρχείου βάσης δεδομένων σας, σε ασφαλές μέρος μετά από κάθε αλλαγή.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 δευτερόλεπτα</item>
|
||||
<item>10 δευτερόλεπτα</item>
|
||||
<item>20 δευτερόλεπτα</item>
|
||||
<item>30 δευτερόλεπτα</item>
|
||||
<item>1 λεπτό</item>
|
||||
<item>5 λεπτά</item>
|
||||
<item>15 λεπτά</item>
|
||||
<item>30 λεπτά</item>
|
||||
<item>Ποτέ</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Μικρά</item>
|
||||
<item>Μεσαία</item>
|
||||
|
||||
@@ -125,17 +125,6 @@
|
||||
<string name="education_unlock_summary">Introduzca la contraseña y/o el archivo clave para desbloquear su base de datos.
|
||||
\n
|
||||
\nHaga una copia de seguridad de su archivo de base de datos en un lugar seguro después de cada cambio.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 segundos</item>
|
||||
<item>10 segundos</item>
|
||||
<item>20 segundos</item>
|
||||
<item>30 segundos</item>
|
||||
<item>1 minuto</item>
|
||||
<item>5 minutos</item>
|
||||
<item>15 minutos</item>
|
||||
<item>30 minutos</item>
|
||||
<item>Nunca</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Pequeño</item>
|
||||
<item>Mediano</item>
|
||||
|
||||
@@ -132,17 +132,6 @@
|
||||
<string name="uppercase">Maiuskulak</string>
|
||||
<string name="version_label">Bertsioa %1$s</string>
|
||||
<string name="education_unlock_summary">Sartu pasahitz eta / edo gako fitxategi bat zure datubasea desblokeatzeko.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 segundu</item>
|
||||
<item>10 segundu</item>
|
||||
<item>20 segundu</item>
|
||||
<item>30 segundu</item>
|
||||
<item>minutu 1</item>
|
||||
<item>5 minutu</item>
|
||||
<item>15 minutu</item>
|
||||
<item>30 minutu</item>
|
||||
<item>Inoiz ez</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Txikia</item>
|
||||
<item>Ertaina</item>
|
||||
|
||||
@@ -132,17 +132,6 @@
|
||||
<string name="uppercase">Isot kirjaimet</string>
|
||||
<string name="version_label">Versio %1$s</string>
|
||||
<string name="education_unlock_summary">Syötä salasana ja/tai avaintiedosto avataksesi tietokantasi.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 sekuntia</item>
|
||||
<item>10 sekuntia</item>
|
||||
<item>20 sekuntia</item>
|
||||
<item>30 sekuntia</item>
|
||||
<item>1 minuutti</item>
|
||||
<item>5 minuttia</item>
|
||||
<item>15 minuttia</item>
|
||||
<item>30 minuttia</item>
|
||||
<item>Ei koskaan</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Pieni</item>
|
||||
<item>Keskikokoinen</item>
|
||||
|
||||
@@ -258,17 +258,6 @@
|
||||
<string name="html_text_dev_feature_upgrade">N’oubliez pas de garder votre application à jour en installant les nouvelles versions.</string>
|
||||
<string name="download">Télécharger</string>
|
||||
<string name="contribute">Contribuer</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 secondes</item>
|
||||
<item>10 secondes</item>
|
||||
<item>20 secondes</item>
|
||||
<item>30 secondes</item>
|
||||
<item>1 minute</item>
|
||||
<item>5 minutes</item>
|
||||
<item>15 minutes</item>
|
||||
<item>30 minutes</item>
|
||||
<item>Jamais</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Petit</item>
|
||||
<item>Moyen</item>
|
||||
|
||||
@@ -140,17 +140,6 @@
|
||||
<string name="education_unlock_summary">Adja meg a jelszót és/vagy a kulcsfájlt, hogy kinyithassa az adatbázist.
|
||||
\n
|
||||
\nKészítsen biztonsági mentést az adatbázisról minden egyes módosítás után.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 másodperc</item>
|
||||
<item>10 másodperc</item>
|
||||
<item>20 másodperc</item>
|
||||
<item>30 másodperc</item>
|
||||
<item>1 perc</item>
|
||||
<item>5 perc</item>
|
||||
<item>15 perc</item>
|
||||
<item>30 perc</item>
|
||||
<item>Soha</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Kicsi</item>
|
||||
<item>Közepes</item>
|
||||
|
||||
@@ -142,17 +142,6 @@
|
||||
<string name="education_unlock_summary">Inserisci la password o il file chiave per sbloccare la base di dati.
|
||||
\n
|
||||
\nEseguire il backup del file del database in un luogo sicuro dopo ogni modifica.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 secondi</item>
|
||||
<item>10 secondi</item>
|
||||
<item>20 secondi</item>
|
||||
<item>30 secondi</item>
|
||||
<item>1 minuto</item>
|
||||
<item>5 minuti</item>
|
||||
<item>15 minuti</item>
|
||||
<item>30 minuti</item>
|
||||
<item>Mai</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Piccolo</item>
|
||||
<item>Medio</item>
|
||||
|
||||
@@ -129,17 +129,6 @@
|
||||
<string name="uppercase">רישית</string>
|
||||
<string name="version_label">גרסה %1$s</string>
|
||||
<string name="education_unlock_summary">הזן סיסמה ו/או קובץ מפתח כדי לפתוח את מסד הנתונים.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 שניות</item>
|
||||
<item>10 שניות</item>
|
||||
<item>20 שניות</item>
|
||||
<item>30 שניות</item>
|
||||
<item>דקה אחת</item>
|
||||
<item>5 דקות</item>
|
||||
<item>15 דקות</item>
|
||||
<item>30 דקות</item>
|
||||
<item>אף פעם</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>קטן</item>
|
||||
<item>בינוני</item>
|
||||
|
||||
@@ -470,17 +470,6 @@
|
||||
<string name="download_progression">進行中:%1$d%%</string>
|
||||
<string name="download_finalization">終了しています…</string>
|
||||
<string name="download_complete">完了しました!</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5秒</item>
|
||||
<item>10秒</item>
|
||||
<item>20秒</item>
|
||||
<item>30秒</item>
|
||||
<item>1分</item>
|
||||
<item>5分</item>
|
||||
<item>15分</item>
|
||||
<item>30分</item>
|
||||
<item>なし</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>小</item>
|
||||
<item>中</item>
|
||||
|
||||
@@ -129,17 +129,6 @@
|
||||
<string name="uppercase">Lielie burti</string>
|
||||
<string name="version_label">Versija %1$s</string>
|
||||
<string name="education_unlock_summary">Ievadiet paroli/atslēgas failu, lai atbloķētu savu datu bāzi.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 sekundes</item>
|
||||
<item>10 sekundes</item>
|
||||
<item>20 sekundes</item>
|
||||
<item>30 sekundes</item>
|
||||
<item>1 minūte</item>
|
||||
<item>5 minūtes</item>
|
||||
<item>15 minūtes</item>
|
||||
<item>30 minūtes</item>
|
||||
<item>Nekad</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Mazs</item>
|
||||
<item>Vidējs</item>
|
||||
|
||||
@@ -125,17 +125,6 @@
|
||||
<string name="education_unlock_summary">Voer het wachtwoord en/of sleutelbestand in om je database te ontgrendelen.
|
||||
\n
|
||||
\nMaak na elke aanpassing een kopie van je .kdbx-bestand op een veilige locatie.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 seconden</item>
|
||||
<item>10 seconden</item>
|
||||
<item>20 seconden</item>
|
||||
<item>30 seconden</item>
|
||||
<item>1 minuut</item>
|
||||
<item>5 minuten</item>
|
||||
<item>15 minuten</item>
|
||||
<item>30 minuten</item>
|
||||
<item>Nooit</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Klein</item>
|
||||
<item>Medium</item>
|
||||
|
||||
@@ -120,17 +120,6 @@
|
||||
<string name="uppercase">Store bokstavar</string>
|
||||
<string name="version_label">Utgåve %1$s</string>
|
||||
<string name="education_unlock_summary">Skriv inn passordet og/eller nøkkelfil for å låsa opp databasen.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 sekund</item>
|
||||
<item>10 sekund</item>
|
||||
<item>20 sekund</item>
|
||||
<item>30 sekund</item>
|
||||
<item>1 minutt</item>
|
||||
<item>5 minutt</item>
|
||||
<item>15 minutt</item>
|
||||
<item>30 minutt</item>
|
||||
<item>Aldri</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Liten</item>
|
||||
<item>Middels</item>
|
||||
|
||||
@@ -120,17 +120,6 @@
|
||||
<string name="education_unlock_summary">prowadź hasło i/lub plik klucza, aby odblokować bazę danych.
|
||||
\n
|
||||
\nUtwórz kopię zapasową pliku bazy danych w bezpiecznym miejscu po każdej zmianie.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 sekund</item>
|
||||
<item>10 sekund</item>
|
||||
<item>20 sekund</item>
|
||||
<item>30 sekund</item>
|
||||
<item>1 minuta</item>
|
||||
<item>5 minut</item>
|
||||
<item>15 minut</item>
|
||||
<item>30 minut</item>
|
||||
<item>Nigdy</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Mała</item>
|
||||
<item>Średnia</item>
|
||||
|
||||
@@ -123,17 +123,6 @@
|
||||
<string name="education_unlock_summary">Entre com a senha e/ou com o caminho para o arquivo-chave do banco de dados.
|
||||
\n
|
||||
\nGuarde uma cópia do seu arquivo do banco em um lugar mais seguro depois de cada alteração.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 segundos</item>
|
||||
<item>10 segundos</item>
|
||||
<item>20 segundos</item>
|
||||
<item>30 segundos</item>
|
||||
<item>1 minuto</item>
|
||||
<item>5 minutos</item>
|
||||
<item>15 minutos</item>
|
||||
<item>30 minutos</item>
|
||||
<item>Nunca</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Pequeno</item>
|
||||
<item>Médio</item>
|
||||
|
||||
@@ -139,17 +139,6 @@
|
||||
<string name="education_unlock_summary">Entre com a palavra-passe e/ou com o caminho para o ficheiro-chave da base de dados.
|
||||
\n
|
||||
\nGuarde uma cópia do seu ficheiro do banco num lugar mais seguro depois de cada alteração.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 segundos</item>
|
||||
<item>10 segundos</item>
|
||||
<item>20 segundos</item>
|
||||
<item>30 segundos</item>
|
||||
<item>1 minuto</item>
|
||||
<item>5 minutos</item>
|
||||
<item>15 minutos</item>
|
||||
<item>30 minutos</item>
|
||||
<item>Nunca</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Pequena</item>
|
||||
<item>Média</item>
|
||||
|
||||
@@ -141,17 +141,6 @@
|
||||
<string name="education_unlock_summary">Введите пароль и/или файл ключа, чтобы разблокировать базу.
|
||||
\n
|
||||
\nНе забывайте сохранять копию файла базы в безопасном месте после каждого изменения.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 секунд</item>
|
||||
<item>10 секунд</item>
|
||||
<item>20 секунд</item>
|
||||
<item>30 секунд</item>
|
||||
<item>1 минута</item>
|
||||
<item>5 минут</item>
|
||||
<item>15 минут</item>
|
||||
<item>30 минут</item>
|
||||
<item>Никогда</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Мелкий</item>
|
||||
<item>Обычный</item>
|
||||
|
||||
@@ -120,17 +120,6 @@
|
||||
<string name="uppercase">Veľké písmená</string>
|
||||
<string name="version_label">Version %1$s</string>
|
||||
<string name="education_unlock_summary">Vložte heslo a / alebo keyfile pre odomknutie databázy.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 sekúnd</item>
|
||||
<item>10 sekúnd</item>
|
||||
<item>20 sekúnd</item>
|
||||
<item>30 sekúnd</item>
|
||||
<item>1 minúta</item>
|
||||
<item>5 minút</item>
|
||||
<item>15 minút</item>
|
||||
<item>30 minút</item>
|
||||
<item>Nikdy</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Malé</item>
|
||||
<item>Stredné</item>
|
||||
|
||||
@@ -133,17 +133,6 @@
|
||||
<string name="education_unlock_summary">Ange lösenord och/eller nyckelfil för att öppna databasen.
|
||||
\n
|
||||
\nBacka upp databasfilen på ett säkert ställe efter varje ändring.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 sekunder</item>
|
||||
<item>10 sekunder</item>
|
||||
<item>20 sekunder</item>
|
||||
<item>30 sekunder</item>
|
||||
<item>1 minut</item>
|
||||
<item>5 minuter</item>
|
||||
<item>15 minuter</item>
|
||||
<item>30 minuter</item>
|
||||
<item>Aldrig</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Liten</item>
|
||||
<item>Medium</item>
|
||||
|
||||
@@ -123,17 +123,6 @@
|
||||
<string name="education_unlock_summary">Введіть пароль та/або файл ключа, щоб відкрити базу даних.
|
||||
\n
|
||||
\nСтворюйте резервну копію файлу бази даних після кожної внесеної зміни та зберігайте її у безпечному місці.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 секунд</item>
|
||||
<item>10 секунд</item>
|
||||
<item>20 секунд</item>
|
||||
<item>30 секунд</item>
|
||||
<item>1 хвилина</item>
|
||||
<item>5 хвилин</item>
|
||||
<item>15 хвилин</item>
|
||||
<item>30 хвилин</item>
|
||||
<item>Ніколи</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Малий</item>
|
||||
<item>Середній</item>
|
||||
|
||||
@@ -119,17 +119,6 @@
|
||||
<string name="education_unlock_summary">输入密码和/或密钥文件来解锁你的数据库。
|
||||
\n
|
||||
\n记得在每次做出更改后,将数据库文件备份至安全的地方。</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5秒</item>
|
||||
<item>10秒</item>
|
||||
<item>20秒</item>
|
||||
<item>30秒</item>
|
||||
<item>1分钟</item>
|
||||
<item>5分钟</item>
|
||||
<item>15分钟</item>
|
||||
<item>30分钟</item>
|
||||
<item>从不</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>小</item>
|
||||
<item>中</item>
|
||||
|
||||
@@ -117,17 +117,6 @@
|
||||
<string name="unsupported_db_version">不支援的資料庫版本。</string>
|
||||
<string name="uppercase">大寫</string>
|
||||
<string name="education_unlock_summary">輸入密碼和/或一個密鑰檔來解鎖你的資料庫.</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5秒</item>
|
||||
<item>10秒</item>
|
||||
<item>20秒</item>
|
||||
<item>30秒</item>
|
||||
<item>1分鐘</item>
|
||||
<item>5分鐘</item>
|
||||
<item>15分鐘</item>
|
||||
<item>30分鐘</item>
|
||||
<item>從不</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>小</item>
|
||||
<item>中</item>
|
||||
|
||||
@@ -47,6 +47,7 @@
|
||||
<string name="database_file_name_default" translatable="false">keepass</string>
|
||||
<string name="database_file_extension_default" translatable="false">.kdbx</string>
|
||||
<string name="database_default_name" translatable="false">KeePassDX Database</string>
|
||||
<string name="app_properties_file_name" translatable="false">keepassdx.properties</string>
|
||||
|
||||
<!--
|
||||
*******************
|
||||
@@ -105,6 +106,9 @@
|
||||
<string name="temp_advanced_unlock_timeout_default" translatable="false">36000000</string>
|
||||
<string name="biometric_delete_all_key_key" translatable="false">biometric_delete_all_key_key</string>
|
||||
|
||||
<string name="import_app_properties_key" translatable="false">import_app_properties_key</string>
|
||||
<string name="export_app_properties_key" translatable="false">export_app_properties_key</string>
|
||||
|
||||
<!-- Form Filling Settings -->
|
||||
<string name="settings_form_filling_key" translatable="false">settings_form_filling_key</string>
|
||||
|
||||
@@ -284,31 +288,6 @@
|
||||
<string name="timeout_backup_key" translatable="false">timeout_backup_key</string>
|
||||
<string name="timeout_default" translatable="false">300000</string>
|
||||
<string name="timeout_screen_off" translatable="false">1500</string>
|
||||
<string-array name="timeout_values">
|
||||
<item translatable="false">5000</item>
|
||||
<item translatable="false">10000</item>
|
||||
<item translatable="false">20000</item>
|
||||
<item translatable="false">30000</item>
|
||||
<item translatable="false">60000</item>
|
||||
<item translatable="false">300000</item>
|
||||
<item translatable="false">900000</item>
|
||||
<item translatable="false">1800000</item>
|
||||
<item translatable="false">-1</item>
|
||||
</string-array>
|
||||
<string-array name="large_timeout_values">
|
||||
<item translatable="false">300000</item>
|
||||
<item translatable="false">900000</item>
|
||||
<item translatable="false">1800000</item>
|
||||
<item translatable="false">3600000</item>
|
||||
<item translatable="false">7200000</item>
|
||||
<item translatable="false">18000000</item>
|
||||
<item translatable="false">36000000</item>
|
||||
<item translatable="false">86400000</item>
|
||||
<item translatable="false">172800000</item>
|
||||
<item translatable="false">604800000</item>
|
||||
<item translatable="false">2592000000</item>
|
||||
<item translatable="false">-1</item>
|
||||
</string-array>
|
||||
|
||||
<!-- Text Size -->
|
||||
<dimen name="list_icon_size_default" translatable="false">32dp</dimen>
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
<string name="encryption">Encryption</string>
|
||||
<string name="encryption_algorithm">Encryption algorithm</string>
|
||||
<string name="key_derivation_function">Key derivation function</string>
|
||||
<string name="app_timeout">App timeout</string>
|
||||
<string name="app_timeout">Timeout</string>
|
||||
<string name="app_timeout_summary">Idle time before locking the database</string>
|
||||
<string name="application">App</string>
|
||||
<string name="brackets">Brackets</string>
|
||||
@@ -234,6 +234,15 @@
|
||||
<string name="show_recent_files_summary">Show locations of recent databases</string>
|
||||
<string name="hide_broken_locations_title">Hide broken database links</string>
|
||||
<string name="hide_broken_locations_summary">Hide broken links in the list of recent databases</string>
|
||||
<string name="import_app_properties_title">Import app properties</string>
|
||||
<string name="import_app_properties_summary">Select a file to import app properties</string>
|
||||
<string name="export_app_properties_title">Export app properties</string>
|
||||
<string name="export_app_properties_summary">Create a file to export app properties</string>
|
||||
<string name="description_app_properties">KeePassDX properties to manage app settings</string>
|
||||
<string name="success_import_app_properties">App properties imported</string>
|
||||
<string name="error_import_app_properties">Error during app properties importation</string>
|
||||
<string name="success_export_app_properties">App properties exported</string>
|
||||
<string name="error_export_app_properties">Error during app properties exportation</string>
|
||||
<string name="root">Root</string>
|
||||
<string name="encryption_explanation">Database encryption algorithm used for all data.</string>
|
||||
<string name="kdf_explanation">To generate the key for the encryption algorithm, the master key is transformed using a randomly salted key derivation function.</string>
|
||||
@@ -302,6 +311,7 @@
|
||||
<string name="advanced_unlock_prompt_not_initialized">Unable to initialize advanced unlock prompt.</string>
|
||||
<string name="credential_before_click_advanced_unlock_button">Type in the password, and then click this button.</string>
|
||||
<string name="database_history">History</string>
|
||||
<string name="properties">Properties</string>
|
||||
<string name="menu_appearance_settings">Appearance</string>
|
||||
<string name="biometric">Biometric</string>
|
||||
<string name="device_credential">Device credential</string>
|
||||
@@ -525,31 +535,6 @@
|
||||
<string name="unit_kibibyte">KiB</string>
|
||||
<string name="unit_mebibyte">MiB</string>
|
||||
<string name="unit_gibibyte">GiB</string>
|
||||
<string-array name="timeout_options">
|
||||
<item>5 seconds</item>
|
||||
<item>10 seconds</item>
|
||||
<item>20 seconds</item>
|
||||
<item>30 seconds</item>
|
||||
<item>1 minute</item>
|
||||
<item>5 minutes</item>
|
||||
<item>15 minutes</item>
|
||||
<item>30 minutes</item>
|
||||
<item>Never</item>
|
||||
</string-array>
|
||||
<string-array name="large_timeout_options">
|
||||
<item>5 minutes</item>
|
||||
<item>15 minutes</item>
|
||||
<item>30 minutes</item>
|
||||
<item>1 hour</item>
|
||||
<item>2 hours</item>
|
||||
<item>5 hours</item>
|
||||
<item>10 hours</item>
|
||||
<item>24 hours</item>
|
||||
<item>48 hours</item>
|
||||
<item>1 week</item>
|
||||
<item>1 month</item>
|
||||
<item>Never</item>
|
||||
</string-array>
|
||||
<string-array name="list_size_options">
|
||||
<item>Small</item>
|
||||
<item>Medium</item>
|
||||
|
||||
@@ -47,13 +47,11 @@
|
||||
android:title="@string/temp_advanced_unlock_enable_title"
|
||||
android:summary="@string/temp_advanced_unlock_enable_summary"
|
||||
android:defaultValue="@bool/temp_advanced_unlock_enable_default"/>
|
||||
<ListPreference
|
||||
<com.kunzisoft.keepass.settings.preference.DurationDialogPreference
|
||||
android:key="@string/temp_advanced_unlock_timeout_key"
|
||||
android:title="@string/temp_advanced_unlock_timeout_title"
|
||||
android:summary="@string/temp_advanced_unlock_timeout_summary"
|
||||
android:dependency="@string/temp_advanced_unlock_enable_key"
|
||||
android:entries="@array/large_timeout_options"
|
||||
android:entryValues="@array/large_timeout_values"
|
||||
android:dialogTitle="@string/advanced_unlock_timeout"
|
||||
android:defaultValue="@string/temp_advanced_unlock_timeout_default"/>
|
||||
<Preference
|
||||
|
||||
@@ -69,12 +69,10 @@
|
||||
<PreferenceCategory
|
||||
android:title="@string/lock">
|
||||
|
||||
<ListPreference
|
||||
<com.kunzisoft.keepass.settings.preference.DurationDialogPreference
|
||||
android:key="@string/app_timeout_key"
|
||||
android:title="@string/app_timeout"
|
||||
android:summary="@string/app_timeout_summary"
|
||||
android:entries="@array/timeout_options"
|
||||
android:entryValues="@array/timeout_values"
|
||||
android:dialogTitle="@string/app_timeout"
|
||||
android:defaultValue="@string/timeout_default"/>
|
||||
<SwitchPreference
|
||||
@@ -150,4 +148,18 @@
|
||||
|
||||
</PreferenceCategory>
|
||||
|
||||
<PreferenceCategory
|
||||
android:title="@string/properties">
|
||||
|
||||
<Preference
|
||||
android:key="@string/import_app_properties_key"
|
||||
android:title="@string/import_app_properties_title"
|
||||
android:summary="@string/import_app_properties_summary"/>
|
||||
<Preference
|
||||
android:key="@string/export_app_properties_key"
|
||||
android:title="@string/export_app_properties_title"
|
||||
android:summary="@string/export_app_properties_summary"/>
|
||||
|
||||
</PreferenceCategory>
|
||||
|
||||
</PreferenceScreen>
|
||||
|
||||
@@ -66,12 +66,10 @@
|
||||
android:summary="@string/clear_clipboard_notification_summary"
|
||||
android:dependency="@string/clipboard_notifications_key"
|
||||
android:defaultValue="@bool/clear_clipboard_notification_default"/>
|
||||
<ListPreference
|
||||
<com.kunzisoft.keepass.settings.preference.DurationDialogPreference
|
||||
android:key="@string/clipboard_timeout_key"
|
||||
android:title="@string/clipboard_timeout"
|
||||
android:summary="@string/clipboard_timeout_summary"
|
||||
android:entries="@array/timeout_options"
|
||||
android:entryValues="@array/timeout_values"
|
||||
android:dialogTitle="@string/clipboard_timeout"
|
||||
android:defaultValue="@string/clipboard_timeout_default"/>
|
||||
<SwitchPreference
|
||||
|
||||
@@ -31,12 +31,10 @@
|
||||
android:summary="@string/keyboard_notification_entry_clear_close_summary"
|
||||
android:dependency="@string/keyboard_notification_entry_key"
|
||||
android:defaultValue="@bool/keyboard_notification_entry_clear_close_default"/>
|
||||
<ListPreference
|
||||
<com.kunzisoft.keepass.settings.preference.DurationDialogPreference
|
||||
android:key="@string/keyboard_entry_timeout_key"
|
||||
android:title="@string/keyboard_entry_timeout_title"
|
||||
android:summary="@string/keyboard_entry_timeout_summary"
|
||||
android:entries="@array/timeout_options"
|
||||
android:entryValues="@array/timeout_values"
|
||||
android:dialogTitle="@string/keyboard_entry_timeout_title"
|
||||
android:defaultValue="@string/keyboard_entry_timeout_default"
|
||||
android:dependency="@string/keyboard_notification_entry_clear_close_key"/>
|
||||
|
||||
@@ -38,8 +38,12 @@ object CipherFactory {
|
||||
}
|
||||
|
||||
@Throws(NoSuchAlgorithmException::class, NoSuchPaddingException::class, InvalidKeyException::class, InvalidAlgorithmParameterException::class)
|
||||
fun getTwofish(opmode: Int, key: ByteArray, IV: ByteArray): Cipher {
|
||||
val cipher: Cipher = Cipher.getInstance("Twofish/CBC/PKCS7PADDING")
|
||||
fun getTwofish(opmode: Int, key: ByteArray, IV: ByteArray, forceCompatibility: Boolean = false): Cipher {
|
||||
val cipher: Cipher = if (forceCompatibility) {
|
||||
Cipher.getInstance("Twofish/CBC/NoPadding")
|
||||
} else {
|
||||
Cipher.getInstance("Twofish/CBC/PKCS7PADDING")
|
||||
}
|
||||
cipher.init(opmode, SecretKeySpec(key, "AES"), IvParameterSpec(IV))
|
||||
return cipher
|
||||
}
|
||||
|
||||
3
fastlane/metadata/android/en-US/changelogs/71.txt
Normal file
3
fastlane/metadata/android/en-US/changelogs/71.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
* Import / Export app properties #839
|
||||
* Force twofish padding compatibility #955
|
||||
* Better timeout preference #579
|
||||
3
fastlane/metadata/android/fr-FR/changelogs/71.txt
Normal file
3
fastlane/metadata/android/fr-FR/changelogs/71.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
* Import / Export des propriétés de l'application #839
|
||||
* Force la compatibilité du bourrage twofish #955
|
||||
* Meilleure préférence d'expiration #579
|
||||
Reference in New Issue
Block a user