Skip to content
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 BitDream/BitDreamApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ private extension BitDreamApp {
.navigationTitle("About BitDream") // Proper window title handling
.environmentObject(themeManager)
.immediateTheme(manager: themeManager)
.frame(width: 320, height: 400)
.frame(width: 320)
}
.windowResizability(.contentSize)
.defaultPosition(.center)
Expand Down
9 changes: 9 additions & 0 deletions BitDream/Views/iOS/Settings/iOSAboutView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@ struct iOSAboutView: View {
.padding(.top, 12)
}

Button("GitHub") {
hapticFeedback.play(.actionTriggered)
if let url = URL(string: "https://github.com/austin-smith/BitDream") {
openURL(url)
}
}
.buttonStyle(.bordered)
.controlSize(.regular)

// Transmission Acknowledgment
VStack(spacing: 8) {
Divider()
Expand Down
10 changes: 9 additions & 1 deletion BitDream/Views/macOS/macOSAboutView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,17 @@ struct macOSAboutView: View {
.foregroundStyle(.tertiary)
.padding(.top, 12)
}

Button("GitHub") {
if let url = URL(string: "https://github.com/austin-smith/BitDream") {
openURL(url)
}
}
.buttonStyle(.bordered)
.controlSize(.regular)
Comment thread
austin-smith marked this conversation as resolved.
}

// Transmission Acknowledgment - cleaner integration
// Transmission Acknowledgment
VStack(spacing: 8) {
Divider()
.padding(.horizontal, 24)
Expand Down
Loading