Skip to content

Commit

Permalink
MORE ALPHABET THINGS
Browse files Browse the repository at this point in the history
  • Loading branch information
natewalck committed Jul 28, 2021
1 parent e09a8f8 commit 77c5005
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Example Assets/com.github.macadmins.Nudge.json
Expand Up @@ -54,11 +54,11 @@
"fallbackLanguage": "en",
"forceFallbackLanguage": false,
"forceScreenShotIcon": false,
"showDeferralCount": true,
"iconDarkPath": "/somewhere/logoDark.png",
"iconLightPath": "/somewhere/logoLight.png",
"screenShotDarkPath": "/somewhere/screenShotDark.png",
"screenShotLightPath": "/somewhere/screenShotLight.png",
"showDeferralCount": true,
"simpleMode": false,
"singleQuitButton": false,
"updateElements": [
Expand Down
4 changes: 2 additions & 2 deletions Example Assets/com.github.macadmins.Nudge.mobileconfig
Expand Up @@ -110,8 +110,6 @@
<false/>
<key>forceScreenShotIcon</key>
<false/>
<key>showDeferralCount</key>
<true/>
<key>iconDarkPath</key>
<string>/somewhere/logoDark.png</string>
<key>iconLightPath</key>
Expand All @@ -120,6 +118,8 @@
<string>/somewhere/screenShotDark.png</string>
<key>screenShotLightPath</key>
<string>/somewhere/screenShotLight.png</string>
<key>showDeferralCount</key>
<true/>
<key>simpleMode</key>
<false/>
<key>singleQuitButton</key>
Expand Down
2 changes: 1 addition & 1 deletion Example Assets/com.github.macadmins.Nudge.umad.json
Expand Up @@ -66,11 +66,11 @@
"fallbackLanguage": "en",
"forceFallbackLanguage": false,
"forceScreenShotIcon": false,
"showDeferralCount": true,
"iconDarkPath": "/somewhere/logoDark.png",
"iconLightPath": "/somewhere/logoLight.png",
"screenShotDarkPath": "/somewhere/screenShotDark.png",
"screenShotLightPath": "/somewhere/screenShotLight.png",
"showDeferralCount": true,
"simpleMode": false,
"singleQuitButton": false,
"umadElements": [
Expand Down
4 changes: 2 additions & 2 deletions Example Assets/com.github.macadmins.Nudge.umad.mobileconfig
Expand Up @@ -131,8 +131,6 @@
<false/>
<key>forceScreenShotIcon</key>
<false/>
<key>showDeferralCount</key>
<true/>
<key>iconDarkPath</key>
<string>/somewhere/logoDark.png</string>
<key>iconLightPath</key>
Expand All @@ -141,6 +139,8 @@
<string>/somewhere/screenShotDark.png</string>
<key>screenShotLightPath</key>
<string>/somewhere/screenShotLight.png</string>
<key>showDeferralCount</key>
<true/>
<key>simpleMode</key>
<false/>
<key>singleQuitButton</key>
Expand Down
4 changes: 2 additions & 2 deletions Nudge/Preferences/PreferencesStructure.swift
Expand Up @@ -394,11 +394,11 @@ extension UserInterface {
fallbackLanguage: String?? = nil,
forceFallbackLanguage: Bool?? = nil,
forceScreenShotIcon: Bool?? = nil,
showDeferralCount: Bool?? = nil,
iconDarkPath: String?? = nil,
iconLightPath: String?? = nil,
screenShotDarkPath: String?? = nil,
screenShotLightPath: String?? = nil,
showDeferralCount: Bool?? = nil,
simpleMode: Bool?? = nil,
singleQuitButton: Bool?? = nil,
umadElements: [UmadElement]?? = nil,
Expand All @@ -408,11 +408,11 @@ extension UserInterface {
fallbackLanguage: fallbackLanguage ?? self.fallbackLanguage,
forceFallbackLanguage: forceFallbackLanguage ?? self.forceFallbackLanguage,
forceScreenShotIcon: forceScreenShotIcon ?? self.forceScreenShotIcon,
showDeferralCount: showDeferralCount ?? self.showDeferralCount,
iconDarkPath: iconDarkPath ?? self.iconDarkPath,
iconLightPath: iconLightPath ?? self.iconLightPath,
screenShotDarkPath: screenShotDarkPath ?? self.screenShotDarkPath,
screenShotLightPath: screenShotLightPath ?? self.screenShotLightPath,
showDeferralCount: showDeferralCount ?? self.showDeferralCount,
simpleMode: simpleMode ?? self.simpleMode,
singleQuitButton: singleQuitButton ?? self.simpleMode,
umadElements: umadElements ?? self.umadElements,
Expand Down

0 comments on commit 77c5005

Please sign in to comment.