@@ -133,7 +133,7 @@ int main(){
133133
134134 // ========== AUTO CONFIG FILE SETUP ==========
135135 // true = dev mode (loads local file), false = production mode (extracts from EXE)
136- bool LOAD_DEFAULT_CONFIG = true ; // must be false for production releases
136+ bool LOAD_DEFAULT_CONFIG = false ; // must be false for production releases
137137
138138 string configDir = " C:\\ Users\\ Public\\ BinaryFetch" ;
139139 string userConfigPath = configDir + " \\ BinaryFetch_Config.json" ;
@@ -2041,7 +2041,7 @@ int main(){
20412041 if (isSubEnabled (" bios_mb_info" , " show_bios_vendor" )) {
20422042 ostringstream ss;
20432043 ss << getColor (" bios_mb_info" , " ~" , " white" ) << " ~ " << r
2044- << getColor (" bios_mb_info" , " vendor_label_color" , " white" ) << " Bios Vendor " << r
2044+ << getColor (" bios_mb_info" , " vendor_label_color" , " white" ) << " Bios Vendor " << r
20452045 << getColor (" bios_mb_info" , " :" , " white" ) << " : " << r
20462046 << getColor (" bios_mb_info" , " vendor_value_color" , " white" ) << sys.get_bios_vendor () << r;
20472047 lp.push (ss.str ());
@@ -2051,7 +2051,7 @@ int main(){
20512051 if (isSubEnabled (" bios_mb_info" , " show_bios_version" )) {
20522052 ostringstream ss;
20532053 ss << getColor (" bios_mb_info" , " ~" , " white" ) << " ~ " << r
2054- << getColor (" bios_mb_info" , " version_label_color" , " white" ) << " Bios Version " << r
2054+ << getColor (" bios_mb_info" , " version_label_color" , " white" ) << " Bios Version " << r
20552055 << getColor (" bios_mb_info" , " :" , " white" ) << " : " << r
20562056 << getColor (" bios_mb_info" , " version_value_color" , " white" ) << sys.get_bios_version () << r;
20572057 lp.push (ss.str ());
@@ -2061,7 +2061,7 @@ int main(){
20612061 if (isSubEnabled (" bios_mb_info" , " show_bios_date" )) {
20622062 ostringstream ss;
20632063 ss << getColor (" bios_mb_info" , " ~" , " white" ) << " ~ " << r
2064- << getColor (" bios_mb_info" , " date_label_color" , " white" ) << " Bios Date " << r
2064+ << getColor (" bios_mb_info" , " date_label_color" , " white" ) << " Bios Date " << r
20652065 << getColor (" bios_mb_info" , " :" , " white" ) << " : " << r
20662066 << getColor (" bios_mb_info" , " date_value_color" , " white" ) << sys.get_bios_date () << r;
20672067 lp.push (ss.str ());
@@ -2071,7 +2071,7 @@ int main(){
20712071 if (isSubEnabled (" bios_mb_info" , " show_mb_model" )) {
20722072 ostringstream ss;
20732073 ss << getColor (" bios_mb_info" , " ~" , " white" ) << " ~ " << r
2074- << getColor (" bios_mb_info" , " model_label_color" , " white" ) << " Motherboard Model " << r
2074+ << getColor (" bios_mb_info" , " model_label_color" , " white" ) << " Motherboard Model " << r
20752075 << getColor (" bios_mb_info" , " :" , " white" ) << " : " << r
20762076 << getColor (" bios_mb_info" , " model_value_color" , " white" ) << sys.get_motherboard_model () << r;
20772077 lp.push (ss.str ());
@@ -2081,7 +2081,7 @@ int main(){
20812081 if (isSubEnabled (" bios_mb_info" , " show_mb_manufacturer" )) {
20822082 ostringstream ss;
20832083 ss << getColor (" bios_mb_info" , " ~" , " white" ) << " ~ " << r
2084- << getColor (" bios_mb_info" , " mfg_label_color" , " white" ) << " Motherboard Manufacturer " << r
2084+ << getColor (" bios_mb_info" , " mfg_label_color" , " white" ) << " Motherboard Manufacturer " << r
20852085 << getColor (" bios_mb_info" , " :" , " white" ) << " : " << r
20862086 << getColor (" bios_mb_info" , " mfg_value_color" , " white" ) << sys.get_motherboard_manufacturer () << r;
20872087 lp.push (ss.str ());
0 commit comments