Releases: AckeeCZ/ACKategories
Releases · AckeeCZ/ACKategories
6.7.0
6.6.0
6.5.1
Changed
- Reverted
BUILD_LIBRARY_FOR_DISTRIBUTION
to false (#84, kudos to @fortmarek)
6.5.0
Added
- Add Random extensions (#82, kudos to @fortmarek)
- Add more arguments from
NSLocalizedString
toString.localized()
(#80, kudos to @olejnjak) - Add prototype cell storage to
UITableView
andUICollectionView
(#78, kudos to @olejnjak)
Changed
- Deprecated
safeArea
extension on iOS 11+ (#79, kudos to @olejnjak) - Fix typos (#76, kudos to @michalsrutek)
- Set
BUILD_LIBRARY_FOR_DISTRIBUTION
toYES
(#75, kudos to @fortmarek) - Do not dismiss
presentingViewController
ofrootViewController
onBase.FlowCoordinator
stop()
when remaining VCs in the navigation stack (#72, kudos to @IgorRosocha)
Fixed
6.4.2-alpha
6.4.1
Fixed
- Fix
GradientView
layer frame on orientation change (#74, kudos to @fortmarek) - Fix generate docs action (#73, kudos to @fortmarek)
- Fix a typo (#70, kudos to @michalsrutek)
Changed
- Use a preferred
AnyObject
keyword instead ofclass
in protocol conformance (#71, kudos to @michalsrutek)
6.4.0
Added
- Add swift-doc action, checks actions (#67, kudos to @fortmarek)
- add
UIDevice.current.modelName
extension to receive model name of current device (#66, kudos to @olejnjak) - add
clearLaunchScreenCache()
to completely clear launch screen cache (#63, kudos to @IgorRosocha)
Fixed
- Fix swiftlint violations (#69, kudos to @fortmarek)
- Fix wrong transparency in
UIColor.image()
(#65, kudos to @janmisar)
Changed
6.3.0
- add support for generic dequeueing for MKAnnotationViews
dequeueAnnotationView(for annotation: MKAnnotation)
(#60, kudos to @svastven) - add support for Dark Mode when creating colored images from
UIColor
(#59, kudos to @svastven) - add
tapestry
for automating future releases (#56, kudos to @fortmarek) - update FlowCoordinator to count with iOS 13 modal presentations (#55, kudos to @olejnjak)
SwiftPM support
-
add
forceIntrinsic()
toUIView
to set itscontentHuggingPriority
andcontentCompressionResistance
toUILayoutPriority.required
(#48, kudos to @olejnjak) -
add
hexString
closure intoUIColorExtension
that will return hex string fromUIColor
(#49, kudos to @MajkCajk) -
add
type
parameter todequeueCell(...)
methods so using it is more convenient (#53, kudos to @olejnjak)From now you can also use
tableView.dequeueCell(for: indexPath, type: YourCell.self)