Updated Prerequisites

This commit is contained in:
aristocratos 2021-10-01 15:24:41 +02:00
parent 8d393b858f
commit a15f961b2f
2 changed files with 3 additions and 1 deletions

View file

@ -124,6 +124,7 @@ Also needs a UTF8 locale and a font that covers:
* Unicode Block “Braille Patterns” U+2800 - U+28FF (Not needed in TTY mode or with graphs set to type: block or tty.)
* Unicode Block “Geometric Shapes” U+25A0 - U+25FF
* Unicode Block "Box Drawing" and "Block Elements" U+2500 - U+259F
* Unicode Block "General punctuation" U+2005
### **Notice (Text rendering issues)**

View file

@ -339,7 +339,8 @@ namespace Tools {
for (string readstr; getline(file, readstr); out += readstr);
}
catch (const std::exception& e) {
throw std::runtime_error("readfile() : Exception when reading " + (string)path + " : " + e.what());
Logger::error("readfile() : Exception when reading " + (string)path + " : " + e.what());
return fallback;
}
return (out.empty() ? fallback : out);
}