Merge pull request #59 from OneFourOne/develop

Update Credits & Changelog, Remove Crash-Helper
This commit is contained in:
Dss0 2020-12-22 21:39:03 +01:00 committed by GitHub
commit f0afeac78d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 25 deletions

View File

@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog v0.3.0](http://keepachangelog.com/en/0.3.0/) and this project adheres to [Semantic Versioning](http://semver.org/). The format is based on [Keep a Changelog v0.3.0](http://keepachangelog.com/en/0.3.0/) and this project adheres to [Semantic Versioning](http://semver.org/).
## [0.6.1 Community] - 2020-12-05 ## [0.6.1] - 2020-12-22
### Added ### Added
@ -30,7 +30,6 @@ The format is based on [Keep a Changelog v0.3.0](http://keepachangelog.com/en/0.
- Add r_specularCustomMaps Dvar (#36) - Add r_specularCustomMaps Dvar (#36)
- Unlock safeArea_horizontal and safeArea_vertical Dvars (#42) - Unlock safeArea_horizontal and safeArea_vertical Dvars (#42)
- Unlock cg_fovscale Dvar (#47) - Unlock cg_fovscale Dvar (#47)
- Print script runtime errors when developer mode is enabled (#55)
### Changed ### Changed
@ -45,10 +44,11 @@ The format is based on [Keep a Changelog v0.3.0](http://keepachangelog.com/en/0.
- Fixed an issue that made dedicated servers crash when info was requested during map rotation (#43) - Fixed an issue that made dedicated servers crash when info was requested during map rotation (#43)
- Fixed an issue where the game was trying to decrypt gsc files which caused it to crash when loading mods (#35) - Fixed an issue where the game was trying to decrypt gsc files which caused it to crash when loading mods (#35)
- Fixed an issue causing the game to crash when Steam was running in the background (#56) - Fixed an issue causing the game to crash when Steam was running in the background (#56)
- Fixed slow download speed when using fast download
### Known issues
####End of official IW4x Development - Project goes Open Source#### - HTTPS is not supported for fast downloads at the moment.
## [0.6.0] - 2018-12-30 ## [0.6.0] - 2018-12-30

View File

@ -231,26 +231,6 @@ namespace Components
auto oldHandler = Exception::Hook(); auto oldHandler = Exception::Hook();
Logger::Print("Old exception handler was 0x%010X.\n", oldHandler); Logger::Print("Old exception handler was 0x%010X.\n", oldHandler);
}); });
// Check if folder exists && crash-helper exists
if (Utils::IO::DirectoryExists("minidumps\\") && Utils::IO::FileExists("crash-helper.exe"))
{
if (!Utils::IO::DirectoryIsEmpty("minidumps\\"))
{
STARTUPINFOA sInfo;
PROCESS_INFORMATION pInfo;
ZeroMemory(&sInfo, sizeof(sInfo));
ZeroMemory(&pInfo, sizeof(pInfo));
sInfo.cb = sizeof(sInfo);
CreateProcessA("crash-helper.exe", const_cast<char*>(Utils::String::VA("crash-helper.exe %s", VERSION)), nullptr, nullptr, false, NULL, nullptr, nullptr, &sInfo, &pInfo);
if (pInfo.hThread && pInfo.hThread != INVALID_HANDLE_VALUE) CloseHandle(pInfo.hThread);
if (pInfo.hProcess && pInfo.hProcess != INVALID_HANDLE_VALUE) CloseHandle(pInfo.hProcess);
}
}
} }
Exception::~Exception() Exception::~Exception()

View File

@ -185,15 +185,22 @@ namespace Components
"Dasfonia", "Dasfonia",
"Deity", "Deity",
"Dizzy", "Dizzy",
"Dss0",
"H3X1C",
"HardNougat", "HardNougat",
"INeedGames",
"Killera", "Killera",
"Lithium", "Lithium",
"OneFourOne",
"quaK",
"RaidMax",
"Revo", "Revo",
"RezTech", "RezTech",
"Shadow the Hedgehog", "Shadow the Hedgehog",
"Slykuiper", "Slykuiper",
"st0rm", "st0rm",
"VVLNT", "VVLNT",
"X3RX35"
}; };
static const char* specials[] = static const char* specials[] =
@ -202,7 +209,7 @@ namespace Components
"aerosoul94", "aerosoul94",
"ReactIW4", "ReactIW4",
"IW4Play", "IW4Play",
"Rocket V2", "V2",
"luckyy" "luckyy"
}; };