v3.1.1 fix in helpmenuüe file_path -> dirPath

This commit is contained in:
Markus 2019-10-11 15:29:27 +02:00
parent 44df19a633
commit 801139ac8f
2 changed files with 3 additions and 3 deletions

View File

@ -340,10 +340,10 @@ int unterOption_help(Settings &settings)
std::cout << "Verzeichnisse:" << std::endl
<< "\tOrdner zum zwischenspeichern der Cookies, AccountNummer" << std::endl
<< "\tund des letzten Update Datums:" << std::endl
<< " => > '" << settings.cookieFilePath << "'" << std::endl
<< " => > '" << std::string(settings.cookieFilePath).erase(settings.cookieFilePath.find_last_of(settings.pathSymbol)) << "/'" << std::endl
<< "\tOrdner zum speichern der Accounts, Default-Einstellungen" << std::endl
<< "\tund der Serienliste:" << std::endl
<< " => > '" << settings.defaultsFilePath << "'" << std::endl;
<< " => > '" << std::string(settings.defaultsFilePath).erase(settings.defaultsFilePath.find_last_of(settings.pathSymbol)) << "/'" << std::endl;

return -1;
}

View File

@ -50,7 +50,7 @@ struct Settings {
proxy_ip = "127.0.0.1",
languages = "GerDub,GerSub,Eng",
genaueHoster = "",
version = "3.1.0",
version = "3.1.1",
defaultFileVersion="1.6",
outputFilePath = "",
default_checkPath = "",