All Versions
24
Latest Version
Avg Release Cycle
55 days
Latest Release
2037 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v5.1.1 Changes
November 19, 2020 -
v5.1.0 Changes
September 21, 2020⚡️ Updates to swift-tools-version:5.3
-
v5.0.1 Changes
April 20, 2020🍱 Thanks @moliya for noticing
CGFloatvalues were broken inlayoutblocks, this is now fixed 🎉 -
v5.0.0 Changes
April 05, 2020- ➕ Adds support for
CGFloatfor all apis %constraints can now be used inlayoutblocks for margins, height & spacessv()is renamed tosubviews()for clarity- 🏗
subviews()has now its function builder counterpart:subviews{}(no more commas!) - 🏗
layout()has now its function builder counterpart:layout {} fillVertically(m:)is renamed tofillVertically(padding:)fillHorizontally(m:)is renamed tofillHorizontally(padding:)fillContainer(x)is renamed tofillContainer(padding: x)centerHorizontally(x)is renamed tocenterHorizontally(offset: x)- 👍 Double dash
--operator is renamed in hyphen bullet for better compile times. (auto replace) - ➕ Adds UIStackView
arrangedSubviews {}function builder
- ➕ Adds support for
-
v4.8.0 Changes
January 06, 2020📦 Swift Package Manager is now the official way to install Stevia 🎉.
👀 In order to use other package managers, see previous versions.
🍱 Onwards ! ✨ -
v4.7.3 Changes
December 10, 2019- 🏗 Builds the pre-built framework with Xcode 11.2.1 & Swift 5.2.1
-
v4.7.2 Changes
November 13, 2019- 🛠 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 👏
- 🛠 Fixes the issue described in #123 where equation api had bugs when using
-
v4.7.1 Changes
November 04, 2019🚀 ⚠️ Warning, this release adds support for RTL languages which represents quite a big change. If you use this version, make sure to check you app for any layout issue and please report them :)
- Visual format now supports right-to-left language meaning
|-20-myviewmeansmyViewis pinned to the right in a right-to-left language environment. - ➕ Adds
leadingtrailingsupport in the chainable api.
Debug Tip
You can force RTL rendering by using
view.semanticContentAttribute = .forceRightToLeftin your view. - Visual format now supports right-to-left language meaning
-
v4.7.0
November 04, 2019 -
v4.6.1
October 16, 2019