aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-07-29Validate package pattern before checking for plugins (#525)v1.17.3-rc1v1.17.31.17.XJan
Adds missing validation check to ensure that the package folder the plugin is included in matches the `AUTHOR-MOD-VERSION` pattern. (cherry picked from commit 0af8c500aecb2eca77996e9ef750589fceb7245b)
2023-07-29Warn about the package dir, not the mod dir (#526)Jan
(cherry picked from commit e3f2c4c6622c83ac561f7e4cbf8601c50469d291)
2023-07-28Remove `pch.cpp` and all `#include "pch.h"` occurrences (#519)v1.17.2-rc1v1.17.2F1F7Y
With the move to cmake there is no need for the `pch.cpp` files as it generates them automatically. Also removes leftover `#include "pch.h"` occurrences (cherry picked from commit 82bff57d166ece1173ca7df33940171548015a71)
2023-07-28Make sure `packages` dir exists when loading plugins (#523)F1F7Y
Create packages directory in `PluginManager::LoadPlugins()` to avoid crashing when trying to read non-existent directory (cherry picked from commit 24400184f35e64957f2c7544122557077b257886)
2023-07-28Fix plugins not loading (#522)v1.17.1-rc5v1.17.1F1F7Y
Fixes a regression introduced in #513 (cherry picked from commit e742eb35ccc4dab4c0b4cff65b5e72a62346aa74)
2023-07-27Add support for loading plugins from Thunderstore packages (#513)v1.17.1-rc4Jan
Adds support for loading plugins from `packages` directory which was missing from the original PR that introduced the `packages` directory. (cherry picked from commit a65cbeacfbaed17f0526fb513f49338f1151d247)
2023-07-25Replace forward slashes with windows path separators (#514)v1.17.1-rc3v1.17.1-rc2Jan
Replace forward slashes with backward slashes in some string constants to make things more consistent. (cherry picked from commit 2e6c1cffabd7528ba1e6ddd2663f1ad34a475df5)
2023-07-25Remove Vector3 Constructor (#494)Jan
- Packing was enabled because the compiler may add padding which we don't want. - Constructors were removed because they were either rather primitive or broken (the `pRawFloats` one). - Use of constructor was replaced with a simple cast, which works just as well. (cherry picked from commit ddb4670354a5f29e6ebd08f625edb2576de700e6)
2023-07-22Replace vendored libcurl and minhook with submodules (#500)v1.17.1-rc1Jan
* Replace vendored libcurl and minhook with submodules * Add cmake utility for checking submodules and initializing them * Update build instructions to use Git
2023-07-17Search for Northstar.dll in profile directory (#451)v1.17.0-rc2v1.17.0-rc1v1.17.0F1F7Y
Looks for `Northstar.dll` in the specified profile directory using `-profile=<dir>`. If it doesn't exist it defaults to the `Northstar.dll` in the root directory. This allows for having a separate DLL for each profile.
2023-07-16Add OS, Wine and Proton logging (#502)Jan
Adds logging for OS, Wine, and Proton versions.
2023-07-16CMAKE: set build type if not previously set, turn bin dir message into ↵Jan
status (#497)
2023-07-16Add support for loading Thunderstore mods natively (#503)GeckoEidechse
Allows for loading Thunderstore mods directly from a separate directory called `packages`.
2023-07-07Improve logging for mods (#445)v1.16.3-rc2v1.16.3-rc1v1.16.3v1.16.2-rc1v1.16.2v1.16.1-rc1v1.16.11.16.XJack
- Removes the log spam of "changing mod search path" - Logs mods as they are loaded, alongside their ConVars, Scripts, ConCommands, etc. - Warns in the console about errors in the mod.json instead of silently skipping things
2023-07-07Memory class renaming (#469)F1F7Y
- Renames `MemoryAddress` to `CMemoryAddress` - Renames `CMemoryAddress::As` to `CMemoryAddress::RCast`
2023-07-02Improve `ShouldLoadNorthstar()` logic readability (#499)GeckoEidechse
2023-07-02Basic mods blacklisting (#474)v1.16.0-rc2v1.16.0F1F7Y
2023-07-01Update gitattributes vendored code path (#496)GeckoEidechse
2023-06-29Reorganize third-party dependencies into `thirdparty` directory (#491)F1F7Y
* rename `include` to `thirdparty` * remove duplicate minhook in wsock32 * move minhook into its own directory * move openssl lib into separate directories
2023-06-28Code cleanup (#478)v1.16.0-rc1v1.15.1-rc1v1.15.11.15.XJan
* turn implicit type casts into standard compliant explicit type casts * correct includes and library names * correct implicit use of std-namespaced functions * turn incomplete virtual implementations into pure virtuals (this also follows what the Source SDK tier0 header does) * define SqRecurseArgs ahead of implementation to fix templating problems * switch out removed getentity with getthisentity * fix calls to curl_easy_escape with wrong types * replace winapi-specific function with std starts_with function * format squirrel header
2023-06-28Replace dependent names with explicit template definition (#490)Jan
2023-06-28Add RelWithDebInfo configuration (#483)F1F7Y
2023-06-28Fix const pointer const (#488)Jan
2023-06-28Remove pragma once from source file (#487)Jan
2023-06-28Use correctly typed values for variables (#486)Jan
2023-06-28Cast types in MAKEHOOK macro to follow C++ Standard (#489)Jan
2023-06-22Update release action to match push action (#476)v1.15.0-rc2v1.15.0F1F7Y
2023-06-22Move to cmake (#467)v1.15.0-rc1F1F7Y
Moves the entire project to cmake as the build system
2023-06-07Restore `-noplugins` argument (#459)v1.14.3-rc1v1.14.31.14.Xcat_or_not
2023-06-07Fix `maps *` command, expose to squirrel (#442)F1F7Y
2023-05-05Support loading plugins from subdirs (#460)cat_or_not
Support loading plugins from subdirs to allow for better organising plugins and easier mod-manager installation
2023-04-27Use structs for the Script Server Browser (#453)v1.14.2-rc1v1.14.2v1.14.1-rc1v1.14.1v1.14.0-rc1v1.14.0uniboi
* fix vector garbage data * use structs for script server browser * use sq struct api wrappers * use sqfloat return type for getvector * use const references for access * move fn to make the diff more readable (hopefully)
2023-04-23Fix initscript issue (#457)v1.13.2-rc2v1.13.2-rc1v1.13.2v1.13.1-rc1v1.13.11.13.Xcat_or_not
Fix initscript issue that prevented Northstar from being run without any mods enabled/installed.
2023-04-22Replace `set-output` in GitHub Actions workflows (#452)v1.13.0-rc2v1.13.0-rc1v1.13.0pg9182
`set-output` is being deprecated as per https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
2023-04-19Remove leftover LoadPlugins declaration (#449)pg9182
Doesn't exist since 450d0b1ed437cf37b4309af952af8904f3f07768 (#343).
2023-04-19Fix parsing string ConVar/ConCommand.Flags from `mod.json` (#450)pg9182
Fix parsing string ConVar/ConCommand.Flags from mod.json The ParseConVarFlagsString function introduced in 64100065b55f79e76542ba689545c60e6fb0dcef (#373) is utterly broken. It only parses the first flag, logs misleading warnings, has an undefined return value in some codepaths, and is somewhat convoluted. Luckily, this doesn't appear to affect most (if not all) existing mods, as they all seem to be using integer values for Flags, which is taken as-is. https://github.com/search?q=path%3A**%2Fmod.json+ConVars+Flags&type=code
2023-04-19Fix incorrect script ConCommand argc (#446)Glacir
2023-04-18Fix DecodeJSON fatalParseErrors param (#443)EladNLG
Previously, DecodeJSON would log a warning and swallow the error silently, even if the second argument (fatalParseErrors) was true (default is false).
2023-04-18Fix getvector returning garbage data (#448)uniboi
* fix vector garbage data * change typedef to use IDA's types
2023-04-17Set default server auth failure reasonpg9182
Not all error paths set it.
2023-04-17Use detailed master server error messages when availablepg9182
The error.msg field has always been around, but we never used it.
2023-04-17Remove httplibpg9182
2023-04-17Replace HTTP auth server with Atlas connectionless packetpg9182
2023-04-17Add missing curl lib depspg9182
2023-04-17Implement Atlas sigreq1 connectionless packetpg9182
Consists of a JSON object including a type key and a HMAC-SHA256 signature using the gameserver-specific token from the masterserver as the key.
2023-04-17Add support for Atlas connectionless packetspg9182
2023-04-17Extract ProcessConnectionlessPacket hook to separate filepg9182
2023-04-11Plugin system v2 (#343)Emma Miler
* Some work * Rewrite gamestate presence * Add plugin system logger * Format changes * Format chjange * Fix gamestate stuff * some callback stuff * move around invite stuff * move invite to funcs * fix presence server data * Actually call InformSQVMCreated * bruh * Fix TODO's * Formatting * Fix filters * Add InformDLLLoads * Fix plugin handle always being 0 * Formatting * Fix merge issues * Formatting * Mods can add files compiled at SQVM init * Some Small Fixes * Add changes from review * Fix load failure * Add new squirrel functions * actually call InformSQVMDestroyed * add CreateObject function * answers to complaints * remove snake cases from GameStatePresence --------- Co-authored-by: cat_or_not <41955154+catornot@users.noreply.github.com>
2023-04-08Fix stringcmd limits causing unnecessary disconnects (#447)Jack
revert some changes made by #411
2023-04-07Bump download-artifact action to v3 (#444)GeckoEidechse
v2 is deprecated