Skip to content

Commit

Permalink
Remove deployment target from project configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
daneden committed Jun 21, 2024
1 parent 4e0fefb commit 28ec28d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,9 @@
}
}
}
},
"Current Location" : {

},
"Customise notification content" : {
"localizations" : {
Expand Down Expand Up @@ -1092,6 +1095,7 @@
}
},
"My Location" : {
"extractionState" : "stale",
"localizations" : {
"it" : {
"stringUnit" : {
Expand All @@ -1102,6 +1106,7 @@
}
},
"My Location %@" : {
"extractionState" : "stale",
"localizations" : {
"it" : {
"stringUnit" : {
Expand Down
2 changes: 0 additions & 2 deletions Solstice.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1535,7 +1535,6 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 16.1;
MARKETING_VERSION = 2.1.1;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
Expand Down Expand Up @@ -1593,7 +1592,6 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 16.1;
MARKETING_VERSION = 2.1.1;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
Expand Down
2 changes: 1 addition & 1 deletion Solstice/Detail View/DailyOverview.swift
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ extension DailyOverview {
if let title = location.title {
Text(title)
} else {
Text("My Location")
Text("Current Location")
}
}
.font(.headline)
Expand Down
2 changes: 1 addition & 1 deletion Solstice/Detail View/DetailView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ struct DetailView<Location: ObservableLocation>: View {

var navBarTitleText: Text {
guard let title = location.title else {
return location is CurrentLocation ? Text("My Location") : Text(verbatim: "Solstice")
return location is CurrentLocation ? Text("Current Location") : Text(verbatim: "Solstice")
}

return Text(title)
Expand Down
2 changes: 1 addition & 1 deletion Widget/Helpers/WidgetLocationHeadingView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct WidgetLocationView: View {
guard let title = location.title else {
switch location.isRealLocation {
case true:
return Text("My Location \(Image(systemName: "location"))")
return Text("Current Location \(Image(systemName: "location"))")
case false:
return Text("\(Image("Solstice.SFSymbol")) Solstice")
}
Expand Down

0 comments on commit 28ec28d

Please sign in to comment.