Skip to content

Commit a362773

Browse files
authored
Merge pull request #71 from BlueHuskyStudios/develop
Sync develop into master
2 parents d4b2b04 + 78fded2 commit a362773

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ A Minesweeper-like game written entirely in [Swift](https://Swift.org), using [S
77

88
## Bugs and TODOs ##
99

10-
Any [known bugs](https://github.com/BenLeggiero/Swift-Mines/issues?q=is%3Aopen+is%3Aissue+label%3Abug) and [future features](https://github.com/BenLeggiero/Swift-Mines/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) will be listed in the Issues tab.
10+
Any [known bugs](https://github.com/BlueHuskyStudios/Swift-Mines/issues?q=is%3Aopen+is%3Aissue+label%3Abug) and [future features](https://github.com/BlueHuskyStudios/Swift-Mines/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement) will be listed in the Issues tab.
1111

12-
If you notice any other bugs or have any other ideas, feel free to [report or suggest them](https://github.com/BenLeggiero/Swift-Mines/issues/new)!
12+
If you notice any other bugs or have any other ideas, feel free to [report or suggest them](https://github.com/BlueHuskyStudios/Swift-Mines/issues/new)!
1313

1414
Have fun!
1515

Swift Mines/Shared Cross-Platform/Constants/URL Constants.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import Foundation
1313
public extension URL {
1414

1515
/// The URL for the GitHub repo for this app
16-
static let repo = URL(string: "https://github.com/BenLeggiero/Swift-Mines")
16+
static let repo = URL(string: "https://github.com/BlueHuskyStudios/Swift-Mines")
1717
?? URL(fileURLWithPath: "").also { assertionFailure("The repo URL the developer provided was invalid") }
1818

1919
/// The URL for providing feedback about Swift Mines

Swift Mines/Shared Cross-Platform/Image Conveniences/Generated Image Cache.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import CrossKitTypes
1212

1313

1414
// Some convenient constants for use in the cache. These should be self-explanatory. If they're not, please file a bug:
15-
// https://GitHub.com/BenLeggiero/Swift-Mines/issues/new
15+
// https://GitHub.com/BlueHuskyStudios/Swift-Mines/issues/new
1616

1717
private let presumedTallestScreenResolution = 2880
1818
private let presumedEasiestBoardNumberOfVerticalSquares = 4

Swift Mines/Swift Mines for macOS/AppDelegate.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,30 +99,35 @@ private extension AppDelegate {
9999

100100

101101
/// The user selected the "Source Code" menu item in the "Swift Mines" menu
102+
@objc(didSelectSourceCodeMenuItem:)
102103
@IBAction func didSelectSourceCodeMenuItem(sender: NSMenuItem) {
103104
NSWorkspace.shared.open(.repo)
104105
}
105106

106107

107108
/// The user selected the "New" menu item in the "Game" menu
109+
@objc(didSelectNewGameMenuItem:)
108110
@IBAction func didSelectNewGameMenuItem(sender: NSMenuItem) {
109111
overallAppState.currentScreen = .newGameSetup
110112
}
111113

112114

113115
/// The user selected the "Restart" menu item in the "Game" menu
116+
@objc(didSelectRestartMenuItem:)
114117
@IBAction func didSelectRestartMenuItem(sender: NSMenuItem) {
115118
overallAppState.game.startNewGame()
116119
}
117120

118121

119122
/// The user selected the "Feedback" menu item in the "Help" menu
123+
@objc(didSelectFeedbackMenuItem:)
120124
@IBAction func didSelectFeedbackMenuItem(sender: NSMenuItem) {
121125
NSWorkspace.shared.open(.feedback)
122126
}
123127

124128

125129
/// The user selected the "Swift Mines Help" menu item in the "Help" menu
130+
@objc(showHelp:)
126131
@IBAction func showHelp(sender: NSMenuItem) {
127132
NSWorkspace.shared.open(.help)
128133
}

0 commit comments

Comments
 (0)