trevordevore / levure

Application development framework for LiveCode
MIT License
32 stars 14 forks source link

sortHelpersBasedOnDependencies Goes Into Infinite Loop #134

Closed macMikey closed 5 years ago

macMikey commented 5 years ago

When sortHelpersBasedOnDependencies encounters "fileBrowser" in my project with its dependency "DataView Tree" it goes into an infinite loop of sticking the helper on the end of tIndexesToProcess because "DataView Tree" is not in tLoadedHelpersA

trevordevore commented 5 years ago

Fixed in develop: https://github.com/trevordevore/levure/commit/e78c5e0b9e33a64d4096049de0ab9aeed85e7d8f

macMikey commented 5 years ago

I just updated to the latest release on develop, and commented out everything in the helpers section of app.yml except for /helpers and now I get

screen shot 2019-01-20 at 00 26 39

If I restore the app.yml to the way it was I get the same error.

trevordevore commented 5 years ago

Check that you gave the latest version of the Data View Tree and Data View installed. I had to add ‘name:’ properties to them so that they could be listed as dependencies.

macMikey commented 5 years ago

Boom. Now it works. Thanks.