Skip to content

Commit 43cc350

Browse files
committed
0.2.1
1 parent 5685619 commit 43cc350

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
## Current Master
44
* *No changes*
55

6+
## 0.2.1
7+
* Plugin only release
8+
* Changes default port to 8000
9+
610
## 0.2.0
711
* Support for `init.lua` like rbxfs and rbxpacker
812
* More robust syncing with a new reconciler

plugin/src/Config.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
return {
22
pollingRate = 0.3,
3+
version = "0.2.1",
34
}

plugin/src/Main.server.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ if not plugin then
33
end
44

55
local Plugin = require(script.Parent.Plugin)
6+
local Config = require(script.Parent.Config)
67

78
local function main()
89
local pluginInstance = Plugin.new()
910

10-
local toolbar = plugin:CreateToolbar("Rojo Plugin vDEV")
11+
local toolbar = plugin:CreateToolbar("Rojo Plugin v" .. Config.version)
1112

1213
toolbar:CreateButton("Test Connection", "Connect to Rojo Server", "")
1314
.Click:Connect(function()

plugin/src/Plugin.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Plugin.__index = Plugin
1919

2020
function Plugin.new()
2121
local address = "localhost"
22-
local port = 8081
22+
local port = 8000
2323

2424
local remote = ("http://%s:%d"):format(address, port)
2525

0 commit comments

Comments
 (0)