All Versions
24
Latest Version
Avg Release Cycle
55 days
Latest Release
1415 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
CGFloat
values were broken inlayout
blocks, this is now fixed ๐ -
v5.0.0 Changes
April 05, 2020- โ Adds support for
CGFloat
for all apis %
constraints can now be used inlayout
blocks 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-myview
meansmyView
is pinned to the right in a right-to-left language environment. - โ Adds
leading
trailing
support in the chainable api.
Debug Tip
You can force RTL rendering by using
view.semanticContentAttribute = .forceRightToLeft
in your view. - Visual format now supports right-to-left language meaning
-
v4.7.0
November 04, 2019 -
v4.6.1
October 16, 2019