File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 3
3
Bugfixes:
4
4
* Fix loading example configs from presets directory (#1672 )
5
5
* Regression of v2.40.2
6
+ * Mark kitty image protocol support for warp terminal on macOS too (Logo)
6
7
7
8
# 2.40.2
8
9
Original file line number Diff line number Diff line change @@ -627,7 +627,12 @@ void ffLogoPrint(void)
627
627
ffStrbufIgnCaseEqualS (& terminal -> processName , "wezterm" ) ||
628
628
ffStrbufIgnCaseEqualS (& terminal -> processName , "wayst" ) ||
629
629
ffStrbufIgnCaseEqualS (& terminal -> processName , "ghostty" ) ||
630
- ffStrbufIgnCaseEqualS (& terminal -> processName , "warp" );
630
+ #ifdef __APPLE__
631
+ ffStrbufIgnCaseEqualS (& terminal -> processName , "WarpTerminal" ) ||
632
+ #else
633
+ ffStrbufIgnCaseEqualS (& terminal -> processName , "warp" ) ||
634
+ #endif
635
+ false;
631
636
632
637
//Try to load the logo as an image. If it succeeds, print it and return.
633
638
if (logoPrintImageIfExists (supportsKitty ? FF_LOGO_TYPE_IMAGE_KITTY : FF_LOGO_TYPE_IMAGE_CHAFA , false))
You can’t perform that action at this time.
0 commit comments