Skip to content
Merged
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
2 changes: 1 addition & 1 deletion app/xcode/Sources/VCamCamera/CameraExtension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ extension CameraExtension: OSSystemExtensionRequestDelegate {
if let property = properties.first {
continuation.resume(returning: property)
} else {
continuation.resume(throwing: NSError(domain: "", code: 0, userInfo: [NSLocalizedDescriptionKey: "Failed to get the propeties"]))
continuation.resume(throwing: NSError(domain: "", code: 0, userInfo: [NSLocalizedDescriptionKey: "Failed to get the properties"]))
}
}

Expand Down
2 changes: 1 addition & 1 deletion app/xcode/Sources/VCamLocalization/Generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public enum L10n {
public static let enableVSync = LocalizedString(lookupKey: "enableVSync")
/// Entire Display
public static let entireDisplay = LocalizedString(lookupKey: "entireDisplay")
/// No permisison. Please allow screen recording in the Security & Privacy of the System Preferences.
/// No permission. Please allow screen recording in the Security & Privacy of the System Preferences.
public static let errorScreenCapturePermission = LocalizedString(lookupKey: "errorScreenCapturePermission")
/// A new version %@ is available!
public static func existsNewAppVersion(_ p1: Any) -> ArgumentsLocalizedString {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
"window" = "Window";
"videoCaptureDevice" = "Video Capture Device";
"previewCapture" = "Preview the capture";
"errorScreenCapturePermission" = "No permisison. Please allow screen recording in the Security & Privacy of the System Preferences.";
"errorScreenCapturePermission" = "No permission. Please allow screen recording in the Security & Privacy of the System Preferences.";
"refreshScreen" = "Refresh Screen";

// MARK: - Integration
Expand Down
2 changes: 1 addition & 1 deletion app/xcode/Sources/VCamUI/Shortcut/VCamShortcut+View.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public extension VCamShortcut {
public extension View {
@ViewBuilder func keyboardShortcut(_ shortcutKey: VCamShortcut.ShortcutKey?, action: @escaping () -> Void) -> some View {
if let shortcutKey {
// Workround to make shortcut keys work on any button
// Workaround to make shortcut keys work on any button
let hiddenButton = Button("", action: action)
.frame(width: 0, height: 0)
.opacity(0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ public struct VCamShortcutBuilderView: View {
}
.frame(maxWidth: .infinity)
}
.onMove { offsets, desination in
shortcut.configurations.move(fromOffsets: offsets, toOffset: desination)
.onMove { offsets, destination in
shortcut.configurations.move(fromOffsets: offsets, toOffset: destination)
}
.listRowSeparator(.hidden)
}
Expand Down