commit 382e5d662b9e238e357783b8537f687ada30c1c6 parent a700d308b8af52b5c77c64c2866076214d40144b Author: Michael Camilleri <[email protected]> Date: Mon, 29 Jun 2026 10:58:03 +0900 Use 'Invite Players' for sharing controls Diffstat:
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Crossmate/Models/TipStore.swift b/Crossmate/Models/TipStore.swift @@ -39,7 +39,7 @@ enum TipCatalog { Tip( id: "solve-together", title: "Try a Multiplayer Crossword", - body: "Start a puzzle and choose Share Puzzle from the Players menu." + body: "Start a puzzle and choose Invite Players from the Players menu." ), Tip( id: "connect-providers", diff --git a/Crossmate/Views/Friends/FriendsView.swift b/Crossmate/Views/Friends/FriendsView.swift @@ -118,7 +118,7 @@ struct FriendsView: View { onStartGame(FriendNewGameTarget(authorID: authorID, displayName: displayName)) dismiss() } label: { - Label("Collaborate", systemImage: "plus.square") + Label("Invite", systemImage: "plus.square") } Button { renameText = friend.nickname ?? "" diff --git a/Crossmate/Views/GameList/GameCardView.swift b/Crossmate/Views/GameList/GameCardView.swift @@ -147,7 +147,7 @@ struct GameOverflowMenu: View { var body: some View { Menu { Button { onShare() } label: { - Label("Share", systemImage: "square.and.arrow.up") + Label("Invite", systemImage: "plus.square") } .disabled(!game.isOwned) Button { onResume() } label: { diff --git a/Crossmate/Views/GameList/GameShareItem.swift b/Crossmate/Views/GameList/GameShareItem.swift @@ -226,7 +226,7 @@ struct GameShareSheet: View { } } } - .navigationTitle("Share Puzzle") + .navigationTitle("Invite Players") .navigationBarTitleDisplayMode(.inline) .toolbar { ToolbarItem(placement: .cancellationAction) { diff --git a/Crossmate/Views/Puzzle/PuzzleModifiers.swift b/Crossmate/Views/Puzzle/PuzzleModifiers.swift @@ -235,7 +235,7 @@ struct PuzzleToolbarModifier: ViewModifier { Button { isShowingShareSheet = true } label: { - Text("Share Puzzle") + Text("Invite Players") } .disabled(!session.mutator.isOwned) }