Skip to content

Commit b0d21a8

Browse files
committed
Added Eula and privcy policy
1 parent 8ecadf1 commit b0d21a8

9 files changed

Lines changed: 44 additions & 12 deletions

File tree

nightguard WatchKit App/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>964</string>
24+
<string>967</string>
2525
<key>NSAppTransportSecurity</key>
2626
<dict>
2727
<key>NSAllowsArbitraryLoads</key>

nightguard.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2152,7 +2152,7 @@
21522152
CODE_SIGN_ENTITLEMENTS = "nightguard WatchKit App/nightguard.entitlements";
21532153
CODE_SIGN_IDENTITY = "iPhone Developer";
21542154
CODE_SIGN_STYLE = Automatic;
2155-
CURRENT_PROJECT_VERSION = 964;
2155+
CURRENT_PROJECT_VERSION = 967;
21562156
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
21572157
INFOPLIST_FILE = "nightguard WatchKit App/Info.plist";
21582158
LD_RUNPATH_SEARCH_PATHS = (
@@ -2182,7 +2182,7 @@
21822182
CODE_SIGN_ENTITLEMENTS = "nightguard WatchKit App/nightguard.entitlements";
21832183
CODE_SIGN_IDENTITY = "iPhone Developer";
21842184
CODE_SIGN_STYLE = Automatic;
2185-
CURRENT_PROJECT_VERSION = 964;
2185+
CURRENT_PROJECT_VERSION = 967;
21862186
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
21872187
INFOPLIST_FILE = "nightguard WatchKit App/Info.plist";
21882188
LD_RUNPATH_SEARCH_PATHS = (
@@ -2209,7 +2209,7 @@
22092209
CODE_SIGN_ENTITLEMENTS = nightguard/scoutwatch.entitlements;
22102210
CODE_SIGN_IDENTITY = "iPhone Developer";
22112211
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
2212-
CURRENT_PROJECT_VERSION = 964;
2212+
CURRENT_PROJECT_VERSION = 967;
22132213
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
22142214
ENABLE_BITCODE = NO;
22152215
EXCLUDED_ARCHS = "";
@@ -2238,7 +2238,7 @@
22382238
CODE_SIGN_ENTITLEMENTS = nightguard/scoutwatch.entitlements;
22392239
CODE_SIGN_IDENTITY = "iPhone Developer";
22402240
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
2241-
CURRENT_PROJECT_VERSION = 964;
2241+
CURRENT_PROJECT_VERSION = 967;
22422242
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
22432243
ENABLE_BITCODE = NO;
22442244
INFOPLIST_FILE = nightguard/Info.plist;
@@ -2351,7 +2351,7 @@
23512351
CODE_SIGN_IDENTITY = "iPhone Developer";
23522352
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
23532353
CODE_SIGN_STYLE = Automatic;
2354-
CURRENT_PROJECT_VERSION = 964;
2354+
CURRENT_PROJECT_VERSION = 967;
23552355
GCC_C_LANGUAGE_STANDARD = gnu11;
23562356
GENERATE_INFOPLIST_FILE = YES;
23572357
INFOPLIST_FILE = "nightguard Widget Extension/Info.plist";
@@ -2391,7 +2391,7 @@
23912391
CODE_SIGN_IDENTITY = "iPhone Developer";
23922392
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
23932393
CODE_SIGN_STYLE = Automatic;
2394-
CURRENT_PROJECT_VERSION = 964;
2394+
CURRENT_PROJECT_VERSION = 967;
23952395
GCC_C_LANGUAGE_STANDARD = gnu11;
23962396
GENERATE_INFOPLIST_FILE = YES;
23972397
INFOPLIST_FILE = "nightguard Widget Extension/Info.plist";
@@ -2428,7 +2428,7 @@
24282428
CODE_SIGN_ENTITLEMENTS = "nightguard ComplicationExtension.entitlements";
24292429
CODE_SIGN_IDENTITY = "Apple Development";
24302430
CODE_SIGN_STYLE = Automatic;
2431-
CURRENT_PROJECT_VERSION = 964;
2431+
CURRENT_PROJECT_VERSION = 967;
24322432
GCC_C_LANGUAGE_STANDARD = gnu11;
24332433
GENERATE_INFOPLIST_FILE = YES;
24342434
INFOPLIST_FILE = "nightguard Complication/Info.plist";
@@ -2470,7 +2470,7 @@
24702470
CODE_SIGN_ENTITLEMENTS = "nightguard ComplicationExtension.entitlements";
24712471
CODE_SIGN_IDENTITY = "Apple Development";
24722472
CODE_SIGN_STYLE = Automatic;
2473-
CURRENT_PROJECT_VERSION = 964;
2473+
CURRENT_PROJECT_VERSION = 967;
24742474
GCC_C_LANGUAGE_STANDARD = gnu11;
24752475
GENERATE_INFOPLIST_FILE = YES;
24762476
INFOPLIST_FILE = "nightguard Complication/Info.plist";

nightguard/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<key>CFBundleSignature</key>
2626
<string>????</string>
2727
<key>CFBundleVersion</key>
28-
<string>964</string>
28+
<string>967</string>
2929
<key>ITSAppUsesNonExemptEncryption</key>
3030
<false/>
3131
<key>LSApplicationCategoryType</key>

nightguard/resources/Base.lproj/Localizable.strings

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -661,3 +661,12 @@
661661
"No active subscription found to restore." = "No active subscription found to restore.";
662662
"Purchases restored successfully." = "Purchases restored successfully.";
663663
"Restore failed: %@" = "Restore failed: %@";
664+
665+
/* Legal section header */
666+
"Legal" = "Legal";
667+
668+
/* Link to Terms of Use */
669+
"Terms of Use (EULA)" = "Terms of Use (EULA)";
670+
671+
/* Link to Privacy Policy */
672+
"Privacy Policy" = "Privacy Policy";

nightguard/resources/de.lproj/Localizable.strings

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -721,3 +721,12 @@ Damit diese funktionieren, müssen Nightguard Widgets auf dem Lock-Screen platzi
721721
"No active subscription found to restore." = "Kein aktives Abonnement zum Wiederherstellen gefunden.";
722722
"Purchases restored successfully." = "Käufe erfolgreich wiederhergestellt.";
723723
"Restore failed: %@" = "Wiederherstellung fehlgeschlagen: %@";
724+
725+
/* Legal section header */
726+
"Legal" = "Rechtliches";
727+
728+
/* Link to Terms of Use */
729+
"Terms of Use (EULA)" = "Nutzungsbedingungen (EULA)";
730+
731+
/* Link to Privacy Policy */
732+
"Privacy Policy" = "Datenschutzerklärung";

nightguard/resources/fi-FI.lproj/Localizable.strings

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -783,3 +783,12 @@
783783
"No active subscription found to restore." = "Aktiivista tilausta ei löytynyt palautettavaksi.";
784784
"Purchases restored successfully." = "Ostot palautettu onnistuneesti.";
785785
"Restore failed: %@" = "Palautus epäonnistui: %@";
786+
787+
/* Legal section header */
788+
"Legal" = "Legal";
789+
790+
/* Link to Terms of Use */
791+
"Terms of Use (EULA)" = "Terms of Use (EULA)";
792+
793+
/* Link to Privacy Policy */
794+
"Privacy Policy" = "Privacy Policy";

nightguard/views/PrefsView.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ struct PrefsView: View {
7474
Spacer()
7575
}
7676
}
77+
78+
Section(header: Text(NSLocalizedString("Legal", comment: "Legal section header"))) {
79+
Link(NSLocalizedString("Terms of Use (EULA)", comment: "Link to Terms of Use"), destination: URL(string: "https://sportmeo.com/de/bedingungen")!)
80+
Link(NSLocalizedString("Privacy Policy", comment: "Link to Privacy Policy"), destination: URL(string: "https://sportmeo.com/de/bedingungen#nutzungsbedingungen")!)
81+
}
7782

7883
Section {
7984
HStack {

nightguardTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>964</string>
22+
<string>967</string>
2323
</dict>
2424
</plist>

nightguardUITests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>964</string>
22+
<string>967</string>
2323
</dict>
2424
</plist>

0 commit comments

Comments
 (0)