Show current installed driver version in Updates tooltips https://github.com/seerge/g-helper/issues/2572

This commit is contained in:
Serge
2024-05-10 21:21:38 +02:00
parent e642c550f9
commit df56e2af23
3 changed files with 20 additions and 5 deletions

View File

@@ -153,6 +153,7 @@ namespace GHelper
table.Controls.Add(new Label { Text = driver.date, Anchor = AnchorStyles.Left, Dock = DockStyle.Fill, Padding = new Padding(5, 5, 5, 5) }, 2, table.RowCount);
table.Controls.Add(versionLabel, 3, table.RowCount);
table.RowCount++;
});
}
@@ -166,11 +167,13 @@ namespace GHelper
});
}
private void _VisualiseNewDriver(int position, int newer, TableLayoutPanel table)
private void _VisualiseNewDriver(int position, int newer, string tip, TableLayoutPanel table)
{
var label = table.GetControlFromPosition(3, position) as LinkLabel;
if (label != null)
{
toolTip.SetToolTip(label, tip);
if (newer == DRIVER_NEWER)
{
label.AccessibleName = label.AccessibleName + Properties.Strings.NewUpdates;
@@ -183,18 +186,18 @@ namespace GHelper
}
}
public void VisualiseNewDriver(int position, int newer, TableLayoutPanel table)
public void VisualiseNewDriver(int position, int newer, string tip, TableLayoutPanel table)
{
if (InvokeRequired)
{
Invoke(delegate
{
_VisualiseNewDriver(position, newer, table);
_VisualiseNewDriver(position, newer, tip, table);
});
}
else
{
_VisualiseNewDriver(position, newer, table);
_VisualiseNewDriver(position, newer, tip, table);
}
}
@@ -300,6 +303,8 @@ namespace GHelper
foreach (var driver in drivers)
{
int newer = DRIVER_NOT_FOUND;
string tip = driver.version;
if (type == 0 && driver.hardwares.ToString().Length > 0)
for (int k = 0; k < driver.hardwares.GetArrayLength(); k++)
{
@@ -310,14 +315,18 @@ namespace GHelper
{
newer = Math.Min(newer, new Version(driver.version).CompareTo(new Version(localVersion)));
Logger.WriteLine(driver.title + " " + deviceID + " " + driver.version + " vs " + localVersion + " = " + newer);
tip = "Download: " + driver.version + "\n" + "Installed: " + localVersion;
}
}
if (type == 1)
{
newer = Int32.Parse(driver.version) > Int32.Parse(bios) ? 1 : -1;
tip = "Download: " + driver.version + "\n" + "Installed: " + bios;
}
VisualiseNewDriver(count, newer, table);
VisualiseNewDriver(count, newer, tip, table);
if (newer == DRIVER_NEWER)
{