Switch to using the latest Rojo release to sync itself

This commit is contained in:
Lucien Greathouse
2017-12-01 02:40:08 -08:00
parent f3483ee2e0
commit 5685619c3a
3 changed files with 4 additions and 8 deletions

View File

@@ -1,4 +0,0 @@
{
"rootDirectory": "src",
"rootObject": "ReplicatedStorage.Rojo"
}

View File

@@ -7,7 +7,7 @@ local Plugin = require(script.Parent.Plugin)
local function main() local function main()
local pluginInstance = Plugin.new() local pluginInstance = Plugin.new()
local toolbar = plugin:CreateToolbar("Rojo Plugin 0.2.0") local toolbar = plugin:CreateToolbar("Rojo Plugin vDEV")
toolbar:CreateButton("Test Connection", "Connect to Rojo Server", "") toolbar:CreateButton("Test Connection", "Connect to Rojo Server", "")
.Click:Connect(function() .Click:Connect(function()

View File

@@ -2,9 +2,9 @@
"name": "rojo", "name": "rojo",
"servePort": 8081, "servePort": 8081,
"partitions": { "partitions": {
"test-folder": { "Rojo": {
"path": "test-folder", "path": "plugin/src",
"target": "ReplicatedStorage.test" "target": "ReplicatedStorage.Rojo"
} }
} }
} }