Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Jul 20, 2020
1 parent 25e20ff commit 40fb70c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# run-in-roblox Changelog

## Unreleased Changes

## 0.3.0 (2020-07-19)
* **Breaking**: Reworked command line interface from the ground-up.
* Places are now passed with `--place`.
* Scripts are now passed via `--script`. A script is now always required.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "run-in-roblox"
description = "Run stuff inside Roblox Studio"
version = "0.2.0"
version = "0.3.0"
authors = ["Lucien Greathouse <[email protected]>"]
edition = "2018"
repository = "https://github.com/rojo-rbx/run-in-roblox"
Expand Down
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ run-in-roblox pipes output from inside Roblox Studio back to stdout/stderr, whic

## Installation

### From GitHub Releases
You can download pre-built binaries from [run-in-roblox's GitHub Releases page](https://github.com/rojo-rbx/run-in-roblox/releases).

### With [Foreman](https://github.com/rojo-rbx/foreman)
run-in-roblox can be installed with Foreman, a toolchain manager for Roblox projects.

**COMING SOON!**

### From GitHub Releases
You can download pre-built binaries from [run-in-roblox's GitHub Releases page](https://github.com/rojo-rbx/run-in-roblox/releases).
```bash
[tools]
run-in-roblox = { source = "rojo-rbx/run-in-roblox", version = "0.3.0" }
```
### From crates.io
You'll need Rust 1.37.0 or newer.
Expand All @@ -24,10 +27,12 @@ cargo install run-in-roblox
The recommended way to use `run-in-roblox` is with a place file and a script to run:
```bash
run-in-roblox MyPlace.rbxlx --script starter-script.lua
run-in-roblox --place MyPlace.rbxlx --script starter-script.lua
```
This will open `MyPlace.rbxlx` in Roblox Studio, run `starter-script.lua` until it completes, and then exit.
`--place` is optional, but `--script` is required.
## License
run-in-roblox is available under the terms of the MIT License. See [LICENSE.txt](LICENSE.txt) or <https://opensource.org/licenses/MIT> for details.
2 changes: 1 addition & 1 deletion demo/run
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
set -e

rojo build -o Place.rbxlx
run-in-roblox Place.rbxlx
run-in-roblox --place Place.rbxlx --script hello.lua

0 comments on commit 40fb70c

Please sign in to comment.