Skip to content

Commit

Permalink
Merge branch 'main' into deployment-target-macOS-15
Browse files Browse the repository at this point in the history
  • Loading branch information
F1248 committed Aug 22, 2024
2 parents 037d0df + 5cfc325 commit 7f752d7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Build-Genius.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ on:
- .swift-version
- .swiftformat
- .swiftlint.yml
- Genius
- Genius.xcodeproj
- Genius/**
- Genius.xcodeproj/**
pull_request:
paths:
- .github/workflows/Build-Genius.yml
- .swift-version
- .swiftformat
- .swiftlint.yml
- Genius
- Genius.xcodeproj
- Genius/**
- Genius.xcodeproj/**
workflow_dispatch:

concurrency:
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Select Xcode version
run: |
/usr/bin/sudo /usr/bin/xcode-select --switch /Applications/Xcode_16.0.app
/usr/bin/sudo /usr/bin/xcode-select --switch /Applications/Xcode_16.1.app
/bin/echo "$(/usr/bin/xcodebuild -version | /usr/bin/tr "\n" " ")selected"
- name: Build Genius.app
Expand Down
4 changes: 2 additions & 2 deletions Genius/GeniusApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ struct GeniusApp: App {
}
.windowToolbarStyle(.unified(showsTitle: false))
.commands {
CommandGroup(replacing: .newItem) {}
CommandGroup(replacing: .help) {}
CommandGroup(replacing: .newItem) { EmptyView() }
CommandGroup(replacing: .help) { EmptyView() }
}
}

Expand Down

0 comments on commit 7f752d7

Please sign in to comment.