Compare commits

...

2 Commits

Author SHA1 Message Date
Lucien Greathouse
43cc350b7a 0.2.1 2017-12-01 02:48:43 -08:00
Lucien Greathouse
5685619c3a Switch to using the latest Rojo release to sync itself 2017-12-01 02:40:08 -08:00
6 changed files with 11 additions and 9 deletions

View File

@@ -3,6 +3,10 @@
## Current Master
* *No changes*
## 0.2.1
* Plugin only release
* Changes default port to 8000
## 0.2.0
* Support for `init.lua` like rbxfs and rbxpacker
* More robust syncing with a new reconciler

View File

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

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 0.2.0")
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)

View File

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