feature: show submodule's URL in tooltip (#1307)

This commit is contained in:
leo 2025-05-14 14:21:18 +08:00
parent 20a239621b
commit 61bb0f7dc7
No known key found for this signature in database
7 changed files with 81 additions and 15 deletions

View file

@ -13,6 +13,7 @@
{
public string Path { get; set; } = string.Empty;
public string SHA { get; set; } = string.Empty;
public string URL { get; set; } = string.Empty;
public SubmoduleStatus Status { get; set; } = SubmoduleStatus.Normal;
public bool IsDirty => Status > SubmoduleStatus.NotInited;
}