Bump version to 0.3b

UMM version and repository manifest. MCP settings copy no longer names a vendor.
This commit is contained in:
Seton Carmichael 2026-09-11 15:19:24 -04:00
parent 5e18cb84a1
commit 478e0a93cc
4 changed files with 8 additions and 8 deletions

View file

@ -2,7 +2,7 @@
"Id": "S3",
"DisplayName": "S³ - Seton's Special Sauce",
"Author": "seton",
"Version": "0.2.7",
"Version": "0.3b",
"ManagerVersion": "0.27.0",
"GameVersionPoint": "0",
"AssemblyName": "S3.dll",

View file

@ -1,5 +1,10 @@
{
"Releases": [
{
"Id": "S3",
"Version": "0.3b",
"DownloadUrl": "https://git.farmtowntech.com/setonc/railroader-setons-special-sauce/releases/download/0.3b/SetonsSpecialSauce-0.3b.zip"
},
{
"Id": "S3",
"Version": "0.2.7",
@ -9,11 +14,6 @@
"Id": "S3",
"Version": "0.2.5",
"DownloadUrl": "https://git.farmtowntech.com/setonc/railroader-setons-special-sauce/releases/download/0.2.5/SetonsSpecialSauce-0.2.5.zip"
},
{
"Id": "S3",
"Version": "0.2.4",
"DownloadUrl": "https://git.farmtowntech.com/setonc/railroader-setons-special-sauce/releases/download/0.2.4/SetonsSpecialSauce-0.2.4.zip"
}
]
}

View file

@ -248,7 +248,7 @@ sealed class McpHost : MonoBehaviour
_ => McpToolResult.Ok(_game.StatusText()));
AddHost("mcp_reload",
"Reload S3.Mcp.Tools.dll (and extra plugins if Develop is on). Restarts the HTTP listener by default so Cursor re-fetches tools. Use this after dist/build-mcp-tools.ps1.",
"Reload S3.Mcp.Tools.dll (and extra plugins if Develop is on). Restarts the HTTP listener by default so the MCP client re-fetches tools. Use this after dist/build-mcp-tools.ps1.",
"{\"restart\":{\"type\":\"boolean\",\"description\":\"Bounce the HTTP server (default true).\"}}",
args =>
{

View file

@ -14,7 +14,7 @@ static class McpSettingsUI
GUILayout.Label("<b>MCP</b> - localhost agent socket. Tools live in a reloadable DLL.");
GUILayout.Space(4f);
GUILayout.Label(
" Cursor talks to this process over HTTP MCP on 127.0.0.1.\n" +
" A local coding agent talks to this process over HTTP MCP on 127.0.0.1.\n" +
" Rebuild tools while the game is running: dist\\build-mcp-tools.ps1\n" +
" The host reloads S3.Mcp.Tools.dll automatically (or /s3mcp reload).\n" +
" Changing the host itself (this module in S3.dll) still needs a game restart.",