5 Commits

Author SHA1 Message Date
Tixx
ae9af1470c Removal invalid comma causing the default config to be broken (#123) 2024-09-24 12:47:20 +02:00
Tixx
9255c70b0b Removal invalid comma 2024-09-24 12:38:24 +02:00
Lion Kortlepel
53c514ecc6 bump to 2.1.3 2024-09-23 23:13:51 +02:00
Lion Kortlepel
e348d59a7e fix linux executable name 2024-09-23 23:13:34 +02:00
Lion
244d27341f Fix release actions (#122) 2024-09-23 22:49:33 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ void ConfigInit() {
R"({
"Port": 4444,
"Build": "Default",
"CachingDirectory": "./Resources",
"CachingDirectory": "./Resources"
})";
cfg.close();
} else {

View File

@@ -97,7 +97,7 @@ void StartGame(std::string Dir) {
#elif defined(__linux__)
void StartGame(std::string Dir) {
int status;
std::string filename = (Dir + "/BinLinux/BeamNG.drive.x64");
std::string filename = (Dir + "/BinLinux/BeamNG.x64");
char* argv[] = { filename.data(), NULL };
pid_t pid;
int result = posix_spawn(&pid, filename.c_str(), NULL, NULL, argv, environ);

View File

@@ -84,7 +84,7 @@ std::string GetVer() {
return "2.1";
}
std::string GetPatch() {
return ".2";
return ".3";
}
std::string GetEP(char* P) {