@chrrxs/robloxstudio-mcp-inspector 2.22.3 → 2.22.4
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 +649 -325
- package/package.json +1 -1
- package/studio-plugin/MCPInspectorPlugin.rbxmx +3 -3
- package/studio-plugin/MCPPlugin.rbxmx +3 -3
package/package.json
CHANGED
|
@@ -1439,9 +1439,9 @@ local function computeBridgeStamp()
|
|
|
1439
1439
|
for i = 1, #combined do
|
|
1440
1440
|
h = (h * 33 + (string.byte(combined, i))) % 2147483647
|
|
1441
1441
|
end
|
|
1442
|
-
-- "2.22.
|
|
1442
|
+
-- "2.22.4" is replaced with the package version at package time
|
|
1443
1443
|
-- (scripts/build-plugin.mjs injectVersion), so a release bump also restamps.
|
|
1444
|
-
return `{tostring(h)}-2.22.
|
|
1444
|
+
return `{tostring(h)}-2.22.4`
|
|
1445
1445
|
end
|
|
1446
1446
|
local BRIDGE_STAMP = computeBridgeStamp()
|
|
1447
1447
|
local function setSource(scriptInst, source)
|
|
@@ -10814,7 +10814,7 @@ return {
|
|
|
10814
10814
|
<Properties>
|
|
10815
10815
|
<string name="Name">State</string>
|
|
10816
10816
|
<string name="Source"><![CDATA[-- Compiled with roblox-ts v3.0.0
|
|
10817
|
-
local CURRENT_VERSION = "2.22.
|
|
10817
|
+
local CURRENT_VERSION = "2.22.4"
|
|
10818
10818
|
local PLUGIN_VARIANT = "inspector"
|
|
10819
10819
|
local BASE_PORT = 58741
|
|
10820
10820
|
local function createConnection(port)
|
|
@@ -1439,9 +1439,9 @@ local function computeBridgeStamp()
|
|
|
1439
1439
|
for i = 1, #combined do
|
|
1440
1440
|
h = (h * 33 + (string.byte(combined, i))) % 2147483647
|
|
1441
1441
|
end
|
|
1442
|
-
-- "2.22.
|
|
1442
|
+
-- "2.22.4" is replaced with the package version at package time
|
|
1443
1443
|
-- (scripts/build-plugin.mjs injectVersion), so a release bump also restamps.
|
|
1444
|
-
return `{tostring(h)}-2.22.
|
|
1444
|
+
return `{tostring(h)}-2.22.4`
|
|
1445
1445
|
end
|
|
1446
1446
|
local BRIDGE_STAMP = computeBridgeStamp()
|
|
1447
1447
|
local function setSource(scriptInst, source)
|
|
@@ -10814,7 +10814,7 @@ return {
|
|
|
10814
10814
|
<Properties>
|
|
10815
10815
|
<string name="Name">State</string>
|
|
10816
10816
|
<string name="Source"><![CDATA[-- Compiled with roblox-ts v3.0.0
|
|
10817
|
-
local CURRENT_VERSION = "2.22.
|
|
10817
|
+
local CURRENT_VERSION = "2.22.4"
|
|
10818
10818
|
local PLUGIN_VARIANT = "main"
|
|
10819
10819
|
local BASE_PORT = 58741
|
|
10820
10820
|
local function createConnection(port)
|