Skip to content

Commit

Permalink
[picmatch] Change template BeMatch to TenMatch
Browse files Browse the repository at this point in the history
  • Loading branch information
ren-suke committed Aug 20, 2024
1 parent f9e178f commit 1502e0e
Show file tree
Hide file tree
Showing 460 changed files with 5,397 additions and 18,483 deletions.
8 changes: 4 additions & 4 deletions App/PicMatch/Staging.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
objects = {

/* Begin PBXBuildFile section */
B7008E6E2A8027F600C36803 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = B7CCF9A12A7AF47600B64CFE /* GoogleService-Info.plist */; };
B7703D6F2AB319E0006BF41F /* InfoPlist.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = B7703D6E2AB319E0006BF41F /* InfoPlist.xcstrings */; };
B7765AF22B46C80D001B5C13 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7765AF12B46C80D001B5C13 /* AdSupport.framework */; };
B7765AF42B46C819001B5C13 /* AppTrackingTransparency.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7765AF32B46C819001B5C13 /* AppTrackingTransparency.framework */; };
Expand All @@ -20,6 +19,7 @@
B7BC78B82B55571400C0B97E /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B7BC78B72B55571400C0B97E /* StoreKit.framework */; };
B7C884252BCFD7540099548C /* AppFeature in Frameworks */ = {isa = PBXBuildFile; productRef = B7C884242BCFD7540099548C /* AppFeature */; };
B7DA47D92C43E00C00BC96F2 /* APIClientLive in Frameworks */ = {isa = PBXBuildFile; productRef = B7DA47D82C43E00C00BC96F2 /* APIClientLive */; };
FABFC7F22C74DFE4002B035F /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = FABFC7F12C74DFE4002B035F /* GoogleService-Info.plist */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
Expand Down Expand Up @@ -49,7 +49,7 @@
B783E1752A137F3E002E782F /* App.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = App.entitlements; path = Staging/App.entitlements; sourceTree = "<group>"; };
B7AAEEEE2BCFF941005704E4 /* Localizable.xcstrings */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json.xcstrings; path = Localizable.xcstrings; sourceTree = "<group>"; };
B7BC78B72B55571400C0B97E /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
B7CCF9A12A7AF47600B64CFE /* GoogleService-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; name = "GoogleService-Info.plist"; path = "Staging/GoogleService-Info.plist"; sourceTree = "<group>"; };
FABFC7F12C74DFE4002B035F /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "../../../../../Downloads/GoogleService-Info.plist"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -96,7 +96,7 @@
B783E0F92A11FFD0002E782F /* Assets.xcassets */,
B7703D6E2AB319E0006BF41F /* InfoPlist.xcstrings */,
B783E16E2A121FC6002E782F /* Info.plist */,
B7CCF9A12A7AF47600B64CFE /* GoogleService-Info.plist */,
FABFC7F12C74DFE4002B035F /* GoogleService-Info.plist */,
B783E0FB2A11FFD0002E782F /* Preview Content */,
);
path = Multiplatform;
Expand Down Expand Up @@ -194,7 +194,7 @@
B7AAEEEF2BCFF941005704E4 /* Localizable.xcstrings in Resources */,
B7703D6F2AB319E0006BF41F /* InfoPlist.xcstrings in Resources */,
B783E0FA2A11FFD0002E782F /* Assets.xcassets in Resources */,
B7008E6E2A8027F600C36803 /* GoogleService-Info.plist in Resources */,
FABFC7F22C74DFE4002B035F /* GoogleService-Info.plist in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
630 changes: 324 additions & 306 deletions Packages/PicMatch/Package.swift

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ public struct AchievementHistoryWidgetView: View {
VStack(alignment: .leading, spacing: 0) {
Label("HISTORY", systemImage: "calendar")
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))

HStack(alignment: .bottom, spacing: 8) {
Text(viewStore.displayDaysAgo)
.font(.system(size: 64, weight: .semibold))
.font(.system(size: 64, weight: .semibold, design: .rounded))

Text("days.", bundle: .module)
.font(.system(size: 32, weight: .semibold))
.font(.system(size: 32, weight: .semibold, design: .rounded))
.padding(.bottom, 8)
}

Text(viewStore.displayCreationDate)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))
}
.frame(maxWidth: .infinity, alignment: .leading)
.padding(.vertical, 16)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ struct AchievementRatingWidgetView: View {
VStack(alignment: .leading, spacing: 8) {
Text("RATING", bundle: .module)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))

HStack(spacing: 8) {
ForEach(0 ..< 5) { _ in
Expand All @@ -24,7 +24,7 @@ struct AchievementRatingWidgetView: View {

Text("Count of swipes across Japan", bundle: .module)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))
}
.frame(maxWidth: .infinity, alignment: .leading)
.padding(.vertical, 16)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ struct AchievementWidgetView: View {
VStack(alignment: .leading, spacing: 0) {
Label(titleKey, systemImage: systemImage)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))

Text(displayCount)
.font(.system(size: 64, weight: .semibold))
.font(.system(size: 64, weight: .semibold, design: .rounded))

Text(text)
.foregroundStyle(Color.secondary)
.font(.system(.headline, weight: .semibold))
.font(.system(.headline, design: .rounded, weight: .semibold))
}
.frame(maxWidth: .infinity, alignment: .leading)
.padding(.vertical, 16)
Expand Down
Loading

0 comments on commit 1502e0e

Please sign in to comment.