mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Add support for multiple URLs in an entry
* Fixes #398 The new Browser Integration entry settings page has a list view with any additional URL's. These URL's are added to the entry attributes with KP2A_URL_<counter>, which means those are directly compatible with Keepass2Android.
This commit is contained in:
parent
e50261a99c
commit
f726d7501f
19 changed files with 568 additions and 104 deletions
|
@ -124,7 +124,7 @@ void TestEntry::testClone()
|
|||
QVERIFY(entryCloneResetTime->timeInfo().creationTime() != entryOrg->timeInfo().creationTime());
|
||||
|
||||
// Date back history of original entry
|
||||
Entry * firstHistoryItem = entryOrg->historyItems()[0];
|
||||
Entry* firstHistoryItem = entryOrg->historyItems()[0];
|
||||
TimeInfo entryOrgHistoryTimeInfo = firstHistoryItem->timeInfo();
|
||||
QDateTime datedBackEntryOrgModificationTime = entryOrgHistoryTimeInfo.lastModificationTime().addMSecs(-10);
|
||||
entryOrgHistoryTimeInfo.setLastModificationTime(datedBackEntryOrgModificationTime);
|
||||
|
@ -140,9 +140,8 @@ void TestEntry::testClone()
|
|||
// Timeinfo of history items should not be modified
|
||||
QList<Entry*> entryOrgHistory = entryOrg->historyItems(), clonedHistory = entryCloneHistory->historyItems();
|
||||
auto entryOrgHistoryItem = entryOrgHistory.constBegin();
|
||||
for(auto entryCloneHistoryItem = clonedHistory.constBegin()
|
||||
;entryCloneHistoryItem != clonedHistory.constEnd()
|
||||
;++entryCloneHistoryItem, ++entryOrgHistoryItem) {
|
||||
for (auto entryCloneHistoryItem = clonedHistory.constBegin(); entryCloneHistoryItem != clonedHistory.constEnd();
|
||||
++entryCloneHistoryItem, ++entryOrgHistoryItem) {
|
||||
QCOMPARE((*entryOrgHistoryItem)->timeInfo(), (*entryCloneHistoryItem)->timeInfo());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue