01-20-2025, 05:00 PM
(01-18-2025, 12:39 PM)Trikes Wrote: Final experiment export from old editor:
Code:<phyphox xmlns="http://phyphox.org/xml" xmlns:editor="http://phyphox.org/editor/xml" version="1.7" editor:version="1.0" locale="en"> <if editor:uuid="1544" editor:posx="1460" editor:posy="1780" less="false" equal="false" greater="true"> <input as="a" clear="false">lat_count</input> <input as="b" type="value">2</input> <input as="true" clear="false">lat(-2)_append</input> <input as="false" type="empty" /> <output as="result">lat(-2)_if_3+_fixes</output> </if>
Then import to new editor and export from new editor without any manual changes in-between:
Code:<phyphox xmlns="https://phyphox.org/xml" version="1.18"> <if equal="true"> <input as="a" keep="true">lat_count</input> <input type="value" as="b">2</input> <input as="true" keep="true">lat(-2)_append</input> <input type="empty" as="false"></input> <output>lat(-2)_if_3+_fixes</output> </if>
Notice how greater="true" turned into equal="true".
I have put a test file together and verified the bug. We have it already locally corrected and the fix should be included in the next release. Thanks for reporting: a really good find (and nasty bug)…

