Merge pull request #59 from OneFourOne/develop
Update Credits & Changelog, Remove Crash-Helper
This commit is contained in:
commit
f0afeac78d
@ -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/).
|
||||
|
||||
## [0.6.1 Community] - 2020-12-05
|
||||
## [0.6.1] - 2020-12-22
|
||||
|
||||
### 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)
|
||||
- Unlock safeArea_horizontal and safeArea_vertical Dvars (#42)
|
||||
- Unlock cg_fovscale Dvar (#47)
|
||||
- Print script runtime errors when developer mode is enabled (#55)
|
||||
|
||||
### 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 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 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
|
||||
|
||||
|
@ -231,26 +231,6 @@ namespace Components
|
||||
auto oldHandler = Exception::Hook();
|
||||
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()
|
||||
|
@ -185,15 +185,22 @@ namespace Components
|
||||
"Dasfonia",
|
||||
"Deity",
|
||||
"Dizzy",
|
||||
"Dss0",
|
||||
"H3X1C",
|
||||
"HardNougat",
|
||||
"INeedGames",
|
||||
"Killera",
|
||||
"Lithium",
|
||||
"OneFourOne",
|
||||
"quaK",
|
||||
"RaidMax",
|
||||
"Revo",
|
||||
"RezTech",
|
||||
"Shadow the Hedgehog",
|
||||
"Slykuiper",
|
||||
"st0rm",
|
||||
"VVLNT",
|
||||
"X3RX35"
|
||||
};
|
||||
|
||||
static const char* specials[] =
|
||||
@ -202,7 +209,7 @@ namespace Components
|
||||
"aerosoul94",
|
||||
"ReactIW4",
|
||||
"IW4Play",
|
||||
"Rocket V2",
|
||||
"V2",
|
||||
"luckyy"
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user