mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 06:05:24 +00:00
Release Rojo 7.0.0-rc.2
This commit is contained in:
22
CHANGELOG.md
22
CHANGELOG.md
@@ -2,7 +2,21 @@
|
|||||||
|
|
||||||
## Unreleased Changes
|
## Unreleased Changes
|
||||||
|
|
||||||
## [7.0.0-rc.1][7.0.0-rc.1] (August 23, 2021)
|
## [7.0.0-rc.2] - October 19, 2021
|
||||||
|
This is the last release candidate for Rojo 7. In an effort to get Rojo 7 out the door, we'll be freezing features from here on out, something we should've done a couple months ago.
|
||||||
|
|
||||||
|
Expect to see Rojo 7 stable soon!
|
||||||
|
|
||||||
|
* Added support for writing `Tags` in project files, model files, and meta files. ([#484])
|
||||||
|
* Adjusted Studio plugin colors to match Roblox Studio palette. ([#482])
|
||||||
|
* Improved experimental two-way sync feature by batching changes. ([#478])
|
||||||
|
|
||||||
|
[#482]: https://github.com/rojo-rbx/rojo/pull/482
|
||||||
|
[#484]: https://github.com/rojo-rbx/rojo/pull/484
|
||||||
|
[#478]: https://github.com/rojo-rbx/rojo/pull/478
|
||||||
|
[7.0.0-rc.2]: https://github.com/rojo-rbx/rojo/releases/tag/v7.0.0-rc.2
|
||||||
|
|
||||||
|
## [7.0.0-rc.1] - August 23, 2021
|
||||||
In Rojo 6 and previous Rojo 7 alphas, an explicit Vector3 property would be written like this:
|
In Rojo 6 and previous Rojo 7 alphas, an explicit Vector3 property would be written like this:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
@@ -45,9 +59,9 @@ The shorthand property format that most users use is not impacted. For reference
|
|||||||
* Added the `fmt-project` subcommand for formatting Rojo project files.
|
* Added the `fmt-project` subcommand for formatting Rojo project files.
|
||||||
* Improved error output for many subcommands.
|
* Improved error output for many subcommands.
|
||||||
* Updated to stable versions of rbx-dom libraries.
|
* Updated to stable versions of rbx-dom libraries.
|
||||||
* Updated async infrastructure, which should fix a handful of bugs. ([#459][#459])
|
* Updated async infrastructure, which should fix a handful of bugs. ([#459])
|
||||||
* Fixed syncing refs in the Roblox Studio plugin ([#462][#462], [#466][#466])
|
* Fixed syncing refs in the Roblox Studio plugin ([#462], [#466])
|
||||||
* Added support for long paths on Windows. ([#464][#464])
|
* Added support for long paths on Windows. ([#464])
|
||||||
|
|
||||||
[#459]: https://github.com/rojo-rbx/rojo/pull/459
|
[#459]: https://github.com/rojo-rbx/rojo/pull/459
|
||||||
[#462]: https://github.com/rojo-rbx/rojo/pull/462
|
[#462]: https://github.com/rojo-rbx/rojo/pull/462
|
||||||
|
|||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -2234,7 +2234,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rojo"
|
name = "rojo"
|
||||||
version = "7.0.0-rc.1"
|
version = "7.0.0-rc.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"backtrace",
|
"backtrace",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rojo"
|
name = "rojo"
|
||||||
version = "7.0.0-rc.1"
|
version = "7.0.0-rc.2"
|
||||||
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
||||||
description = "Enables professional-grade development tools for Roblox developers"
|
description = "Enables professional-grade development tools for Roblox developers"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ local isDevBuild = script.Parent.Parent:FindFirstChild("ROJO_DEV_BUILD") ~= nil
|
|||||||
return strict("Config", {
|
return strict("Config", {
|
||||||
isDevBuild = isDevBuild,
|
isDevBuild = isDevBuild,
|
||||||
codename = "Epiphany",
|
codename = "Epiphany",
|
||||||
version = {7, 0, 0, "-rc.1"},
|
version = {7, 0, 0, "-rc.2"},
|
||||||
expectedServerVersionString = "7.0 or newer",
|
expectedServerVersionString = "7.0 or newer",
|
||||||
protocolVersion = 4,
|
protocolVersion = 4,
|
||||||
defaultHost = "localhost",
|
defaultHost = "localhost",
|
||||||
|
|||||||
Reference in New Issue
Block a user