mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Increase version number
WIP new breadcrumb (with hyperlinks)
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
|
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
|
||||||
<Identity Name="wismna.ModernKeePass" Publisher="CN=0719A91A-C322-4EE0-A257-E60733EECF06" Version="1.13.0.32" />
|
<Identity Name="wismna.ModernKeePass" Publisher="CN=0719A91A-C322-4EE0-A257-E60733EECF06" Version="1.14.0.32" />
|
||||||
<Properties>
|
<Properties>
|
||||||
<DisplayName>ModernKeePass</DisplayName>
|
<DisplayName>ModernKeePass</DisplayName>
|
||||||
<PublisherDisplayName>wismna</PublisherDisplayName>
|
<PublisherDisplayName>wismna</PublisherDisplayName>
|
||||||
|
@@ -92,6 +92,23 @@ namespace ModernKeePass.ViewModels
|
|||||||
get { return _isMenuClosed; }
|
get { return _isMenuClosed; }
|
||||||
set { SetProperty(ref _isMenuClosed, value); }
|
set { SetProperty(ref _isMenuClosed, value); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ObservableCollection<GroupVm> BreadCrumb
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
var groups = new List<GroupVm>();
|
||||||
|
var group = this;
|
||||||
|
while (group.ParentGroup != null)
|
||||||
|
{
|
||||||
|
group = group.ParentGroup;
|
||||||
|
groups.Add(group);
|
||||||
|
}
|
||||||
|
|
||||||
|
groups.Reverse();
|
||||||
|
return new ObservableCollection<GroupVm>(groups);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public string Path
|
public string Path
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user