This commit is contained in:
Lucien Greathouse
2017-12-01 02:02:39 -08:00
parent 60a9135452
commit f3483ee2e0
4 changed files with 7 additions and 3 deletions

View File

@@ -3,5 +3,9 @@
## Current Master
* *No changes*
## 0.2.0
* Support for `init.lua` like rbxfs and rbxpacker
* More robust syncing with a new reconciler
## 0.1.0
* Initial release, functionally very similar to [rbxfs](https://github.com/LPGhatguy/rbxfs)

2
Cargo.lock generated
View File

@@ -1,6 +1,6 @@
[root]
name = "rojo"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"clap 2.28.0 (registry+https://github.com/rust-lang/crates.io-index)",
"notify 4.0.3 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -1,6 +1,6 @@
[package]
name = "rojo"
version = "0.1.0"
version = "0.2.0"
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
description = "A tool to create robust Roblox projects"
license = "MIT"

View File

@@ -7,7 +7,7 @@ local Plugin = require(script.Parent.Plugin)
local function main()
local pluginInstance = Plugin.new()
local toolbar = plugin:CreateToolbar("Rojo Plugin 0.1.0")
local toolbar = plugin:CreateToolbar("Rojo Plugin 0.2.0")
toolbar:CreateButton("Test Connection", "Connect to Rojo Server", "")
.Click:Connect(function()