# HG changeset patch # User Dennis Concepción Martín # Date 1627207191 -3600 # Node ID 7703c122ce96621dd60fee41d1d7dacd880e197b # Parent db607a20769ab41bff7d250497eb7048583a6e2c Add Terms of Use link diff -r db607a20769a -r 7703c122ce96 Simoleon.xcodeproj/project.pbxproj --- a/Simoleon.xcodeproj/project.pbxproj Sat Jul 24 23:57:07 2021 +0100 +++ b/Simoleon.xcodeproj/project.pbxproj Sun Jul 25 10:59:51 2021 +0100 @@ -707,7 +707,7 @@ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_ENTITLEMENTS = Simoleon/Simoleon.entitlements; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 10; + CURRENT_PROJECT_VERSION = 11; DEVELOPMENT_ASSET_PATHS = "\"Simoleon/Preview Content\""; DEVELOPMENT_TEAM = MTX83R5H8X; ENABLE_PREVIEWS = YES; @@ -732,7 +732,7 @@ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_ENTITLEMENTS = Simoleon/Simoleon.entitlements; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 10; + CURRENT_PROJECT_VERSION = 11; DEVELOPMENT_ASSET_PATHS = "\"Simoleon/Preview Content\""; DEVELOPMENT_TEAM = MTX83R5H8X; ENABLE_PREVIEWS = YES; diff -r db607a20769a -r 7703c122ce96 Simoleon.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate Binary file Simoleon.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed diff -r db607a20769a -r 7703c122ce96 Simoleon/Localisation/en.xcloc/Source Contents/Simoleon/en.lproj/Localizable.strings Binary file Simoleon/Localisation/en.xcloc/Source Contents/Simoleon/en.lproj/Localizable.strings has changed diff -r db607a20769a -r 7703c122ce96 Simoleon/Localisation/en.xcloc/Source Contents/Simoleon/es.lproj/Localizable.strings Binary file Simoleon/Localisation/en.xcloc/Source Contents/Simoleon/es.lproj/Localizable.strings has changed diff -r db607a20769a -r 7703c122ce96 Simoleon/Settings.swift --- a/Simoleon/Settings.swift Sat Jul 24 23:57:07 2021 +0100 +++ b/Simoleon/Settings.swift Sun Jul 25 10:59:51 2021 +0100 @@ -86,6 +86,10 @@ Link(destination: URL(string: "https://dennistech.io")!) { Text("Privacy Policy", comment: "Button to go to app privacy policy") } + + Link(destination: URL(string: "https://dennistech.io/terms-of-use")!) { + Text("Terms of Use", comment: "Button to go to app terms of use") + } } } .onAppear(perform: onAppear) @@ -130,5 +134,6 @@ static var previews: some View { Settings() .environmentObject(SubscriptionController()) + .environment(\.locale, .init(identifier: "es")) } }