mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-25 15:16:07 +00:00
Ignore any unreadable property in Reconciler:diff (#848)
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
# Rojo Changelog
|
# Rojo Changelog
|
||||||
|
|
||||||
## Unreleased Changes
|
## Unreleased Changes
|
||||||
|
* Fixed Rojo plugin failing to connect when project contains certain unreadable properties ([#848])
|
||||||
* Added popout diff visualizer for table properties like Attributes and Tags ([#834])
|
* Added popout diff visualizer for table properties like Attributes and Tags ([#834])
|
||||||
* Updated Theme to use Studio colors ([#838])
|
* Updated Theme to use Studio colors ([#838])
|
||||||
* Added experimental setting for Auto Connect in playtests ([#840])
|
* Added experimental setting for Auto Connect in playtests ([#840])
|
||||||
@@ -55,6 +56,7 @@
|
|||||||
[#834]: https://github.com/rojo-rbx/rojo/pull/834
|
[#834]: https://github.com/rojo-rbx/rojo/pull/834
|
||||||
[#838]: https://github.com/rojo-rbx/rojo/pull/838
|
[#838]: https://github.com/rojo-rbx/rojo/pull/838
|
||||||
[#840]: https://github.com/rojo-rbx/rojo/pull/840
|
[#840]: https://github.com/rojo-rbx/rojo/pull/840
|
||||||
|
[#848]: https://github.com/rojo-rbx/rojo/pull/848
|
||||||
|
|
||||||
## [7.4.0] - January 16, 2024
|
## [7.4.0] - January 16, 2024
|
||||||
* Improved the visualization for array properties like Tags ([#829])
|
* Improved the visualization for array properties like Tags ([#829])
|
||||||
|
|||||||
@@ -177,10 +177,8 @@ local function diff(instanceMap, virtualInstances, rootId)
|
|||||||
|
|
||||||
if err.kind == Error.UnknownProperty then
|
if err.kind == Error.UnknownProperty then
|
||||||
Log.trace("Skipping unknown property {}.{}", err.details.className, err.details.propertyName)
|
Log.trace("Skipping unknown property {}.{}", err.details.className, err.details.propertyName)
|
||||||
elseif err.kind == Error.UnreadableProperty then
|
|
||||||
Log.trace("Skipping unreadable property {}.{}", err.details.className, err.details.propertyName)
|
|
||||||
else
|
else
|
||||||
return false, err
|
Log.trace("Skipping unreadable property {}.{}", err.details.className, err.details.propertyName)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user