Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aristocratos committed Aug 29, 2022
1 parent 96fe9b0 commit da9a49e
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,28 @@

## News

##### 29 August 2022

Release v1.0.1

Changed from using OpenHardwareMonitor to LibreHardwareMonitor and using an intermediary DLL to export functions directly into btop4win.

Made some fixes for detecting GPU memory on integrated GPU's and overall detection for Ryzen Mobile chips.

The 2 available packages are now:

* btop4win:

Has no support for GPU monitoring, CPU temperature monitoring and does not have accurate CPU clock monitoring.

Does not require admin rights to run. (But it's still higly recommended to run as admin, otherwise some process information will be missing.)

* btop4win-LHM

Has full GPU monitoring, etc. using Libre Hardware Monitor Report, DLL's included in the package, ([source](https://github.com/aristocratos/librehardwaremonitor)).

Requires admin rights to run.

##### 28 August 2022

Release of btop4win v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/btop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ namespace Global {
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
};
const string Version = "1.0.0";
const string Version = "1.0.1";

int coreCount;
string overlay;
Expand Down
4 changes: 2 additions & 2 deletions src/btop_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ namespace Config {
{"vim_keys", "#* Set to True to enable \"h,j,k,l,g,G\" keys for directional control in lists.\n"
"#* Conflicting keys for h:\"help\" and k:\"kill\" is accessible while holding shift."},

{"enable_ohmr", "#* Enables monitoring of CPU temps, accurate CPU clock and GPU via Open Hardware Monitor Report.\n"
"#* Needs the btop modified fork (https://github.com/aristocratos/openhardwaremonitor) installed in OHMR folder where btop is installed."},
{"enable_ohmr", "#* Enables monitoring of CPU temps, accurate CPU clock and GPU via Libre Hardware Monitor.\n"
"#* Needs the my DLL's from my modified fork (https://github.com/aristocratos/librehardwaremonitor) installed in same folder as btop are installed."},

{"show_gpu", "#* Also show gpu stats in cpu and mem box. Needs Open Hardware Monitor Report enabled."},

Expand Down
10 changes: 5 additions & 5 deletions src/btop_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,20 +190,20 @@ namespace Menu {
"h (help) and k (kill)",
"is accessible while holding shift."},
{"enable_ohmr",
"Enable Open Hardware Monitor Report.",
"Enable Libre Hardware Monitor Report.",
"",
"Enables monitoring of CPU temps, CPU clock",
"and GPU.",
"Needs the btop modified fork of",
"Open Hardware Monitor installed in OHMR",
"folder where btop is installed.",
"Needs custom made DLL's from my fork of",
"Libre Hardware Monitor installed in same",
"folder as btop are installed.",
"",
"A restart is needed for this option to",
"take effect."},
{"show_gpu",
"Also show gpu stats in cpu and mem box.",
"",
"Only works if Open Hardware Monitor Report",
"Only works if Libre Hardware Monitor",
"is also enabled."},
{"selected_gpu",
"Which GPU to display if multiple is present.",
Expand Down

0 comments on commit da9a49e

Please sign in to comment.