Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
MaynardMiner committed Nov 26, 2018
1 parent 410df1e commit d8491c2
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/powershell/Bus.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ Function Get-BusFunctionID {
$subvendorlist = Get-Content ".\build\data\vendor.json" | ConvertFrom-Json
$getsubvendor = $Devices[$i].PNPDeviceID -split "&REV_" | Select -first 1
$getsubvendor = $getsubvendor.Substring($getsubvendor.Length - 4)
if($subvendorlist.$getsubvendor){$subvendor = $subvendorlist.$getsubvendor}elseif($Devices[$i].PNPDeviceID -match "PCI\\VEN_10DE*"){$subvendor = "nvidia"}else{$subvendor = "amd"}
if($subvendorlist.$getsubvendor){$subvendor = $subvendorlist.$getsubvendor}
elseif($Devices[$i].PNPDeviceID -match "PCI\\VEN_10DE*"){$subvendor = "nvidia"}
else{$subvendor = "amd"}
if($Devices[$i].PNPDeviceID -match "PCI\\VEN_10DE*"){$brand = "nvidia"}else{$brand = "amd"}
$GPURAM = $Devices[$i].AdapterRam
$GPURAM = (Get-WmiObject Win32_VideoController | where PNPDeviceID -eq $Devices[$i].PNPDeviceID).AdapterRam
Expand Down
37 changes: 37 additions & 0 deletions help files/Change.log
Original file line number Diff line number Diff line change
Expand Up @@ -1100,3 +1100,40 @@ Windows core side is 100%, and works with HiveOS
-Added user configured oc settings to Lite API
-AMD oc is 100% working: Multiple user tested.
-Added fans to AMD OC: 100% working.

1.7.7

NOTES: -HiveID argument has been removed!
-HivePassword argument has been removed!

Use -Farm_Hash argument for Windows version.

-Windows AMD initial test version!
-Type AMD should work on windows version.
-coded an entire ADL exectuable to get stats.
-oc is not done yet- Do not use OC tuning for AMD.
-please report if issues.

-Fixed typo causing oc setting on HiveOS website
for Windows version.
-It's not coded yet, but users will soon be
able to set oc for windows.

-Updated Trex
-Updated Enemy
-Updated CryptoDredge
-Updated Xmrig-amd
-Updated Xmrstak
-Updated fancyIX
-Updated WildRig-Multi

-fixed typo in benchmark all
-fixed typo in benchmark timeout
-code staging for wallet tracking (not done yet)
-fixed busid for NVIDIA gpus
-basic subvendors for NVIDIA & AMD (Windows)
-Works if it can be detected
-codefixes regarding windows stats
-background Agent for windows displays power.
-more code staging for ASIC.

0 comments on commit d8491c2

Please sign in to comment.