From 4908a7da981261921e32c66b5664a09a199dce6f Mon Sep 17 00:00:00 2001 From: Junhui Chen Date: Tue, 23 Sep 2025 18:11:24 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E9=9A=90=E7=A7=81?= =?UTF-8?q?=E6=94=BF=E7=AD=96=E9=93=BE=E6=8E=A5=E5=B9=B6=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E6=9D=83=E9=99=90=E6=8F=8F=E8=BF=B0=E6=96=87?= =?UTF-8?q?=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wake.xcodeproj/project.pbxproj | 10 ++++------ wake/View/OnBoarding/UserInfo.swift | 2 +- wake/View/Subscribe/SubscribeView.swift | 8 ++++---- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/wake.xcodeproj/project.pbxproj b/wake.xcodeproj/project.pbxproj index 81bc9bf..92fbba3 100644 --- a/wake.xcodeproj/project.pbxproj +++ b/wake.xcodeproj/project.pbxproj @@ -343,9 +343,8 @@ GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = wake/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = ""; - INFOPLIST_KEY_NSCameraUsageDescription = "We need access to your camera to take photos"; - INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "We need access to your photo library to select photos"; - INFOPLIST_KEY_NSUserTrackingUsageDescription = "我们需要访问您的Apple ID信息来为您提供登录服务"; + INFOPLIST_KEY_NSCameraUsageDescription = "We need access to your camera to capture your profile picture"; + INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "We need to access your photo library to select photos as avatars or blind box inputs"; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchScreen_Generation = YES; @@ -378,9 +377,8 @@ GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = wake/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = ""; - INFOPLIST_KEY_NSCameraUsageDescription = "We need access to your camera to take photos"; - INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "We need access to your photo library to select photos"; - INFOPLIST_KEY_NSUserTrackingUsageDescription = "我们需要访问您的Apple ID信息来为您提供登录服务"; + INFOPLIST_KEY_NSCameraUsageDescription = "We need access to your camera to capture your profile picture"; + INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "We need to access your photo library to select photos as avatars or blind box inputs"; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchScreen_Generation = YES; diff --git a/wake/View/OnBoarding/UserInfo.swift b/wake/View/OnBoarding/UserInfo.swift index 0971336..a191530 100644 --- a/wake/View/OnBoarding/UserInfo.swift +++ b/wake/View/OnBoarding/UserInfo.swift @@ -120,7 +120,7 @@ struct UserInfo: View { // Content VStack VStack(spacing: 20) { // Title - Text(showUsername ? "What's Your Name?" : "Add Your Avatar") + Text(showUsername ? "Enter your favorite nickname" : "Add Your Avatar") .font(Typography.font(for: .body, family: .quicksandBold)) .frame(maxWidth: .infinity, alignment: .center) diff --git a/wake/View/Subscribe/SubscribeView.swift b/wake/View/Subscribe/SubscribeView.swift index 0342efa..d696c70 100644 --- a/wake/View/Subscribe/SubscribeView.swift +++ b/wake/View/Subscribe/SubscribeView.swift @@ -238,7 +238,7 @@ struct SubscribeView: View { HStack(spacing: 8) { Button(action: { // 打开服务条款 - if let url = URL(string: "https://memorywake.com/privacy-policy") { + if let url = URL(string: "https://letsp.memorywake.com/policy/user-agreement") { UIApplication.shared.open(url) } }) { @@ -251,7 +251,7 @@ struct SubscribeView: View { Button(action: { // 打开隐私政策 - if let url = URL(string: "https://memorywake.com/privacy-policy") { + if let url = URL(string: "https://letsp.memorywake.com/policy/privacy-policy") { UIApplication.shared.open(url) } }) { @@ -270,11 +270,11 @@ struct SubscribeView: View { // } Button(action: { // 打开隐私政策 - if let url = URL(string: "https://memorywake.com/privacy-policy") { + if let url = URL(string: "https://letsp.memorywake.com/policy/membership-agreement") { UIApplication.shared.open(url) } }) { - Text("AI Usage Guidelines") + Text("Membership Agreement") .underline() }