Releases: freshOS/Stevia
Releases ยท freshOS/Stevia
iOS 26 fix
What's Changed
- Adding aspect ratio functions by @jezreelbarbosa in #174
- Add the
SteviaLayoutConstraint
class to allow the removal of constraints added by Stevia. by @willonboy in #178 - fixes for iOS 26 by @birdsongapps in #182
New Contributors
- @jezreelbarbosa made their first contribution in #174
- @willonboy made their first contribution in #178
- @birdsongapps made their first contribution in #182
Full Changelog: 6.1.0...6.2.0
Swift Testing
Migrates XCTests to new Swift Testing framework.
Swift 6
Swift 5.9
Adds PrivacyInfo.xcprivacy
5.1.3 Adds PrivacyInfo.xcprivacy
5.1.2
5.1.1
5.1.0 swift-tools-version:5.3
Updates to swift-tools-version:5.3
5.0.1 Fixes CGFloats in Layout blocks
Thanks @moliya for noticing CGFloat
values were broken in layout
blocks, this is now fixed ๐
5.0.0 - Function builders, % api, CGFloat, api clean, UIStackViews !
Bug found that can break your layouts -> #141
- Adds support for
CGFloat
for all apis %
constraints can now be used inlayout
blocks for margins, height & spacessv()
is renamed tosubviews()
for claritysubviews()
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