Changelog History
Page 1
-
v1.6.1 Changes
β Added
- git ignore .zip files
π Changed
π· closes #703 Move CI depends to Mint
π Fixed
β‘οΈ Update README.md remove dead link closes #708
β‘οΈ Update the link to material design's motion duration easing links.
π fixes #704 SPM missing imports
-
v1.6.0 Changes
β Added
- π #695 - Swift 5 support
- π¦ #628 - Swift Package Manager Support
- π» #623 - Swift UI support and example
- π #681 - Application extension target support
- π #595 - Add Accio supported badge
- π #619 - XCode 11/12 support in example
- CI/CD improvements
π Changed
- β‘οΈ #648 - Updated iOS version support
- β‘οΈ #576 - Usage guide updates
π Fixed
- β #698 - Warnings fix
- #585 - replaceViewControllers now calls the completion
- #559 - Resuming property animator from current fraction
- #465 - fix keyboard transition
-
v1.5.0 Changes
October 29, 2019π Maintainance Pre-Swift 5 release.
π New maintainers
π CHANGELOG
π 1.5.0
β Added
π Changed
β Added support for right to left languages.
#520 by @ManueGEβ‘οΈ The hidden state of subviews are now taken into account in optimized snapshot type for
UIImageView
.
#521 by @ManueGECommits
- π Fix iOS demo app failing and style on iOS 13
- π Fix lint warnings and build errors in demo app
- β Add extra metadata to podspec
- π Deprecated messages to renamed
- β Add Joe Mattiello into Podspec authors for publishing
- π Fix pod lib lint failures
- β‘οΈ Update Podspec imports to match source imports
- π Use more minimal import
- β Remove Swift files from framework bundle products
- β Remove access modifier warnings (#616)
- π² GitIgnore xcode log files
- π Docs - Run jazzy against new spec
- π Docs - Update jazzy config
- β¬οΈ Bump version to 1.5.0
- Set theme jekyll-theme-midnight
- π Use custom snapshot for views that implements HeroCustomSnapshotView (#541)
- 0οΈβ£ Keep using default navigation animation direction with RTL languages (#520)
- β‘οΈ Hidden subviews not taken in account in optimized snapshot type (#521)
- β‘οΈ Update Collection 2.0 (#553)
-
v1.4.0 Changes
October 14, 2018 -
v1.3.1 Changes
September 11, 2018π This release fixes a retain cycle caused by strong references to delegates.
π± Thanks to @mkieselmann for contributing to this release ππ₯π―
π Fixed
- π Fixed the retain cycle caused by strong references to
previousNavigationDelegate
andpreviousTabBarDelegate
.
#516 by @mkieselmann
- π Fixed the retain cycle caused by strong references to
-
v1.3.0 Changes
July 30, 2018π This version fixes a few bugs related to animations and improves handling of
UINavigationController
delegate events and the ability to provide completion blocks for basic transition methods.Thanks to @lkzhao, @2blane, @kartikthapar, and @bradphilips for contributing to this release πͺπ―π₯
β Added
- β Adds an optional completion block parameter to the
dismissViewController
andreplaceViewController
methods.
#456 by @kartikthapar
π Changed
- π Allows previous
UINavigationController
delegate to handle delegate events.
#430 by @bradphilips
π Fixed
- β Adds an optional completion block parameter to the
-
v1.2.0 Changes
April 12, 2018β add
HeroTransitionDelegate
for observing transition state and progressβ add ability to change target state during interactive transition.
#322Just call the following method before calling
finish(animate:)
and provide the target state similar toapply(modifiers:, to:)
Hero.shared.changeTarget(modifiers:, to:)
for example:
someView.hero.modifiers = [.translate(x: 100)]// when you want to finish interactive transitionHero.shared.changeTarget(modifiers:[.translate(x: -100)], to: someView) Hero.shared.finish()// this will animate someView to the state of `.translate(x: -100)` instead of `.translate(x: 100)`
π a number of bug fixes and improvements:
- fix 2x mode on ipad
- Add type hinting to CascadeDirection comperator (#403) @BennX
- Update for Xcode 9.3 and Swift 4.1 (#439) @joaomvfsantos
- Add UIView+Hero.swift and UIViewController+Hero.swift to public heade⦠(#425) @DanielAsher
- copy image view resizing filter to snapshot (#428) @sroik
- TabBarController.selectedViewController issue (#407) @dDomovoj
- Fix typo on 'Advanture' (#398) @fabiothiroki
- Update README.zh-cn.md (#429) @Fidetro
-
v1.1.0 Changes
February 07, 2018β Added Constrained extension to make API more elegant. (#367) Big thanks to @dDomovoj for making this happen!
view.heroID -> view.hero.id view.heroModifiers -> view.hero.modifiers // etc..
π Make tvOS Shared to be detected by carthage (#370) Credit to: @fruitcoder
Prevents animation from restarting when new UITabBarController tab is pressed rapidly multiple times (#373) Credit to: @armandsLa
π Fix debug plugin to respect iPhone X safe insets (#375) Credit to: @nick-potts
π Fix tabbar issues with
hideButtonBarOnPush
Internal cleanup with CG extensions (#369) @adamnemecek
π Fix internal influencing other animations libraries.
-
v1.0.1 Changes
November 22, 2017- π fix an issue where interactive transition happens abruptly (#299) @capt-hook
- π fix a force unwrap crash (#333) @imougy
- π fix a division by zero crash when size is zero (#313) @caihua
- π Use context's final frame for destination (#327) @zacwest
- β‘οΈ Changes observeForProgressUpdate protection level to public, instead of internal (#329) @mad102190
- ability to override cornerRadius for matched view