Add test project for recent project strictness change

This commit is contained in:
Lucien Greathouse
2019-06-12 16:02:27 -07:00
parent 94cbe15b54
commit ff53113358
2 changed files with 8 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
* Added a warning when building binary place files, since they're still experimental and have bugs. * Added a warning when building binary place files, since they're still experimental and have bugs.
* Added a warning when trying to use Rojo 0.5.x with a Rojo 0.4.x-only project. * Added a warning when trying to use Rojo 0.5.x with a Rojo 0.4.x-only project.
* Added a warning when a Rojo project contains keys that start with `$`, which are reserved names. ([#191](https://github.com/LPGhatguy/rojo/issues/191)) * Added a warning when a Rojo project contains keys that start with `$`, which are reserved names. ([#191](https://github.com/LPGhatguy/rojo/issues/191))
* Rojo now throws an error if unknown keys are found in the project file.
* Added an icon to the plugin's toolbar button * Added an icon to the plugin's toolbar button
* Changed the plugin to use a docking widget for all UI. * Changed the plugin to use a docking widget for all UI.
* Changed the plugin to ignore unknown properties when live-syncing. * Changed the plugin to ignore unknown properties when live-syncing.

View File

@@ -0,0 +1,7 @@
{
"name": "legacy-0.5.x-reserved-names",
"tree": {
"$className": "Folder"
},
"some field Rojo doesn't have": true
}