diff --git a/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs b/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs index a694391..7f22c41 100644 --- a/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs +++ b/UnityMcpBridge/Editor/Helpers/ServerInstaller.cs @@ -11,7 +11,7 @@ namespace UnityMcpBridge.Editor.Helpers { private const string RootFolder = "UnityMCP"; private const string ServerFolder = "UnityMcpServer"; - private const string BranchName = "feature/install-overhaul"; + private const string BranchName = "master"; private const string GitUrl = "https://github.com/justinpbarnett/unity-mcp.git"; private const string PyprojectUrl = "https://raw.githubusercontent.com/justinpbarnett/unity-mcp/refs/heads/" @@ -46,7 +46,6 @@ namespace UnityMcpBridge.Editor.Helpers if (IsNewerVersion(latestVersion, installedVersion)) { - Debug.Log($"is newer version"); UpdateServer(saveLocation); } else { } @@ -164,7 +163,6 @@ namespace UnityMcpBridge.Editor.Helpers /// private static void UpdateServer(string location) { - Debug.Log("updating server"); RunCommand("git", $"pull origin {BranchName}", workingDirectory: location); } diff --git a/UnityMcpServer/src/pyproject.toml b/UnityMcpServer/src/pyproject.toml index 0e42b75..eebcde1 100644 --- a/UnityMcpServer/src/pyproject.toml +++ b/UnityMcpServer/src/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "UnityMcpServer" -version = "2.0.1" +version = "2.0.0" description = "Unity MCP Server: A Unity package for Unity Editor integration via the Model Context Protocol (MCP)." readme = "README.md" requires-python = ">=3.12"