mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
feat: Instant in copy #1889
This commit is contained in:
@@ -3,7 +3,7 @@ KeePassDX(4.1.0)
|
|||||||
* Generate keyfile #1290
|
* Generate keyfile #1290
|
||||||
* Hide template group #1894
|
* Hide template group #1894
|
||||||
* Group count sum recursively #421
|
* Group count sum recursively #421
|
||||||
* Small fixes #1711 #1831 #1780 #1821 #1863
|
* Small fixes #1711 #1831 #1780 #1821 #1863 #1889
|
||||||
|
|
||||||
KeePassDX(4.0.8)
|
KeePassDX(4.0.8)
|
||||||
* Fix graphical bug that prevented databases from being opened on some versions of Android #1848 #1850
|
* Fix graphical bug that prevented databases from being opened on some versions of Android #1848 #1850
|
||||||
|
|||||||
@@ -114,6 +114,7 @@ import com.kunzisoft.keepass.view.showActionErrorIfNeeded
|
|||||||
import com.kunzisoft.keepass.view.updateLockPaddingLeft
|
import com.kunzisoft.keepass.view.updateLockPaddingLeft
|
||||||
import com.kunzisoft.keepass.viewmodels.GroupEditViewModel
|
import com.kunzisoft.keepass.viewmodels.GroupEditViewModel
|
||||||
import com.kunzisoft.keepass.viewmodels.GroupViewModel
|
import com.kunzisoft.keepass.viewmodels.GroupViewModel
|
||||||
|
import org.joda.time.Instant
|
||||||
|
|
||||||
|
|
||||||
class GroupActivity : DatabaseLockActivity(),
|
class GroupActivity : DatabaseLockActivity(),
|
||||||
@@ -339,8 +340,9 @@ class GroupActivity : DatabaseLockActivity(),
|
|||||||
R.id.menu_save_copy_to -> {
|
R.id.menu_save_copy_to -> {
|
||||||
mExternalFileHelper?.createDocument(
|
mExternalFileHelper?.createDocument(
|
||||||
getString(R.string.database_file_name_default) +
|
getString(R.string.database_file_name_default) +
|
||||||
getString(R.string.database_file_name_copy) +
|
"_" +
|
||||||
mDatabase?.defaultFileExtension)
|
Instant.now().toString() +
|
||||||
|
mDatabase?.defaultFileExtension)
|
||||||
}
|
}
|
||||||
R.id.menu_lock_all -> {
|
R.id.menu_lock_all -> {
|
||||||
lockAndExit()
|
lockAndExit()
|
||||||
|
|||||||
@@ -50,7 +50,6 @@
|
|||||||
|
|
||||||
<!-- File Path -->
|
<!-- File Path -->
|
||||||
<string name="database_file_name_default" translatable="false">keepass</string>
|
<string name="database_file_name_default" translatable="false">keepass</string>
|
||||||
<string name="database_file_name_copy" translatable="false">_copy</string>
|
|
||||||
<string name="database_file_extension_default" translatable="false">.kdbx</string>
|
<string name="database_file_extension_default" translatable="false">.kdbx</string>
|
||||||
<string name="database_default_name" translatable="false">KeePassDX Database</string>
|
<string name="database_default_name" translatable="false">KeePassDX Database</string>
|
||||||
<string name="app_properties_file_name" translatable="false">keepassdx_%1$s.properties</string>
|
<string name="app_properties_file_name" translatable="false">keepassdx_%1$s.properties</string>
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
* Generate keyfile #1290
|
* Generate keyfile #1290
|
||||||
* Hide template group #1894
|
* Hide template group #1894
|
||||||
* Group count sum recursively #421
|
* Group count sum recursively #421
|
||||||
* Small fixes #1711 #1831 #1780 #1821 #1863
|
* Small fixes #1711 #1831 #1780 #1821 #1863 #1889
|
||||||
Reference in New Issue
Block a user