mirror of
				https://github.com/eugeny/tabby
				synced 2025-10-30 05:57:06 +00:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			v1.0.227
			...
			5060344c69
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 5060344c69 | ||
|   | d1196a0e2a | 
| @@ -30,7 +30,7 @@ | ||||
|     "native-process-working-directory": "^1.0.2", | ||||
|     "npm": "6", | ||||
|     "rxjs": "^7.5.7", | ||||
|     "russh": "0.1.26", | ||||
|     "russh": "0.1.27", | ||||
|     "source-map-support": "^0.5.20", | ||||
|     "v8-compile-cache": "^2.3.0", | ||||
|     "yargs": "^17.7.2" | ||||
|   | ||||
| @@ -3752,10 +3752,10 @@ run-queue@^1.0.0, run-queue@^1.0.3: | ||||
|   dependencies: | ||||
|     aproba "^1.1.1" | ||||
|  | ||||
| russh@0.1.26: | ||||
|   version "0.1.26" | ||||
|   resolved "https://registry.yarnpkg.com/russh/-/russh-0.1.26.tgz#90b266ed629b0c280b56890cb6baee8b7da750a8" | ||||
|   integrity sha512-teF607qkjDXcPNjBw9ZVGf8vIezUBRfiwScXtsdHLrCeEpUGbcMMmFsE33C9SI3WnRSUZQuhbyhca2QLc/uHGA== | ||||
| russh@0.1.27: | ||||
|   version "0.1.27" | ||||
|   resolved "https://registry.yarnpkg.com/russh/-/russh-0.1.27.tgz#61e04a46bbdecbd23e7d89c42f35659fcc7b7108" | ||||
|   integrity sha512-FMR+iw1203zJcCRFdOBec9O5+Ae8IdFkNb7yyPmG3436dLWr0ZOnCPE94y1jdJnrY13mMi7UGkccReuHUHNCXw== | ||||
|   dependencies: | ||||
|     "@napi-rs/cli" "^2.18.3" | ||||
|  | ||||
|   | ||||
| @@ -20,7 +20,7 @@ export class SSHProfilesService extends QuickConnectProfileProvider<SSHProfile> | ||||
|             auth: null, | ||||
|             password: null, | ||||
|             privateKeys: [], | ||||
|             keepaliveInterval: null, | ||||
|             keepaliveInterval: 5000, | ||||
|             keepaliveCountMax: 10, | ||||
|             readyTimeout: null, | ||||
|             x11: false, | ||||
|   | ||||
| @@ -317,7 +317,7 @@ export class SSHSession { | ||||
|                     key: this.profile.options.algorithms?.[SSHAlgorithmType.HOSTKEY]?.filter(x => supportedAlgorithms[SSHAlgorithmType.HOSTKEY].includes(x)), | ||||
|                     compression: this.profile.options.algorithms?.[SSHAlgorithmType.COMPRESSION]?.filter(x => supportedAlgorithms[SSHAlgorithmType.COMPRESSION].includes(x)), | ||||
|                 }, | ||||
|                 keepaliveIntervalSeconds: this.profile.options.keepaliveInterval ? Math.round(this.profile.options.keepaliveInterval / 1000) : undefined, | ||||
|                 keepaliveIntervalSeconds: Math.round((this.profile.options.keepaliveInterval ?? 15000) / 1000), | ||||
|                 keepaliveCountMax: this.profile.options.keepaliveCountMax, | ||||
|                 connectionTimeoutSeconds: this.profile.options.readyTimeout ? Math.round(this.profile.options.readyTimeout / 1000) : undefined, | ||||
|             }, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user