Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
unnamedd committed Jun 8, 2020
1 parent 6d2adfc commit 0bff5d7
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion fastlane/Deliverfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

app_identifier "io.swift-evolution.app" # The bundle identifier of your app
username "[email protected]" # your Apple ID user
itc_team_name "Thiago Holanda"
itc_team_name "Thiago Holanda"
12 changes: 7 additions & 5 deletions fastlane/Precheckfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# For more information about this configuration visit
# https://github.com/fastlane/fastlane/tree/master/precheck#precheckfile
# https://docs.fastlane.tools/actions/precheck/

# In general, you can use the options available
# fastlane precheck --help
Expand All @@ -13,16 +13,18 @@
# :warn
# when triggered, this rule will warn you of a potential problem

# :fail
# :error
# when triggered, this rule will cause an error to be displayed and it will prevent any further fastlane commands from running after precheck finishes

# Examples:
negative_apple_sentiment(level: :skip)
# negative_apple_sentiment(level: :skip)
# curse_words(level: :warn)
# future_functionality(level: :error)
other_platforms(level: :error)
# other_platforms(level: :error)
# placeholder_text(level: :error)
# test_words(level: :error)
unreachable_urls(level: :error)
# unreachable_urls(level: :error)
# custom_text(data: ["fabric"], level: :warn)

include_in_app_purchases 'false'
copyright_date '2020'
1 change: 0 additions & 1 deletion fastlane/metadata/copyright.txt

This file was deleted.

1 change: 1 addition & 0 deletions fastlane/metadata/en-US/copyright.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2020
2 changes: 1 addition & 1 deletion fastlane/metadata/en-US/support_url.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@

https://evoapp.io
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ final class AboutViewController: UITableViewController {
Item(text: "Lisa Dziuba", type: .twitter, value: "LisaDziuba")
]

let copyright = "Copyright (c) 2017-2018 Thiago Holanda ([email protected])\n\nSwift and the Swift logo are trademarks of Apple Inc., registered in the U.S. and other countries."
let copyright = "Copyright (c) 2017-2020 Thiago Holanda ([email protected])\n\nSwift and the Swift logo are trademarks of Apple Inc., registered in the U.S. and other countries."
return Section(
section: .thanks,
items: items,
Expand Down
8 changes: 6 additions & 2 deletions swift-evolution/sourcecode/utils/extensions/UIImageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ extension UIImageView {
}

public func loadImage(from url: String?) {
guard let url = url, url != "" else {
guard let url = url, url.isEmpty == false else {
return
}

Service.requestImage(url) { [weak self] result in
guard let image = result.value else { return }

guard let image = result.value else {
return
}

DispatchQueue.main.async {
self?.image = image
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ final class DescriptionView: UIView {
self.versionLabel.text = "v\(version) (\(build))"
}


closeButton.isHidden = UIDevice.current.userInterfaceIdiom != .pad
}

Expand Down

0 comments on commit 0bff5d7

Please sign in to comment.