You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/Atlantis.swift
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -77,14 +77,16 @@ public final class Atlantis: NSObject {
77
77
/// Build version of Atlantis
78
78
/// It's essential for Proxyman to known if it's compatible with this version
79
79
/// Instead of receving the number from the info.plist, we should hardcode here because the info file doesn't exist in SPM
80
-
publicstaticletbuildVersion:String="1.22.0"
80
+
publicstaticletbuildVersion:String="1.23.0"
81
81
82
82
/// Start Swizzle all network functions and monitoring the traffic
83
83
/// It also starts looking Bonjour network from Proxyman app.
84
84
/// If hostName is nil, Atlantis will find all Proxyman apps in the network. It's useful if we have only one machine for personal usage.
85
85
/// If hostName is not nil, Atlantis will try to connect to particular mac machine. It's useful if you have multiple Proxyman.
86
86
/// - Parameter hostName: Host name of Mac machine. You can find your current Host Name in Proxyman -> Certificate -> Install on iOS -> By Atlantis -> Show Start Atlantis
87
-
@objcpublicclassfunc start(hostName:String?=nil){
87
+
/// - Parameter shouldCaptureWebSocketTraffic: Determine if Atlantis should perform the Method Swizzling on WS/WSS connection. Default is true.
0 commit comments