forked from rojo-rbx/rojo
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2c4f550ee |
@@ -1,5 +1,8 @@
|
||||
# Rojo Changelog
|
||||
|
||||
## 7.5.1 - April 25th, 2025
|
||||
* Fixed output spam related to `Instance.Capabilities` in the plugin
|
||||
|
||||
## 7.5.0 - April 25th, 2025
|
||||
* 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])
|
||||
|
||||
6
Cargo.lock
generated
6
Cargo.lock
generated
@@ -1603,9 +1603,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
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"
|
||||
checksum = "5349b19e5e94fbcaba7a52175263ab64011e0a13f17ff57729f2f560ccdec615"
|
||||
checksum = "e22c05ef92528c0fb0cc580592a65ca178d3ea9beb07a1d9ca0a2503c4f3721c"
|
||||
dependencies = [
|
||||
"lazy_static",
|
||||
"rbx_reflection",
|
||||
@@ -1831,7 +1831,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "rojo"
|
||||
version = "7.5.0"
|
||||
version = "7.5.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"backtrace",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "rojo"
|
||||
version = "7.5.0"
|
||||
version = "7.5.1"
|
||||
rust-version = "1.70.0"
|
||||
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
||||
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_dom_weak = "3.0.0"
|
||||
rbx_reflection = "5.0.0"
|
||||
rbx_reflection_database = "1.0.2"
|
||||
rbx_reflection_database = "1.0.3"
|
||||
rbx_xml = "1.0.0"
|
||||
|
||||
anyhow = "1.0.80"
|
||||
|
||||
@@ -1 +1 @@
|
||||
7.5.0
|
||||
7.5.1
|
||||
@@ -34234,7 +34234,7 @@
|
||||
},
|
||||
"Capabilities": {
|
||||
"Name": "Capabilities",
|
||||
"Scriptability": "ReadWrite",
|
||||
"Scriptability": "None",
|
||||
"DataType": {
|
||||
"Value": "SecurityCapabilities"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user