Skip to content

Commit

Permalink
Version 100.1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Urban committed Jul 5, 2024
1 parent 3e97cc0 commit e793fb1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Hardware.Info/Hardware.Info.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<PropertyGroup>
<Product>Hardware.Info</Product>
<PackageId>Hardware.Info</PackageId>
<PackageVersion>100.1.0.0</PackageVersion>
<Version>100.1.0.0</Version>
<PackageVersion>100.1.0.1</PackageVersion>
<Version>100.1.0.1</Version>
<Authors>Jinjinov</Authors>
<Description>Battery, BIOS, CPU - processor, storage drive, keyboard, RAM - memory, monitor, motherboard, mouse, NIC - network adapter, printer, sound card - audio card, graphics card - video card. Hardware.Info is a .NET Standard 2.0 library and uses WMI on Windows, /dev, /proc, /sys on Linux and sysctl, system_profiler on macOS.</Description>
<Copyright>Copyright (c) Jinjinov 2022</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Hardware.Info/Linux/HardwareInfoRetrieval.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ 1680x1050 59.88

lines = processOutput.Split(new[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries);

foreach (string line in lines.Where(l => l.Contains("VGA compatible controller")))
foreach (string line in lines.Where(l => l.Contains("VGA compatible controller") || l.Contains("3D controller") || l.Contains("Display controller")))
{
string[] split = line.Split(':');

Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Battery, BIOS, CPU - processor, storage drive, keyboard, RAM - memory, monitor,
1. Include NuGet package from https://www.nuget.org/packages/Hardware.Info

<ItemGroup>
<PackageReference Include="Hardware.Info" Version="100.1.0.0" />
<PackageReference Include="Hardware.Info" Version="100.1.0.1" />
</ItemGroup>

2. Call `RefreshAll()` or one of the other `Refresh*()` methods:
Expand Down Expand Up @@ -227,6 +227,8 @@ Setting `includeNetworkAdapterConfiguration` to `false` has only a small impact

## Version history:

- 100.1.0.1
- Fixed `GetVideoControllerList` in Linux - thanks to [@NogginBops](https://github.com/NogginBops)
- 100.1.0.0
- Fixed `GetDriveList` in Linux - thanks to [@GusanoGris](https://github.com/GusanoGris)
- Added `Microsoft.SourceLink.GitHub` - by [@andreas-eriksson](https://github.com/andreas-eriksson)
Expand Down

0 comments on commit e793fb1

Please sign in to comment.