Skip to content

Commit

Permalink
Merge branch 'release/v4.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
adocyn committed Mar 1, 2023
2 parents 6f80f65 + aeaddfe commit 1680d58
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
16 changes: 8 additions & 8 deletions TwoFAS/TwoFAS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -8312,7 +8312,7 @@
"@executable_path/Frameworks",
);
MACH_O_TYPE = mh_execute;
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.0.5;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
OTHER_LDFLAGS = (
"$(OTHER_LDFLAGS)",
Expand Down Expand Up @@ -8353,7 +8353,7 @@
"@executable_path/Frameworks",
);
MACH_O_TYPE = mh_execute;
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.0.5;
OTHER_LDFLAGS = (
"$(OTHER_LDFLAGS)",
"-ObjC",
Expand Down Expand Up @@ -8627,7 +8627,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.0.5;
PRODUCT_BUNDLE_IDENTIFIER = com.twofas.org.TwoFASAuth;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -8655,7 +8655,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.0.5;
PRODUCT_BUNDLE_IDENTIFIER = com.twofas.org.TwoFASAuth;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -8958,7 +8958,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.0.5;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.twofas.org.TwoFASWidget;
Expand Down Expand Up @@ -8988,7 +8988,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.0.5;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.twofas.org.TwoFASWidget;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -9015,7 +9015,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.0.5;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.twofas.org.TwoFASServiceIntent;
Expand Down Expand Up @@ -9043,7 +9043,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.0.4;
MARKETING_VERSION = 4.0.5;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = com.twofas.org.TwoFASServiceIntent;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,9 @@ private extension TokensModuleInteractor {
title: category.section?.title,
sectionID: category.section?.sectionID,
sectionData: category.section,
isCollapsed: category.section?.isCollapsed ?? sectionInteractor.isSectionZeroCollapsed,
isCollapsed: category.section?.isCollapsed ?? (
sectionInteractor.isSectionZeroCollapsed && !isMainOnlyCategory
),
elementCount: gridCells.count,
isSearching: isSearching,
position: sectionPosition(for: startIndex, currentIndex: currentIndex, totalIndex: totalIndex)
Expand Down

0 comments on commit 1680d58

Please sign in to comment.