From 52629d7654de1235985d6c1375e62a31b2e62681 Mon Sep 17 00:00:00 2001 From: neon443 <69979447+neon443@users.noreply.github.com> Date: Wed, 25 Jun 2025 17:19:33 +0100 Subject: [PATCH] bump version --- Config.xcconfig | 2 +- ShhShell/SSH/SSHHandler.swift | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Config.xcconfig b/Config.xcconfig index b9ec581..80553f6 100644 --- a/Config.xcconfig +++ b/Config.xcconfig @@ -6,7 +6,7 @@ // VERSION = 1.0 -BUILD = 73 +BUILD = 86 // Configuration settings file format documentation can be found at: // https://developer.apple.com/documentation/xcode/adding-a-build-configuration-file-to-your-project diff --git a/ShhShell/SSH/SSHHandler.swift b/ShhShell/SSH/SSHHandler.swift index 3561022..798ee48 100644 --- a/ShhShell/SSH/SSHHandler.swift +++ b/ShhShell/SSH/SSHHandler.swift @@ -54,7 +54,7 @@ class SSHHandler: @unchecked Sendable, ObservableObject { do { try connect() } catch { - print("error in connect \(error.localizedDescription)") +// print("error in connect \(error.localizedDescription)") return } @@ -248,7 +248,7 @@ class SSHHandler: @unchecked Sendable, ObservableObject { try privInp.write(to: tempKey, options: .completeFileProtection) } catch { print("file writing error") - print(error.localizedDescription) +// print(error.localizedDescription) } let attributes: [FileAttributeKey: Any] = [.posixPermissions: 0o600] @@ -256,7 +256,7 @@ class SSHHandler: @unchecked Sendable, ObservableObject { try fileManager.setAttributes(attributes, ofItemAtPath: tempPubkey.path()) try fileManager.setAttributes(attributes, ofItemAtPath: tempKey.path()) } catch { - logCritical("permission settig failed\(error.localizedDescription)") +// logCritical("permission settig failed\(error.localizedDescription)") } var pubkey: ssh_key?