Skip to content

Commit

Permalink
Fixed a naming problem and pushed a new release
Browse files Browse the repository at this point in the history
  • Loading branch information
falahati committed Mar 21, 2020
1 parent 4e4495f commit 0e1717b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Expand Up @@ -10,7 +10,7 @@ namespace NvAPIWrapper.Display
/// This class contains and provides a way to modify the Digital Vibrance Control information regarding the
/// saturation level of the display or the output
/// </summary>
public class DVIInformation : IDisplayDVCInfo
public class DVCInformation : IDisplayDVCInfo
{
private readonly DisplayHandle _displayHandle = DisplayHandle.DefaultHandle;
private readonly OutputId _outputId = OutputId.Invalid;
Expand All @@ -20,7 +20,7 @@ public class DVIInformation : IDisplayDVCInfo
/// Creates a new instance of the class using a DisplayHandle
/// </summary>
/// <param name="displayHandle">The handle of the display.</param>
public DVIInformation(DisplayHandle displayHandle)
public DVCInformation(DisplayHandle displayHandle)
{
_displayHandle = displayHandle;
}
Expand All @@ -29,7 +29,7 @@ public DVIInformation(DisplayHandle displayHandle)
/// Creates a new instance of this class using a OutputId
/// </summary>
/// <param name="outputId">The output identification of a display or an output</param>
public DVIInformation(OutputId outputId)
public DVCInformation(OutputId outputId)
{
_outputId = outputId;
}
Expand Down
4 changes: 2 additions & 2 deletions NvAPIWrapper/Display/Display.cs
Expand Up @@ -41,9 +41,9 @@ public DisplayDevice DisplayDevice
/// <summary>
/// Gets the corresponding Digital Vibrance Control information
/// </summary>
public DVIInformation DigitalVibranceControl
public DVCInformation DigitalVibranceControl
{
get => new DVIInformation(Handle);
get => new DVCInformation(Handle);
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions NvAPIWrapper/GPU/GPUOutput.cs
Expand Up @@ -37,9 +37,9 @@ internal GPUOutput(OutputId outputId, PhysicalGPU gpu)
/// <summary>
/// Gets the corresponding Digital Vibrance Control information
/// </summary>
public DVIInformation DigitalVibranceControl
public DVCInformation DigitalVibranceControl
{
get => new DVIInformation(OutputId);
get => new DVCInformation(OutputId);
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion NvAPIWrapper/NvAPIWrapper.csproj
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<Version>0.7.2.61</Version>
<Version>0.7.2.63</Version>
<Company>falahati.net</Company>
<Description>NvAPIWrapper is a .Net wrapper for NVIDIA public API</Description>
<Authors>Soroush Falahati</Authors>
Expand Down

0 comments on commit 0e1717b

Please sign in to comment.