From ef11fbf337944bd77d6018eb71431ad61462e733 Mon Sep 17 00:00:00 2001 From: OneFourOne <71578430+OneFourOne@users.noreply.github.com> Date: Tue, 22 Dec 2020 14:59:13 -0500 Subject: [PATCH 1/4] Update changelog --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a831aab3..f2f59476 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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,25 +30,25 @@ 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 - Stats are now separate for each mod (#6). Player stats are copied to `fs_game` folder if no stats exist for this mod yet. Keep in mind this also means that level, XP and classes will not be synchronized with the main stats file after this point. - Reduced duration of toasts (#48) -- Removed old updater functionality (#54) +- Removed old updater functionality - Use old bot names if bots.txt is not found (#46) +- Removed Steam integration because Steam updates kept breaking it (#51) ### Fixed - Fixed a node system related crash (#45) - 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 From 82bef71abe5f168f8dbd86ced692728267278eef Mon Sep 17 00:00:00 2001 From: OneFourOne <71578430+OneFourOne@users.noreply.github.com> Date: Tue, 22 Dec 2020 15:00:15 -0500 Subject: [PATCH 2/4] Remove crash-helper --- src/Components/Modules/Exception.cpp | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/Components/Modules/Exception.cpp b/src/Components/Modules/Exception.cpp index 78857f8c..d94fd884 100644 --- a/src/Components/Modules/Exception.cpp +++ b/src/Components/Modules/Exception.cpp @@ -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(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() From 7da79cc1ff350fca198c56b9f2dd929f19600586 Mon Sep 17 00:00:00 2001 From: OneFourOne <71578430+OneFourOne@users.noreply.github.com> Date: Tue, 22 Dec 2020 15:12:23 -0500 Subject: [PATCH 3/4] Add contributors to credits --- src/Components/Modules/Localization.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Components/Modules/Localization.cpp b/src/Components/Modules/Localization.cpp index dcfa4976..a8fffb2d 100644 --- a/src/Components/Modules/Localization.cpp +++ b/src/Components/Modules/Localization.cpp @@ -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" }; From 529162cd78674ae54f7a292ed698d7f2fe997100 Mon Sep 17 00:00:00 2001 From: OneFourOne <71578430+OneFourOne@users.noreply.github.com> Date: Tue, 22 Dec 2020 15:36:35 -0500 Subject: [PATCH 4/4] Update Changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2f59476..e3dd8f68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,15 +35,15 @@ The format is based on [Keep a Changelog v0.3.0](http://keepachangelog.com/en/0. - Stats are now separate for each mod (#6). Player stats are copied to `fs_game` folder if no stats exist for this mod yet. Keep in mind this also means that level, XP and classes will not be synchronized with the main stats file after this point. - Reduced duration of toasts (#48) -- Removed old updater functionality +- Removed old updater functionality (#54) - Use old bot names if bots.txt is not found (#46) -- Removed Steam integration because Steam updates kept breaking it (#51) ### Fixed - Fixed a node system related crash (#45) - 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