aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-10-04Clear token when not needed anymore (#282)v1.9.71.9.XEmma Miler
Also blocks migrateme
2022-10-04Replace XInput library with updated one (#278)Emma Miler
* Replace XInput library with updated one This code adds better compatibility with newer controllers and different controller types Also adds ASLR to the loaded library * Formatting
2022-09-20Set current directory properly (#275)v1.9.7-rc2p0358
2022-09-20Display error if logs path isn't writeable (#274)p0358
2022-09-14Rename some members of MasterServerManager (#266)v1.9.7-rc1GeckoEidechse
This is basically 9ab7c43c34183915273cc8b5ccedd72568249b27 from refactor but without the debug build crash fix as that was introduced in a commit in refactor not present on main Co-authored-by: BobTheBob <32057864+BobTheBob9@users.noreply.github.com>
2022-09-14Check LSX for Origin launch (#263)BobTheBob
2022-09-14Add newlineGeckoEidechse
also part of refactor merge :^)
2022-09-14Update commentGeckoEidechse
also part of refactor merge :^)
2022-09-14Carry over some formatting changes from refactor (#259)BobTheBob
2022-09-14Change prints to C++ style (#258)BobTheBob
2022-09-14Fix typoGeckoEidechse
Yes this is also part of refactor :3
2022-09-14Rename `configurables.cpp` to `nsprefix.cpp` (#253)BobTheBob
2022-09-14Rename `IsDedicated()` to `IsDedicatedServer()` (#252)BobTheBob
2022-09-14Change file name case sensitivity to lower case (#249)GeckoEidechse
To mirror how it is in refactor PR
2022-09-14Ignore folder rename (#245)GeckoEidechse
2022-09-14Add newlines at end of file (#247)GeckoEidechse
2022-09-14Add editorconfig file (#246)GeckoEidechse
* Add editorconfig file It's a cross-editor compatible config file that defines certain editor behaviour (e.g. adding/removing newline at end of file) It is supported by major editors like Visual Studio (Code) and by version control providers like GitHub. Should end the constant adding/removing of final newline in PRs * More settings - unicode by default - trim newlines - use tabs for indentation (ugh)
2022-09-13Revert "Add log colours because they are pretty (#237)"v1.9.6GeckoEidechse
This reverts commit a97f1f07bb5aa31629cd87023e09669eb4bf1fe9.
2022-08-25Adjust folder structure (#242)v1.9.5-rc1v1.9.5BobTheBob
* Adjust folder structure * change launcher directory name
2022-08-25Add log colours because they are pretty (#237)Jack
* log colours :) * commend the freopen stuff (it causes problems) * formatting * add explanatory comment
2022-08-25allow mods to load biks that aren't already present in r2/media (#137)BobTheBob
Co-authored-by: GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com>
2022-08-14Hot reload banlist on player join (#233)v1.9.4-rc1v1.9.4ScureX
* added banlist hotreload * fix formatting * didnt append, cleared whole file oopsie * unfuckedunban not rewriting file * fixed not checking for new line
2022-08-14Fixed `unban` not overwriting `banlist.txt` (#228)ScureX
* fixed unban * changed timestamp for gecko * fixed unbanning with inline comment uids with inline comments werent able to unban due to whitespaces
2022-08-14Allow comments and newlines in `banlist.txt` (#227)ScureX
* added support for comments and newlines * added checking if line is empty earlier * Fix formatting * check if last char is \n
2022-08-14Fix most clang/mingw issues (#226)pg9182
- Fix include case. - Replace MSVC-specific align with standard alignas. - Type fixes. - Delete operator noexcept. - A few other minor issues. - clang-format everything. - Use c++20 instead of c++17. - Rewrite ERROR macro for launcher_wsock32_proxy. - Use a plain ifstream for the audio.cpp wavStream. Note: When compiling with clang, you'll need -municode. Related to #212.
2022-07-20Mention reproducing bugs and feature usage desc. (#221)v1.9.3-rc1v1.9.3v1.9.2-rc2v1.9.2-rc1v1.9.2GeckoEidechse
2022-07-10Add dependency constants (#156)v1.9.1-rc4v1.9.1-rc3v1.9.1-rc2v1.9.1EladNLG
* Fix duplicate script in scripts.rson when 2 mods add a custom script with the same path Allow mods to force a VPK to load through vpk.json * Remove unnecessary print * Fix match predicate using the value instead of the name * - Add a dependency constant system for use in compile flags - Remove the duplicate script engine error fix - Add ClientSq_defconst & ServerSq_defconst * Format fix * - Fix access violation - Separate dependency constants into mod and add checks for conflicts * - Remove unnecessary comment * Remove VPK loading for now and allow 2 mods to use the same constant if the mod names match * Fix bugs * fix mistake * fix keyvalues not working with modded files * simplify code * Fix formatting * Remove keyvalues fix
2022-07-09Add Postload support for rpaks (#217)v1.9.1-rc1Jack
* fixed custom rpaks being loaded more than once * formatting * better things, although LoadPakSyncHook is annoying * formatting * removing unnecessary comments and stuff (whoops) * Moving to use PakLoadManager * formatting * postload things * formatting * trailing space smh
2022-07-09Add StringToAsset function to squirrel (#216)Maya
* Add StringToAsset function to squirrel also added better values for return type enum because otherwise asset can't be returned without casting * Formatting * Switched to a template for the stringToAsset function also renamed files but have to do it in 2 commits because git ignores file case * Rename step 2 * change to lowercase in include * changed to lowercase in include inside dllmain
2022-07-05Fix KHook hooking order to prevent missed hooks (#213)KittenPopo
2022-07-05Move #include top of file in ExploitFixes (#218)Maya
* Move Include in ExploitFixes * Formatting
2022-06-26Block developer squirrel functions (#211)v1.9.0-rc1v1.9.0v1.8.2-rc3Maya
* Block Dev Squirrel Functions Some Command Line Functions are still allowed * Renamed stub function and changed error message * Formatting * Change log level to warn
2022-06-26Switch IsValveMod back to use a EnablerHook (#210)Maya
* Switch IsValveMod back to use a EnablerHook KHook version no worky * Formatting >:(
2022-06-25Log all clientcommands if `ns_should_log_all_clientcommands` is set (#209)v1.8.2-rc2GeckoEidechse
* Log all clientcommands if responding convar is set * Also log UID * Formatting * Use `GetBool()` instead of `GetInt()` * Adjust output print format as suggested in review
2022-06-23fixed custom rpaks being loaded more than once (#202)Jack
* fixed custom rpaks being loaded more than once * formatting * better things, although LoadPakSyncHook is annoying * formatting * removing unnecessary comments and stuff (whoops) * Moving to use PakLoadManager * formatting
2022-06-22Fix rejection of legitimately-invalid UserCmds (#203)v1.8.2-rc1KittenPopo
2022-06-22ExploitFixes: Fix respawn exploit and block other Portal 2 commands (#204)KittenPopo
* Implement SpecialClientCommand hook (fix respawn exploit, etc.) This replaces the old function_containing_emit_hook (who made it??? why is it so messy??? why is it in snake case???) * Remove extra indents * Blacklist additional commands * Clarify (supposed) purpose of blocked commands
2022-06-19Move LZSS exploit segfault fix hook to ExploitFixes.cpp (#195)KittenPopo
* Move LZSS exploit fix hook to ExploitFixes.cpp * Formatting changes for clang-format
2022-06-19Use strtoull instead of strtoll for uint64s (#198)KittenPopo
2022-06-16Fix "Auth failed" when trying to play singleplayer (#184)v1.8.1-rc6v1.8.1-rc5v1.8.1F1F7Y
2022-06-15LatencyFleX Implementation Update (#183)v1.8.1-rc4Kyle Gospodnetich
Main entry point for LatencyFlex was recently changed from latencyflex_wine.dll to latencyflex_layer.dll to prepare library for eventual windows release/to be more generic. This updates our implementation to match, while still supporting the previous libraries for existing users. Co-authored-by: Kyle Gospodnetich <KyleGospo@users.noreply.github.com>
2022-06-15Open placeholder_playerdata as an input stream (#173)pg9182
Write access isn't needed.
2022-06-16Set default val for net_chan_limit_msec_per_sec to 100 (#196)v1.8.1-rc3KittenPopo
2022-06-16Attempt reconnect in case of DUPLICATE_SERVER (#187)GeckoEidechse
* Attempt reconnect in case of DUPLICATE_SERVER If gameserver receives DUPLICATE_SERVER response it will retry the auth request after a timeout of 10 seconds. Retries will stop after 10 attempts. Co-authored-by: Emma Miler <27428383+emma-miler@users.noreply.github.com> * Fix formatting * Move comment So that it refers to the right line * Retry 10 times instead of just once * Only check retrycounter for DUPLICATE_SERVER error Co-authored-by: Emma Miler <27428383+emma-miler@users.noreply.github.com>
2022-06-16Localize error messages from masterserver (#159)Emma Miler
2022-06-16Expose IsDedicated on server vm (#179)F1F7Y
2022-06-16Delete emit_blocker.h (#194)Maya
* Delete emit_blocker.h * also remove from dllmain.cpp
2022-06-15Fix bug where emit wouldn't be blocked if uppercase (#192)v1.8.1-rc2Emma Miler
* Fix bug where emit wouldnt be blocked if uppercase * Moved emit blocker to ExploitFixes.cpp * Format change * Use `strnicmp` instead of a custom functions * Resolve merge conflicts * Format changes
2022-06-15Add pull request template (#188)v1.8.1-rc1GeckoEidechse
2022-06-15Fix segfault on badly formed compressed packets (#160)Tom Barham
* Fix segfault on badly formed compressed packets * Remove superfluous line