This commit is contained in:
Lucien Greathouse
2017-12-01 02:48:43 -08:00
parent 5685619c3a
commit 43cc350b7a
4 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
return {
pollingRate = 0.3,
version = "0.2.1",
}

View File

@@ -3,11 +3,12 @@ if not plugin then
end
local Plugin = require(script.Parent.Plugin)
local Config = require(script.Parent.Config)
local function main()
local pluginInstance = Plugin.new()
local toolbar = plugin:CreateToolbar("Rojo Plugin vDEV")
local toolbar = plugin:CreateToolbar("Rojo Plugin v" .. Config.version)
toolbar:CreateButton("Test Connection", "Connect to Rojo Server", "")
.Click:Connect(function()

View File

@@ -19,7 +19,7 @@ Plugin.__index = Plugin
function Plugin.new()
local address = "localhost"
local port = 8081
local port = 8000
local remote = ("http://%s:%d"):format(address, port)