Stevia v4.7.2 Release Notes

Release Date: 2019-11-13 // over 4 years ago
    • ๐Ÿ›  Fixes the issue described in #123 where equation api had bugs when using >= & <= with single values. Props @jsonfellin for noticing, thanks @excursus for chiming in ๐Ÿ™

    Before

    view.Width \>= 30 โ‰  view.width(\>=30) view.Width \>= 30 was equivalent to view.Width \>= Width + 30 (Wrong) view.Botton \>= 100 was equivalent to view.Bottom \>= Bottom + 100 (Wrong) view.Right \>= 100 was equivalent to view.Right \>= Right + 100 (Wrong)
    

    Now

    view.Width \>= 30 == view.width(\>=30) view.Height \<= 100 == view.height(\<=100) view.Botton \>= 100 == view.Bottom \>= Bottom - 100view.Right \>= 100 == view.Right \>= Right - 100
    
    • ๐Ÿฑ Big thanks @lukysnupy for his first contribution on improving our SPM integration ๐Ÿ‘