Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 135 additions & 0 deletions Arkavo.xcworkspace/xcshareddata/swiftpm/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Arkavo/Arkavo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,7 @@ E5D86638127846B8989BFA94 /* ConnectedAccountsView.swift in Sources */ = {isa = P
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 6.2;
SWIFT_VERSION = 6.3;
TARGETED_DEVICE_FAMILY = 1;
XROS_DEPLOYMENT_TARGET = 2.0;
};
Expand Down Expand Up @@ -1074,7 +1074,7 @@ E5D86638127846B8989BFA94 /* ConnectedAccountsView.swift in Sources */ = {isa = P
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 6.2;
SWIFT_VERSION = 6.3;
TARGETED_DEVICE_FAMILY = 1;
XROS_DEPLOYMENT_TARGET = 2.0;
};
Expand All @@ -1096,7 +1096,7 @@ E5D86638127846B8989BFA94 /* ConnectedAccountsView.swift in Sources */ = {isa = P
SDKROOT = auto;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 6.2;
SWIFT_VERSION = 6.3;
TARGETED_DEVICE_FAMILY = "1,2,7";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Arkavo.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Arkavo";
XROS_DEPLOYMENT_TARGET = 2.0;
Expand All @@ -1119,7 +1119,7 @@ E5D86638127846B8989BFA94 /* ConnectedAccountsView.swift in Sources */ = {isa = P
SDKROOT = auto;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 6.2;
SWIFT_VERSION = 6.3;
TARGETED_DEVICE_FAMILY = "1,2,7";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Arkavo.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Arkavo";
XROS_DEPLOYMENT_TARGET = 2.0;
Expand All @@ -1141,7 +1141,7 @@ E5D86638127846B8989BFA94 /* ConnectedAccountsView.swift in Sources */ = {isa = P
SDKROOT = auto;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 6.2;
SWIFT_VERSION = 6.3;
TARGETED_DEVICE_FAMILY = "1,2,7";
TEST_TARGET_NAME = Arkavo;
XROS_DEPLOYMENT_TARGET = 2.0;
Expand All @@ -1163,7 +1163,7 @@ E5D86638127846B8989BFA94 /* ConnectedAccountsView.swift in Sources */ = {isa = P
SDKROOT = auto;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 6.2;
SWIFT_VERSION = 6.3;
TARGETED_DEVICE_FAMILY = "1,2,7";
TEST_TARGET_NAME = Arkavo;
XROS_DEPLOYMENT_TARGET = 2.0;
Expand Down
30 changes: 16 additions & 14 deletions Arkavo/Arkavo/RegistrationView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"Encryption trusted by military,\nnow available to you.",
]

var body: some View {

Check notice on line 81 in Arkavo/Arkavo/RegistrationView.swift

View check run for this annotation

Xcode Cloud / Arkavo | Feature | Analyze - iOS (Arkavo)

Arkavo/Arkavo/RegistrationView.swift#L81

Getter for property 'body' took 244ms to type-check (limit: 200ms)

Check notice on line 81 in Arkavo/Arkavo/RegistrationView.swift

View check run for this annotation

Xcode Cloud / Arkavo | Feature | Build - iOS

Arkavo/Arkavo/RegistrationView.swift#L81

Getter for property 'body' took 268ms to type-check (limit: 200ms)
NavigationStack {
VStack(spacing: 0) {
// Custom title bar
Expand Down Expand Up @@ -218,7 +218,7 @@
private func startWelcomeAnimation() {
Timer.scheduledTimer(withTimeInterval: 3.0, repeats: true) { _ in
withAnimation {
currentWelcomeIndex = (currentWelcomeIndex + 1) % welcomeMessages.count

Check notice on line 221 in Arkavo/Arkavo/RegistrationView.swift

View check run for this annotation

Xcode Cloud / Arkavo | Feature | Analyze - iOS (Arkavo)

Arkavo/Arkavo/RegistrationView.swift#L221

Main actor-isolated property 'currentWelcomeIndex' can not be mutated from a nonisolated context

Check notice on line 221 in Arkavo/Arkavo/RegistrationView.swift

View check run for this annotation

Xcode Cloud / Arkavo | Feature | Analyze - iOS (Arkavo)

Arkavo/Arkavo/RegistrationView.swift#L221

Main actor-isolated property 'currentWelcomeIndex' can not be referenced from a nonisolated context

Check notice on line 221 in Arkavo/Arkavo/RegistrationView.swift

View check run for this annotation

Xcode Cloud / Arkavo | Feature | Build - iOS

Arkavo/Arkavo/RegistrationView.swift#L221

Main actor-isolated property 'currentWelcomeIndex' can not be referenced from a nonisolated context

Check notice on line 221 in Arkavo/Arkavo/RegistrationView.swift

View check run for this annotation

Xcode Cloud / Arkavo | Feature | Build - iOS

Arkavo/Arkavo/RegistrationView.swift#L221

Main actor-isolated property 'currentWelcomeIndex' can not be mutated from a nonisolated context
}
}
}
Expand Down Expand Up @@ -279,25 +279,27 @@
// generatedScreenNames = []
case .generateScreenName:
if skipPasskeysFlag {
let newProfile = Profile(
name: selectedScreenName,
interests: Array(selectedInterests).joined(separator: ","),
hasHighEncryption: true,
hasHighIdentityAssurance: true,
)
Task { await onComplete(newProfile) }
let name = selectedScreenName
let interests = Array(selectedInterests).joined(separator: ",")
let complete = onComplete
Task {
let profile = Profile(
name: name, interests: interests,
hasHighEncryption: true, hasHighIdentityAssurance: true)
await complete(profile)
}
} else {
currentStep = .enablePasskeys
}
case .enablePasskeys:
let newProfile = Profile(
name: selectedScreenName,
interests: Array(selectedInterests).joined(separator: ","),
hasHighEncryption: true,
hasHighIdentityAssurance: true,
)
let name = selectedScreenName
let interests = Array(selectedInterests).joined(separator: ",")
let complete = onComplete
Task {
await onComplete(newProfile)
let profile = Profile(
name: name, interests: interests,
hasHighEncryption: true, hasHighIdentityAssurance: true)
await complete(profile)
}
}
}
Expand Down Expand Up @@ -495,7 +497,7 @@
.padding()
}

private var eulaView: some View {

Check notice on line 500 in Arkavo/Arkavo/RegistrationView.swift

View check run for this annotation

Xcode Cloud / Arkavo | Feature | Analyze - iOS (Arkavo)

Arkavo/Arkavo/RegistrationView.swift#L500

Getter for property 'eulaView' took 460ms to type-check (limit: 200ms)

Check notice on line 500 in Arkavo/Arkavo/RegistrationView.swift

View check run for this annotation

Xcode Cloud / Arkavo | Feature | Build - iOS

Arkavo/Arkavo/RegistrationView.swift#L500

Getter for property 'eulaView' took 542ms to type-check (limit: 200ms)
VStack(spacing: 0) {
// Fixed Header (HIG-compliant)
VStack(alignment: .leading, spacing: 8) {
Expand Down
16 changes: 8 additions & 8 deletions ArkavoCreator/ArkavoCreator.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@
SWIFT_APPROACHABLE_CONCURRENCY = NO;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_STRICT_CONCURRENCY = complete;
SWIFT_VERSION = 6.2;
SWIFT_VERSION = 6.3;
};
name = Debug;
};
Expand Down Expand Up @@ -426,7 +426,7 @@
SWIFT_APPROACHABLE_CONCURRENCY = NO;
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_STRICT_CONCURRENCY = complete;
SWIFT_VERSION = 6.2;
SWIFT_VERSION = 6.3;
};
name = Release;
};
Expand Down Expand Up @@ -475,7 +475,7 @@
PROVISIONING_PROFILE_SPECIFIER = "";
REGISTER_APP_GROUPS = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 6.0;
SWIFT_VERSION = 6.3;
};
name = Debug;
};
Expand Down Expand Up @@ -524,7 +524,7 @@
PROVISIONING_PROFILE_SPECIFIER = "";
REGISTER_APP_GROUPS = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 6.0;
SWIFT_VERSION = 6.3;
};
name = Release;
};
Expand All @@ -541,7 +541,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.arkavo.ArkavoCreatorTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 5.0;
SWIFT_VERSION = 6.3;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ArkavoCreator.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ArkavoCreator";
};
name = Debug;
Expand All @@ -559,7 +559,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.arkavo.ArkavoCreatorTests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 5.0;
SWIFT_VERSION = 6.3;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ArkavoCreator.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ArkavoCreator";
};
name = Release;
Expand All @@ -575,7 +575,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.arkavo.ArkavoCreatorUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 5.0;
SWIFT_VERSION = 6.3;
TEST_TARGET_NAME = ArkavoCreator;
};
name = Debug;
Expand All @@ -591,7 +591,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.arkavo.ArkavoCreatorUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = NO;
SWIFT_VERSION = 5.0;
SWIFT_VERSION = 6.3;
TEST_TARGET_NAME = ArkavoCreator;
};
name = Release;
Expand Down
Loading