Skip to content

Commit 0e1717b

Browse files
committed
Fixed a naming problem and pushed a new release
1 parent 4e4495f commit 0e1717b

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace NvAPIWrapper.Display
1010
/// This class contains and provides a way to modify the Digital Vibrance Control information regarding the
1111
/// saturation level of the display or the output
1212
/// </summary>
13-
public class DVIInformation : IDisplayDVCInfo
13+
public class DVCInformation : IDisplayDVCInfo
1414
{
1515
private readonly DisplayHandle _displayHandle = DisplayHandle.DefaultHandle;
1616
private readonly OutputId _outputId = OutputId.Invalid;
@@ -20,7 +20,7 @@ public class DVIInformation : IDisplayDVCInfo
2020
/// Creates a new instance of the class using a DisplayHandle
2121
/// </summary>
2222
/// <param name="displayHandle">The handle of the display.</param>
23-
public DVIInformation(DisplayHandle displayHandle)
23+
public DVCInformation(DisplayHandle displayHandle)
2424
{
2525
_displayHandle = displayHandle;
2626
}
@@ -29,7 +29,7 @@ public DVIInformation(DisplayHandle displayHandle)
2929
/// Creates a new instance of this class using a OutputId
3030
/// </summary>
3131
/// <param name="outputId">The output identification of a display or an output</param>
32-
public DVIInformation(OutputId outputId)
32+
public DVCInformation(OutputId outputId)
3333
{
3434
_outputId = outputId;
3535
}

NvAPIWrapper/Display/Display.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ public DisplayDevice DisplayDevice
4141
/// <summary>
4242
/// Gets the corresponding Digital Vibrance Control information
4343
/// </summary>
44-
public DVIInformation DigitalVibranceControl
44+
public DVCInformation DigitalVibranceControl
4545
{
46-
get => new DVIInformation(Handle);
46+
get => new DVCInformation(Handle);
4747
}
4848

4949
/// <summary>

NvAPIWrapper/GPU/GPUOutput.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ internal GPUOutput(OutputId outputId, PhysicalGPU gpu)
3737
/// <summary>
3838
/// Gets the corresponding Digital Vibrance Control information
3939
/// </summary>
40-
public DVIInformation DigitalVibranceControl
40+
public DVCInformation DigitalVibranceControl
4141
{
42-
get => new DVIInformation(OutputId);
42+
get => new DVCInformation(OutputId);
4343
}
4444

4545
/// <summary>

NvAPIWrapper/NvAPIWrapper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
5-
<Version>0.7.2.61</Version>
5+
<Version>0.7.2.63</Version>
66
<Company>falahati.net</Company>
77
<Description>NvAPIWrapper is a .Net wrapper for NVIDIA public API</Description>
88
<Authors>Soroush Falahati</Authors>

0 commit comments

Comments
 (0)