Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
env:
WORKSPACE: DevLog.xcworkspace
SCHEME: App
XCODE_VERSION: "26.5"
XCODE_VERSION: "27.0"
MATCH_GIT_URL: ${{ secrets.MATCH_GIT_URL }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}

Expand All @@ -19,7 +19,7 @@ permissions:
jobs:
build:
name: Build
runs-on: macos-latest
runs-on: xcode-27
timeout-minutes: 30
steps:
- uses: actions/checkout@v5
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:

test:
name: Test (${{ matrix.name }})
runs-on: macos-latest
runs-on: xcode-27
timeout-minutes: 30
strategy:
fail-fast: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,6 @@ private struct GoalCreateSaveBar: View {
Group {
if isSaving {
ProgressView()
.tint(Color.white)
} else {
Text(RecordPresentation.text("development_goal_save"))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ struct GoalDescriptionCard: View {

if isLoading {
ProgressView()
.tint(Color.accent)
.frame(maxWidth: .infinity)
.padding(.vertical, 16)
} else if description.isEmpty {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ struct GoalCreateTodoSelectionSheet: View {

if store.isLoading, store.todos.isEmpty {
ProgressView()
.tint(Color.accent)
.frame(maxWidth: .infinity)
.padding(.vertical, 40)
} else if store.hasLoadFailure, store.todos.isEmpty {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ public struct RecordEditorView: View {
Group {
if store.isLoading {
ProgressView()
.tint(Color.white)
} else {
Text(RecordPresentation.text(
store.isCorrection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ public struct GoalDetailView: View {
}
} else if !store.hasLoaded || store.isLoading, store.items.isEmpty {
ProgressView()
.tint(Color.accent)
.frame(maxWidth: .infinity)
.padding(.vertical, 32)
} else if store.items.isEmpty {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ struct GoalLinkedTodoCard: View {
private var content: some View {
if isLoading, todos.isEmpty {
ProgressView()
.tint(Color.accent)
.frame(maxWidth: .infinity)
.padding(.vertical, 20)
} else if hasLoadFailure, todos.isEmpty {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ struct GoalTodoLinkSheet: View {
private var sheetContent: some View {
if store.isLoading, store.todos.isEmpty {
ProgressView()
.tint(Color.accent)
.frame(maxWidth: .infinity)
.padding(.vertical, 40)
} else if store.hasLoadFailure, store.todos.isEmpty {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ struct LoginButton: View {
Group {
if showsProgressView {
ProgressView()
.tint(Color.accent)
} else {
Text(text)
.foregroundStyle(Color.textSecondary)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ private struct SearchResults: View {
.padding(.vertical, 32)
} else if store.isLoading && todos.isEmpty {
ProgressView()
.tint(Color.accent)
} else if todos.isEmpty {
Text(String(
localized: "todo_list_search_empty",
Expand Down
Loading
Loading