Increase version number

WIP new breadcrumb (with hyperlinks)
This commit is contained in:
BONNEVILLE Geoffroy
2018-06-08 18:46:07 +02:00
parent a7f2ae91a7
commit f158191e52
2 changed files with 18 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
<?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">
<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>
<DisplayName>ModernKeePass</DisplayName>
<PublisherDisplayName>wismna</PublisherDisplayName>

View File

@@ -92,6 +92,23 @@ namespace ModernKeePass.ViewModels
get { return _isMenuClosed; }
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
{