@@ -63,21 +64,24 @@
-
+
Request
- @TaskReq.Count
+ @TaskReq.Count
-
+
Running
- @TaskRun.Count
+ @TaskRun.Count
-
+
Completed
- @TaskDone.Count
+ @TaskDone.Count
@@ -90,11 +94,22 @@
Detail Info
-
- - TDB Info 1
- - TDB Info 2
- - TDB Info 3
-
+ @if (showDetail)
+ {
+
+ @foreach (var item in DetailData)
+ {
+ -
+
+ @item.Key
+
+
+ @item.Value
+
+
+ }
+
+ }
diff --git a/LiMan.UI/Components/InstAppPareto.razor.cs b/LiMan.UI/Components/InstAppPareto.razor.cs
index a2d28c7..6ed6a3f 100644
--- a/LiMan.UI/Components/InstAppPareto.razor.cs
+++ b/LiMan.UI/Components/InstAppPareto.razor.cs
@@ -191,6 +191,31 @@ namespace LiMan.UI.Components
#endregion Private Fields
+ private string cssNumPill(int numRec)
+ {
+ return numRec > 0 ? "text-bg-primary" : "text-bg-secondary";
+ }
+
+ private bool showDetail = false;
+
+ private Dictionary DetailData = new Dictionary();
+
+ private void showDetReq()
+ {
+ showDetail = true;
+ DetailData = new Dictionary(TaskReq);
+ }
+ private void showDetRun()
+ {
+ showDetail = true;
+ DetailData = new Dictionary(TaskRun);
+ }
+ private void showDetDone()
+ {
+ showDetail = true;
+ DetailData = new Dictionary(TaskDone);
+ }
+
#region Private Properties
private string CssDivDetail
diff --git a/LiMan.UI/Components/InstallInfoStats.razor b/LiMan.UI/Components/InstallInfoStats.razor
index aaa9bd6..c85926f 100644
--- a/LiMan.UI/Components/InstallInfoStats.razor
+++ b/LiMan.UI/Components/InstallInfoStats.razor
@@ -130,7 +130,7 @@
-
+
diff --git a/LiMan.UI/LiMan.UI.csproj b/LiMan.UI/LiMan.UI.csproj
index be1e951..21ad1de 100644
--- a/LiMan.UI/LiMan.UI.csproj
+++ b/LiMan.UI/LiMan.UI.csproj
@@ -2,7 +2,7 @@
net6.0
- 2.1.2501.1717
+ 2.1.2501.1719
LiMan.UI
LiMan.UI
diff --git a/LiMan.UI/Resources/ChangeLog.html b/LiMan.UI/Resources/ChangeLog.html
index 85af114..9e0b4c3 100644
--- a/LiMan.UI/Resources/ChangeLog.html
+++ b/LiMan.UI/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
License Manager
- Versione: 2.1.2501.1717
+ Versione: 2.1.2501.1719
Note di rilascio:
-
diff --git a/LiMan.UI/Resources/VersNum.txt b/LiMan.UI/Resources/VersNum.txt
index 8c10e37..729ae11 100644
--- a/LiMan.UI/Resources/VersNum.txt
+++ b/LiMan.UI/Resources/VersNum.txt
@@ -1 +1 @@
-2.1.2501.1717
+2.1.2501.1719
diff --git a/LiMan.UI/Resources/manifest.xml b/LiMan.UI/Resources/manifest.xml
index 7188436..be00817 100644
--- a/LiMan.UI/Resources/manifest.xml
+++ b/LiMan.UI/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 2.1.2501.1717
+ 2.1.2501.1719
https://nexus.steamware.net/repository/SWS/LiMan/stable/LAST/LiMan.UI.zip
https://nexus.steamware.net/repository/SWS/LiMan/stable/LAST/ChangeLog.html
false
|