@chrrxs/robloxstudio-mcp-inspector 2.17.1 → 2.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +931 -162
- package/package.json +1 -1
- package/studio-plugin/MCPInspectorPlugin.rbxmx +3 -3
- package/studio-plugin/MCPPlugin.rbxmx +3 -3
package/package.json
CHANGED
|
@@ -1435,9 +1435,9 @@ local function computeBridgeStamp()
|
|
|
1435
1435
|
for i = 1, #combined do
|
|
1436
1436
|
h = (h * 33 + (string.byte(combined, i))) % 2147483647
|
|
1437
1437
|
end
|
|
1438
|
-
-- "2.
|
|
1438
|
+
-- "2.18.0" is replaced with the package version at package time
|
|
1439
1439
|
-- (scripts/build-plugin.mjs injectVersion), so a release bump also restamps.
|
|
1440
|
-
return `{tostring(h)}-2.
|
|
1440
|
+
return `{tostring(h)}-2.18.0`
|
|
1441
1441
|
end
|
|
1442
1442
|
local BRIDGE_STAMP = computeBridgeStamp()
|
|
1443
1443
|
local function setSource(scriptInst, source)
|
|
@@ -8847,7 +8847,7 @@ return {
|
|
|
8847
8847
|
<Properties>
|
|
8848
8848
|
<string name="Name">State</string>
|
|
8849
8849
|
<string name="Source"><![CDATA[-- Compiled with roblox-ts v3.0.0
|
|
8850
|
-
local CURRENT_VERSION = "2.
|
|
8850
|
+
local CURRENT_VERSION = "2.18.0"
|
|
8851
8851
|
local PLUGIN_VARIANT = "inspector"
|
|
8852
8852
|
local MAX_CONNECTIONS = 5
|
|
8853
8853
|
local BASE_PORT = 58741
|
|
@@ -1435,9 +1435,9 @@ local function computeBridgeStamp()
|
|
|
1435
1435
|
for i = 1, #combined do
|
|
1436
1436
|
h = (h * 33 + (string.byte(combined, i))) % 2147483647
|
|
1437
1437
|
end
|
|
1438
|
-
-- "2.
|
|
1438
|
+
-- "2.18.0" is replaced with the package version at package time
|
|
1439
1439
|
-- (scripts/build-plugin.mjs injectVersion), so a release bump also restamps.
|
|
1440
|
-
return `{tostring(h)}-2.
|
|
1440
|
+
return `{tostring(h)}-2.18.0`
|
|
1441
1441
|
end
|
|
1442
1442
|
local BRIDGE_STAMP = computeBridgeStamp()
|
|
1443
1443
|
local function setSource(scriptInst, source)
|
|
@@ -8847,7 +8847,7 @@ return {
|
|
|
8847
8847
|
<Properties>
|
|
8848
8848
|
<string name="Name">State</string>
|
|
8849
8849
|
<string name="Source"><![CDATA[-- Compiled with roblox-ts v3.0.0
|
|
8850
|
-
local CURRENT_VERSION = "2.
|
|
8850
|
+
local CURRENT_VERSION = "2.18.0"
|
|
8851
8851
|
local PLUGIN_VARIANT = "main"
|
|
8852
8852
|
local MAX_CONNECTIONS = 5
|
|
8853
8853
|
local BASE_PORT = 58741
|