Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Dec 4, 2017
1 parent 35543c2 commit cafb547
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Rojo Change Log

## Current Master
* *No changes*

## 0.2.3
* Plugin only release
* Tightened `init` file rules to only match script files
* Previously, Rojo would sometimes pick up the wrong file when syncing

Expand Down
2 changes: 1 addition & 1 deletion plugin/src/Config.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
return {
pollingRate = 0.3,
version = "v0.2.2",
version = "v0.2.3",
dev = false,
}
2 changes: 1 addition & 1 deletion plugin/src/Main.server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local function main()

local displayedVersion = Config.dev and "DEV" or Config.version

local toolbar = plugin:CreateToolbar("Rojo Plugin v" .. displayedVersion)
local toolbar = plugin:CreateToolbar("Rojo Plugin " .. displayedVersion)

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

0 comments on commit cafb547

Please sign in to comment.