Skip to content

Commit

Permalink
Merge pull request #581 from Person2099/patch-1
Browse files Browse the repository at this point in the history
fix: Update GitHub URLs in help menu
  • Loading branch information
MattKiazyk authored Jun 28, 2024
2 parents 600d4cb + 97bf958 commit 8a6f5a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Xcodes/XcodesApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ struct XcodesApp: App {

CommandGroup(replacing: CommandGroupPlacement.help) {
Button("Menu.GitHubRepo") {
let xcodesRepoURL = URL(string: "https://github.com/RobotsAndPencils/XcodesApp/")!
let xcodesRepoURL = URL(string: "https://github.com/XcodesOrg/XcodesApp/")!
openURL(xcodesRepoURL)
}

Divider()

Button("Menu.ReportABug") {
let bugReportURL = URL(string: "https://github.com/RobotsAndPencils/XcodesApp/issues/new?assignees=&labels=bug&template=bug_report.md&title=")!
let bugReportURL = URL(string: "https://github.com/XcodesOrg/XcodesApp/issues/new?assignees=&labels=bug&template=bug_report.md&title=")!
openURL(bugReportURL)
}

Button("Menu.RequestNewFeature") {
let featureRequestURL = URL(string: "https://github.com/RobotsAndPencils/XcodesApp/issues/new?assignees=&labels=enhancement&template=feature_request.md&title=")!
let featureRequestURL = URL(string: "https://github.com/XcodesOrg/XcodesApp/issues/new?assignees=&labels=enhancement&template=feature_request.md&title=")!
openURL(featureRequestURL)
}
}
Expand Down

0 comments on commit 8a6f5a7

Please sign in to comment.