Skip to content

Commit

Permalink
Updated WinLibrary to make TaskBarLayout more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymacdonald committed Jun 2, 2022
1 parent 7688628 commit 6581088
Show file tree
Hide file tree
Showing 6 changed files with 135 additions and 115 deletions.
4 changes: 2 additions & 2 deletions AMDInfo/AMDLibrary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ public string PrintActiveConfig()

SharedLogger.logger.Trace($"AMDLibrary/PrintActiveConfig: Converted ADL2_Adapter_AdapterInfoX4_Get memory buffer into a {adapterArray.Length} long array about AMD Adapter #{adapterIndex}.");

AMD_ADAPTER_CONFIG savedAdapterConfig = new AMD_ADAPTER_CONFIG();
//AMD_ADAPTER_CONFIG savedAdapterConfig = new AMD_ADAPTER_CONFIG();
ADL_ADAPTER_INFOX2 oneAdapter = adapterArray[0];
if (oneAdapter.Exist != 1)
{
Expand Down Expand Up @@ -1730,7 +1730,7 @@ private List<string> GetSomeDisplayIdentifiers(bool allDisplays = false)

SharedLogger.logger.Trace($"AMDLibrary/GetSomeDisplayIdentifiers: Converted ADL2_Adapter_AdapterInfoX4_Get memory buffer into a {adapterArray.Length} long array about AMD Adapter #{adapterIndex}.");

AMD_ADAPTER_CONFIG savedAdapterConfig = new AMD_ADAPTER_CONFIG();
//AMD_ADAPTER_CONFIG savedAdapterConfig = new AMD_ADAPTER_CONFIG();
ADL_ADAPTER_INFOX2 oneAdapter = adapterArray[0];
if (oneAdapter.Exist != 1)
{
Expand Down
4 changes: 2 additions & 2 deletions AMDInfo/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ static void Main(string[] args)
NLog.LogManager.Configuration = config;

// Start the Log file
SharedLogger.logger.Info($"AMDInfo/Main: Starting AMDInfo v1.7.6");
SharedLogger.logger.Info($"AMDInfo/Main: Starting AMDInfo v1.7.7");


Console.WriteLine($"\nAMDInfo v1.7.6");
Console.WriteLine($"\nAMDInfo v1.7.7");
Console.WriteLine($"==============");
Console.WriteLine($"By Terry MacDonald 2022\n");

Expand Down
4 changes: 2 additions & 2 deletions AMDInfo/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.6.0")]
[assembly: AssemblyFileVersion("1.7.6.0")]
[assembly: AssemblyVersion("1.7.7.0")]
[assembly: AssemblyFileVersion("1.7.7.0")]
Loading

0 comments on commit 6581088

Please sign in to comment.