forked from rojo-rbx/rojo
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2c4f550ee |
@@ -1,5 +1,8 @@
|
|||||||
# Rojo Changelog
|
# Rojo Changelog
|
||||||
|
|
||||||
|
## 7.5.1 - April 25th, 2025
|
||||||
|
* Fixed output spam related to `Instance.Capabilities` in the plugin
|
||||||
|
|
||||||
## 7.5.0 - April 25th, 2025
|
## 7.5.0 - April 25th, 2025
|
||||||
* Fixed an edge case that caused model pivots to not be built correctly in some cases ([#1027])
|
* Fixed an edge case that caused model pivots to not be built correctly in some cases ([#1027])
|
||||||
* Add `blockedPlaceIds` project config field to allow blocking place ids from being live synced ([#1021])
|
* Add `blockedPlaceIds` project config field to allow blocking place ids from being live synced ([#1021])
|
||||||
|
|||||||
6
Cargo.lock
generated
6
Cargo.lock
generated
@@ -1603,9 +1603,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rbx_reflection_database"
|
name = "rbx_reflection_database"
|
||||||
version = "1.0.2+roblox-670"
|
version = "1.0.3+roblox-670"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5349b19e5e94fbcaba7a52175263ab64011e0a13f17ff57729f2f560ccdec615"
|
checksum = "e22c05ef92528c0fb0cc580592a65ca178d3ea9beb07a1d9ca0a2503c4f3721c"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"rbx_reflection",
|
"rbx_reflection",
|
||||||
@@ -1831,7 +1831,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rojo"
|
name = "rojo"
|
||||||
version = "7.5.0"
|
version = "7.5.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"backtrace",
|
"backtrace",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rojo"
|
name = "rojo"
|
||||||
version = "7.5.0"
|
version = "7.5.1"
|
||||||
rust-version = "1.70.0"
|
rust-version = "1.70.0"
|
||||||
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"
|
||||||
@@ -54,7 +54,7 @@ memofs = { version = "0.3.0", path = "crates/memofs" }
|
|||||||
rbx_binary = "1.0.0"
|
rbx_binary = "1.0.0"
|
||||||
rbx_dom_weak = "3.0.0"
|
rbx_dom_weak = "3.0.0"
|
||||||
rbx_reflection = "5.0.0"
|
rbx_reflection = "5.0.0"
|
||||||
rbx_reflection_database = "1.0.2"
|
rbx_reflection_database = "1.0.3"
|
||||||
rbx_xml = "1.0.0"
|
rbx_xml = "1.0.0"
|
||||||
|
|
||||||
anyhow = "1.0.80"
|
anyhow = "1.0.80"
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
7.5.0
|
7.5.1
|
||||||
@@ -34234,7 +34234,7 @@
|
|||||||
},
|
},
|
||||||
"Capabilities": {
|
"Capabilities": {
|
||||||
"Name": "Capabilities",
|
"Name": "Capabilities",
|
||||||
"Scriptability": "ReadWrite",
|
"Scriptability": "None",
|
||||||
"DataType": {
|
"DataType": {
|
||||||
"Value": "SecurityCapabilities"
|
"Value": "SecurityCapabilities"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user