Skip to content

Commit 85cd3d0

Browse files
committed
v4.0.0 Release
1 parent 5ae73b3 commit 85cd3d0

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

Uplift.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@
12261226
CODE_SIGN_ENTITLEMENTS = "Uplift/Uplift-Debug.entitlements";
12271227
CODE_SIGN_IDENTITY = "Apple Development";
12281228
CODE_SIGN_STYLE = Automatic;
1229-
CURRENT_PROJECT_VERSION = 56;
1229+
CURRENT_PROJECT_VERSION = 57;
12301230
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
12311231
DEVELOPMENT_TEAM = ZGMCXU7X3U;
12321232
ENABLE_PREVIEWS = YES;
@@ -1248,7 +1248,7 @@
12481248
"$(inherited)",
12491249
"@executable_path/Frameworks",
12501250
);
1251-
MARKETING_VERSION = 3.2.3;
1251+
MARKETING_VERSION = 4.0.0;
12521252
OTHER_LDFLAGS = "-ObjC";
12531253
PRODUCT_BUNDLE_IDENTIFIER = com.cornellappdev.uplift.ios;
12541254
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -1272,7 +1272,7 @@
12721272
CODE_SIGN_ENTITLEMENTS = "Uplift/Uplift-Release.entitlements";
12731273
CODE_SIGN_IDENTITY = "Apple Development";
12741274
CODE_SIGN_STYLE = Automatic;
1275-
CURRENT_PROJECT_VERSION = 56;
1275+
CURRENT_PROJECT_VERSION = 57;
12761276
DEVELOPMENT_TEAM = ZGMCXU7X3U;
12771277
ENABLE_PREVIEWS = YES;
12781278
GENERATE_INFOPLIST_FILE = YES;
@@ -1293,7 +1293,7 @@
12931293
"$(inherited)",
12941294
"@executable_path/Frameworks",
12951295
);
1296-
MARKETING_VERSION = 3.2.3;
1296+
MARKETING_VERSION = 4.0.0;
12971297
OTHER_LDFLAGS = "-ObjC";
12981298
PRODUCT_BUNDLE_IDENTIFIER = com.cornellappdev.uplift.ios;
12991299
PRODUCT_NAME = "$(TARGET_NAME)";

Uplift/Utils/Custom/ModalModifier.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ struct ModalModifier<ModalContent: View>: ViewModifier {
1717
content
1818
.disabled(showModal)
1919
.blur(radius: showModal ? 2 : 0)
20-
.animation(.easeInOut, value: showModal)
2120

2221
if showModal {
2322
ZStack {
@@ -41,6 +40,7 @@ struct ModalModifier<ModalContent: View>: ViewModifier {
4140
.transition(.opacity)
4241
}
4342
}
43+
.animation(.easeInOut, value: showModal)
4444
}
4545
}
4646

0 commit comments

Comments
 (0)