diff --git a/sources/VT100Screen.m b/sources/VT100Screen.m index 03f3d615eb..8b86ed2b47 100644 --- a/sources/VT100Screen.m +++ b/sources/VT100Screen.m @@ -3995,10 +3995,10 @@ - (void)terminalSetShellIntegrationVersion:(NSString *)version { } NSDictionary *lastVersionByShell = - @{ @"tcsh": @2, - @"bash": @5, - @"zsh": @5, - @"fish": @5 }; + @{ @"tcsh": @3, + @"bash": @11, + @"zsh": @6, + @"fish": @6 }; NSInteger latestKnownVersion = [lastVersionByShell[shell ?: @""] integerValue]; if (!shell || versionNumber < latestKnownVersion) { [delegate_ screenSuggestShellIntegrationUpgrade];