Hello Walter,
Although the update worked without any issue, something broke with screenshots.
I am not seeing an icon indicating I have screenshots where I know they exist.
I have tried adding both of the following to edtoolbox_v1.ini, uncommenting one at a time and restarting EDTB each time:
Code:
;new_screendir="P:\Program Files (x86)\Frontier\ED ToolBox\EDTB\screenshots"
;new_screendir="P:/Program Files (x86)/Frontier/ED ToolBox/EDTB/screenshots"
This didn't help.
I have found a workaround that does work, when changing static function has_screenshots in System.class.php to this:
Code:
static function has_screenshots($system_name)
{
$system_name = strip_invalid_dos_chars($system_name);
if (empty($system_name)) {
return false;
}
// if (is_dir($settings["new_screendir"] . "/" . $system_name)) {
if (is_dir("P:/Program Files (x86)/Frontier/ED ToolBox/EDTB/screenshots/" . $system_name)) {
return true;
} else {
return false;
}
}
This works.
I am not sure why the setting new_screendir is not being picked up, hopefully this will help if anyone has the same issue and maybe lead to a fix.
Thank You for you continued development whilst also out exploring the galaxy