mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Added the option to close DB without saving
Changed the way recent files are retrieved Stopped showing the DB Closed exception on suspend Reordering entries works Moved code from infra to application Cleanup
This commit is contained in:
@@ -27,7 +27,7 @@ namespace ModernKeePass.Application.Common.Interfaces
|
||||
void CloseDatabase();
|
||||
|
||||
Task AddEntry(string parentGroupId, string entryId);
|
||||
Task InsertEntry(string parentGroupId, string entryId, int index);
|
||||
Task MoveEntry(string parentGroupId, string entryId, int index);
|
||||
Task AddGroup(string parentGroupId, string groupId);
|
||||
void UpdateEntry(string entryId, string fieldName, object fieldValue);
|
||||
void UpdateGroup(string groupId);
|
||||
|
@@ -8,7 +8,7 @@ namespace ModernKeePass.Application.Common.Interfaces
|
||||
{
|
||||
int EntryCount { get; }
|
||||
Task<FileInfo> Get(string token, bool updateAccessTime = false);
|
||||
Task<IEnumerable<FileInfo>> GetAll();
|
||||
IEnumerable<FileInfo> GetAll();
|
||||
Task Add(FileInfo recentItem);
|
||||
void ClearAll();
|
||||
}
|
||||
|
Reference in New Issue
Block a user