v1.0.5 Bug fixes

This commit is contained in:
aristocratos 2021-09-22 17:31:17 +02:00
parent eedab3062e
commit 2f27d9fa17
3 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,11 @@
## v1.0.5
* Fixed: Load AVG sizing when hiding temperatures
* Fixed: Sizing constraints bug on start and boxes can be toggled from size error screen
* Fixed: UTF-8 check crashing if LANG was set to non existant locale
## v1.0.4 ## v1.0.4
* Fixed: Use /proc/pid/statm if RSS memory from /proc/pid/stat is faulty * Fixed: Use /proc/pid/statm if RSS memory from /proc/pid/stat is faulty

View File

@ -55,7 +55,7 @@ namespace Global {
{"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"}, {"#801414", "██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ╚═╝"},
{"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"}, {"#000000", "╚═════╝ ╚═╝ ╚═════╝ ╚═╝"},
}; };
const string Version = "1.0.4"; const string Version = "1.0.5";
int coreCount; int coreCount;
string overlay; string overlay;

View File

@ -1341,8 +1341,10 @@ namespace Menu {
menuMask.reset(); menuMask.reset();
menuMask.set(SizeError); menuMask.set(SizeError);
} }
for (const auto& i : iota(0, (int)menuMask.size())) { else {
if (menuMask.test(i)) currentMenu = i; for (const auto& i : iota(0, (int)menuMask.size())) {
if (menuMask.test(i)) currentMenu = i;
}
} }
} }