Skip to content

Commit

Permalink
0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Dec 1, 2017
1 parent 5685619 commit 43cc350
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions plugin/src/Config.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
return {
pollingRate = 0.3,
version = "0.2.1",
}
3 changes: 2 additions & 1 deletion plugin/src/Main.server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/Plugin.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 43cc350

Please sign in to comment.