Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for Xcode12.4 #1

Merged
merged 1 commit into from
Sep 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SwiftPMExample/Package/Sources/Blog/Blog.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ public struct Blog: View {

struct Blog_Previews: PreviewProvider {
static var previews: some View {
Blog(url: .init(string: "https://blog.iosdc.jp")!)
Blog(url: URL(string: "https://blog.iosdc.jp")!)
}
}
2 changes: 1 addition & 1 deletion SwiftPMExample/Package/Sources/BlogLinks/BlogLinks.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public struct BlogLinks: View {

struct BlogLinks_Previews: PreviewProvider {
static var previews: some View {
BlogLinks(url: .init(string: "https://fortee.jp/iosdc-japan-2021/blog-link")!)
BlogLinks(url: URL(string: "https://fortee.jp/iosdc-japan-2021/blog-link")!)
}
}

24 changes: 12 additions & 12 deletions SwiftPMExample/Package/Sources/Build/Build.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,31 +18,31 @@ public extension Build {
static var live = Self(
eventbriteURL: {
let url = Bundle.main.infoDictionary!["Eventbrite URL"] as! String
return .init(string: url)!
return URL(string: url)!
}, iOSDCJapanWebURL: {
let url = Bundle.main.infoDictionary!["iOSDC JAPAN URL"] as! String
return .init(string: url)!
return URL(string: url)!
}, sponsorURL: {
let url = Bundle.main.infoDictionary!["Sponsor URL"] as! String
return .init(string: url)!
return URL(string: url)!
}, bloglinkURL: {
let url = Bundle.main.infoDictionary!["Bloglink URL"] as! String
return .init(string: url)!
return URL(string: url)!
}, timetableURL: {
let url = Bundle.main.infoDictionary!["Timetable URL"] as! String
return .init(string: url)!
return URL(string: url)!
}, blogURL: {
let url = Bundle.main.infoDictionary!["Blog URL"] as! String
return .init(string: url)!
return URL(string: url)!
}
)

static var none = Self(
eventbriteURL: { .init(string: "https://")! },
iOSDCJapanWebURL: { .init(string: "https://")! },
sponsorURL: { .init(string: "https://")! },
bloglinkURL: { .init(string: "https://")! },
timetableURL: { .init(string: "https://")! },
blogURL: { .init(string: "https://")! }
eventbriteURL: { URL(string: "https://")! },
iOSDCJapanWebURL: { URL(string: "https://")! },
sponsorURL: { URL(string: "https://")! },
bloglinkURL: { URL(string: "https://")! },
timetableURL: { URL(string: "https://")! },
blogURL: { URL(string: "https://")! }
)
}
8 changes: 4 additions & 4 deletions SwiftPMExample/Package/Sources/Home/Home.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ struct PrimaryButtonStyle: ButtonStyle {

func makeBody(configuration: Configuration) -> some View {
#if os(macOS)
configuration.label
.font(.body.bold())
return configuration.label
.font(Font.body.bold())
.foregroundColor(.init(.windowBackgroundColor))
.opacity(configuration.isPressed ? 0.2 : 1.0)
.padding()
Expand All @@ -90,8 +90,8 @@ struct PrimaryButtonStyle: ButtonStyle {
.cornerRadius(4.0)
.shadow(color: Color(.labelColor).opacity(0.12), radius: 20, x: 0, y: 6)
#else
configuration.label
.font(.body.bold())
return configuration.label
.font(Font.body.bold())
.foregroundColor(.init(.systemBackground))
.opacity(configuration.isPressed ? 0.2 : 1.0)
.padding()
Expand Down
2 changes: 1 addition & 1 deletion SwiftPMExample/Package/Sources/Setting/Setting.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public struct Setting: View {
NavigationView {
List {
NavigationLink("Sign in fortee", destination:
WebView(request: .init(url: .init(string: "https://fortee.jp/login")!), configuration: .init())
WebView(request: .init(url: URL(string: "https://fortee.jp/login")!), configuration: .init())
)
}
.navigationTitle("Settings")
Expand Down
2 changes: 1 addition & 1 deletion SwiftPMExample/Package/Sources/Sponsor/Sponsor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public struct Sponsor: View {

struct Sponsor_Previews: PreviewProvider {
static var previews: some View {
Sponsor(url: .init(string: "https://iosdc.jp/2021/sponsor.html")!)
Sponsor(url: URL(string: "https://iosdc.jp/2021/sponsor.html")!)
}
}

2 changes: 1 addition & 1 deletion SwiftPMExample/Package/Sources/TimeTable/Timetable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public struct Timetable: View {

struct Timetable_Previews: PreviewProvider {
static var previews: some View {
Timetable(url: .init(string: "https://fortee.jp/iosdc-japan-2021/timetable")!)
Timetable(url: URL(string: "https://fortee.jp/iosdc-japan-2021/timetable")!)
}
}