Jstsmthrgk

Results 9 comments of Jstsmthrgk

Git doesn't really provide any benefit here. If any kind of version control is implemented, I would suggest a snapshotting system as it exists in most virtual machine management software....

I have also had this error with a very specific train, if that train was included it failed, if it wasnt, it didn't fail. Station: 8100013 Linz/Donau Hbf Train: (I...

Ok, it is a server side error, this is the exact response: ``` {"ver":"1.41","lang":"deu","id":"","err":"PARSE","errTxt":"Parser error: root.svcResL.svcResL.res.common.rtSrcL.rtSrcL.type()"} ```

I did not create this issue, could someone please re-open it? @derhuerst @gaudes

> * It's too prominent, acting as if it is the primary source, while it is a secondary source. Reality is that the largest user-base is on windows, and they...

closing because #2230 is merged and looks really nice!

not quite, a quick search for `getenv` shows that it is still there (the USER and USERNAME is something else, but every `getenv("HOME")` is another place it is calculated) master...

Well, I'll just go through them ``` src/menus/optionsMenu.cpp:204: if (getenv("HOME")) src/menus/optionsMenu.cpp:205: PreferencesManager::save(string(getenv("HOME")) + "/.emptyepsilon/> options.ini"); ``` This one definitely must be the same one as the one in config.cpp, as...

Maybe something along these lines: ```c++ PreferencesManager::set("resource_path", configuration_path + "/resources/:" + configuration_path + "/scripts/"); std:string resource_path = PreferencesManager::get("resource_path"); size_t left = 0; size_t right = 0; while (left < resource_path.size())...