0.5.0-alpha.10

This commit is contained in:
Lucien Greathouse
2019-05-29 13:24:06 -07:00
parent d4704a02c5
commit 0f9f1782ae
5 changed files with 15 additions and 17 deletions

View File

@@ -1,19 +1,17 @@
# Rojo Changelog # Rojo Changelog
## [Unreleased] ## [Unreleased]
* Upgraded significant dependencies:
* rbx_dom_weak 1.7.0 ## [0.5.0 Alpha 10](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.10) (May 29, 2019)
* `Content` properties can now be specified in projects and model files as strings
* Added support for `BrickColor`, but with no handy conversions yet
* rbx_reflection 3.0.384
* Updated reflection database to client release 384
* Adds support for new enum variants like `Lighting.Technology` as `"ShadowMap"`
* rbx_xml 0.9.0
* Performance improvements dealing with model/place files due to smaller error type
* Fixed serializing empty `Content` properties
* Fixed serializing infinite and NaN values
* Improved content compatibility utilizing reflection database
* Added support for implicit property values in JSON model files ([#154](https://github.com/LPGhatguy/rojo/pull/154)) * Added support for implicit property values in JSON model files ([#154](https://github.com/LPGhatguy/rojo/pull/154))
* `Content` propertyes can now be specified in projects and model files as regular string literals.
* Added support for `BrickColor` properties.
* Added support for properties added in client release 384, like `Lighting.Technology` being set to `"ShadowMap"`.
* Improved performance when working with XML models and places
* Fixed serializing empty `Content` properties as XML
* Fixed serializing infinite and NaN floating point properties in XML
* Improved compatibility with XML models
* Plugin should now be able to live-sync more properties, and ignore ones it can't, like `Lighting.Technology`.
## [0.5.0 Alpha 9](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.9) (April 4, 2019) ## [0.5.0 Alpha 9](https://github.com/LPGhatguy/rojo/releases/tag/v0.5.0-alpha.9) (April 4, 2019)
* Changed `rojo build` to use buffered I/O, which can make it up to 2x faster in some cases. * Changed `rojo build` to use buffered I/O, which can make it up to 2x faster in some cases.

2
Cargo.lock generated
View File

@@ -1270,7 +1270,7 @@ dependencies = [
[[package]] [[package]]
name = "rojo" name = "rojo"
version = "0.5.0-alpha.9" version = "0.5.0-alpha.10"
dependencies = [ dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"csv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "csv 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -25,7 +25,7 @@ If you have Rust installed, the easiest way to get Rojo is with Cargo!
To install the latest 0.5.0 alpha, use: To install the latest 0.5.0 alpha, use:
```sh ```sh
cargo install rojo --version 0.5.0-alpha.9 cargo install rojo --version 0.5.0-alpha.10
``` ```
## Installing the Plugin ## Installing the Plugin

View File

@@ -1,6 +1,6 @@
return { return {
codename = "Epiphany", codename = "Epiphany",
version = {0, 5, 0, "-alpha.9"}, version = {0, 5, 0, "-alpha.10"},
expectedServerVersionString = "0.5.0 or newer", expectedServerVersionString = "0.5.0 or newer",
protocolVersion = 2, protocolVersion = 2,
defaultHost = "localhost", defaultHost = "localhost",

View File

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