Skip to content

Commit 52cbefa

Browse files
committed
Update to Tahoe
1 parent dfe44eb commit 52cbefa

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ on: [push]
33
jobs:
44
build:
55
name: Build Xcode app project
6-
runs-on: macos-14
6+
runs-on: macos-26
77
env:
88
APP_NAME: Commandoak
9-
XCODE_VERSION: 15.2
9+
XCODE_VERSION: 26.0
1010
steps:
1111
- name: Checkout code
1212
uses: actions/checkout@v4

.github/workflows/lint-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [push]
33
jobs:
44
lint:
55
name: Run SwiftLint
6-
runs-on: macos-14
6+
runs-on: macos-26
77
steps:
88
- name: Checkout code
99
uses: actions/checkout@v4

Commandoak/View/CommandDetailView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct CommandDetailView: View {
3535
}
3636
}
3737
}
38-
ToolbarItem(placement: .cancellationAction) {
38+
ToolbarItem(placement: .destructiveAction) {
3939
Button("Delete") {
4040
withAnimation {
4141
delete()

Commandoak/View/CommandsView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ struct CommandsView: View {
2626
}
2727
.navigationSplitViewColumnWidth(min: 180, ideal: 200)
2828
.toolbar {
29-
ToolbarItem {
29+
ToolbarItem(placement: .principal) {
3030
Button(action: addItem) {
3131
Label("Add command", systemImage: "plus")
3232
}

0 commit comments

Comments
 (0)