Skip to content

Commit

Permalink
Update for change in mimir formats. Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
HildisviniOttar committed Jan 11, 2022
1 parent 2da137e commit 7fd8410
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions ChurnCountdown.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@
CODE_SIGN_ENTITLEMENTS = ChurnCountdown/ChurnCountdown.entitlements;
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_ASSET_PATHS = "\"ChurnCountdown/Preview Content\"";
DEVELOPMENT_TEAM = "";
ENABLE_PREVIEWS = YES;
Expand All @@ -295,7 +295,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 1.0;
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = org.thorchain.ChurnCountdown;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -312,7 +312,7 @@
CODE_SIGN_ENTITLEMENTS = ChurnCountdown/ChurnCountdown.entitlements;
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1;
CURRENT_PROJECT_VERSION = 2;
DEVELOPMENT_ASSET_PATHS = "\"ChurnCountdown/Preview Content\"";
DEVELOPMENT_TEAM = "";
ENABLE_PREVIEWS = YES;
Expand All @@ -323,7 +323,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MARKETING_VERSION = 1.0;
MARKETING_VERSION = 1.1;
PRODUCT_BUNDLE_IDENTIFIER = org.thorchain.ChurnCountdown;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion ChurnCountdown/SharedModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ final class Model : ObservableObject {
if let data = data,
let json = String(data: data, encoding: .utf8),
let dict = json.convertToDictionary(),
let churnInterval = dict["mimir//CHURNINTERVAL"] as? Int {
let churnInterval = dict["CHURNINTERVAL"] as? Int {

DispatchQueue.main.async {
self.churnInterval = churnInterval
Expand Down

0 comments on commit 7fd8410

Please sign in to comment.