-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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) - 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) Signed-off-by: Joe Mattiello <[email protected]> # gpg: Signature made Mon Oct 28 21:28:30 2019 EDT # gpg: using RSA key 8D361039DCE5C34A90E4E466A4679EBF9DE83365 # gpg: Good signature from "Joseph Mattiello <[email protected]>" [ultimate] # gpg: aka "Joseph Mattiello <[email protected]>" [ultimate] # gpg: aka "Joseph Mattiello <[email protected]>" [ultimate] # gpg: aka "Joseph Mattiello <[email protected]>" [ultimate] # gpg: aka "Joseph Mattiello (Public Git repo commit identity) <[email protected]>" [ultimate] # Conflicts: # Sources/Extensions/UIView+Hero.swift # Sources/Extensions/UIViewController+Hero.swift
- Loading branch information
Showing
174 changed files
with
63,285 additions
and
858 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,4 +67,5 @@ fastlane/test_output | |
|
||
# Gitbook | ||
node_modules | ||
_book | ||
_book | ||
xcodebuild.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,27 @@ | ||
# ---- About ---- | ||
module: Hero | ||
author: Luke Zhao | ||
author_url: http://lkzhao.com | ||
github_url: https://github.com/lkzhao/Hero | ||
swift_version: 3.0.2 | ||
source_directory: Examples | ||
module_version: 1.5.0 | ||
author: HeroTransitions | ||
readme: README.md | ||
theme: fullwidth | ||
copyright: 'See [license](https://github.com/HeroTransitions/Hero/blob/develop/LICENSE) for more details.' | ||
|
||
# ---- URLs ---- | ||
author_url: https://herotransitions.github.io/ | ||
dash_url: https://herotransitions.github.io/docsets/ScreenKitFramework.xml | ||
github_url: https://github.com/HeroTransitions/Hero | ||
github_file_prefix: https://github.com/HeroTransitions/Hero/tree/version/1.5.0/ | ||
|
||
# ---- Sources ---- | ||
podspec: Hero.podspec | ||
|
||
# ---- Generation ---- | ||
clean: true | ||
output: docs | ||
min_acl: public | ||
hide_documentation_coverage: false | ||
skip_undocumented: false | ||
objc: false | ||
swift_version: 5.0.1 | ||
|
||
# ---- Formatting ---- | ||
theme: fullwidth |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 0 additions & 22 deletions
22
Examples/Resources/Assets.xcassets/LaunchImage.launchimage/Contents.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,36 @@ | ||
# frozen_string_literal: true | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "Hero" | ||
s.version = "1.4.0" | ||
s.summary = "Elegant transition library for iOS" | ||
|
||
s.description = <<-DESC | ||
Hero is a library for building iOS view controller transitions. It provides a declarative layer on top of the UIKit's cumbersome transition APIs. Making custom transitions an easy task for developers. | ||
DESC | ||
|
||
s.homepage = "https://github.com/HeroTransitions/Hero" | ||
s.screenshots = "https://github.com/HeroTransitions/Hero/blob/master/Resources/Hero.png?raw=true" | ||
s.license = 'MIT' | ||
s.author = { "Luke" => "[email protected]" } | ||
s.source = { :git => "https://github.com/HeroTransitions/Hero.git", :tag => s.version.to_s } | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.tvos.deployment_target = '9.0' | ||
|
||
s.ios.frameworks = 'UIKit', 'Foundation' | ||
s.name = 'Hero' | ||
s.version = '1.5.0' | ||
s.summary = 'Elegant transition library for iOS' | ||
|
||
s.description = <<-DESC | ||
Hero is a library for building iOS view controller transitions. | ||
It provides a declarative layer on top of the UIKit's cumbersome transition APIs. | ||
Making custom transitions an easy task for developers. | ||
DESC | ||
|
||
s.homepage = 'https://github.com/HeroTransitions/Hero' | ||
s.screenshots = 'https://github.com/HeroTransitions/Hero/blob/master/Resources/Hero.png?raw=true' | ||
s.documentation_url = 'https://herotransitions.github.io/Hero/' | ||
s.screenshots = [ https://git.io/JeRkv, https://git.io/JeRke, https://git.io/JeRkf, https://git.io/JeRkJ] | ||
s.license = { :type => 'MIT' } | ||
s.author = { | ||
'Luke' => '[email protected]', | ||
'Joe Mattiello' => '[email protected]' | ||
} | ||
s.source = { git: 'https://github.com/HeroTransitions/Hero.git', tag: s.version.to_s } | ||
|
||
s.cocoapods_version = '>= 1.4.0' | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.tvos.deployment_target = '9.0' | ||
|
||
s.ios.frameworks = 'UIKit', 'Foundation', 'QuartzCore', 'CoreGraphics', 'CoreMedia' | ||
s.tvos.frameworks = 'UIKit', 'Foundation', 'QuartzCore', 'CoreGraphics', 'CoreMedia' | ||
|
||
s.swift_version = '4.2' | ||
|
||
s.requires_arc = true | ||
|
||
|
Oops, something went wrong.