diff --git a/README.md b/README.md index 6aaf03b..4fe7a35 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,10 @@ Installers are built with Inno Setup using scripts from installer/ folder and th * for switch-sides-based gamemodes, show in HUD whether you're playing first or second half * allow replacing VPK files without making patched VPK files, by putting your modded files into `r1_mod` directory under your game installation dir * use concommand `fs_replacements_cache_refresh` to refresh the file list without restarting the game +* allow auto-saving of game scoreboards to JSON files after the match was concluded + * use cvar `bme_cl_save_scoreboards 1` to enable the feature + * the files will be saved into `/bme/saved_scoreboards` directory, with name in format like `2024-05-28_11_40_04-private_match-ctf-mp_relic-5v5.json` (time is UTC) + * you can enable automatic remote uploading of said files by `bme_cl_save_scoreboards_upload_url ` to upload them to your custom endpoint via HTTP POST ### Known bugs diff --git a/bme_scripts b/bme_scripts index 355459b..c63481e 160000 --- a/bme_scripts +++ b/bme_scripts @@ -1 +1 @@ -Subproject commit 355459b9593eb294cb8ecdac32dbbf3fada155b9 +Subproject commit c63481e559a58f3fd6d6b0410ccfe29d23b7747f diff --git a/bme_version.txt b/bme_version.txt index b727c30..caf1cc4 100644 --- a/bme_version.txt +++ b/bme_version.txt @@ -1 +1 @@ -1b10 \ No newline at end of file +1b11 \ No newline at end of file diff --git a/premake/premake5.lua b/premake/premake5.lua index f7bfe64..0079d51 100644 --- a/premake/premake5.lua +++ b/premake/premake5.lua @@ -114,6 +114,7 @@ libdirs {"%{wks.location}/bin/%{cfg.platform}-%{cfg.buildcfg}"} solutionitems { "./README.md", + "./bme_version.txt", "./.gitignore", "./.github/workflows/build.yaml", "./.github/dependabot.yaml",