{"id":6970,"date":"2021-08-31T10:01:50","date_gmt":"2021-08-31T17:01:50","guid":{"rendered":"https:\/\/devblogs.microsoft.com\/commandline\/?p=6970"},"modified":"2021-10-05T13:08:31","modified_gmt":"2021-10-05T20:08:31","slug":"windows-terminal-preview-1-11-release","status":"publish","type":"post","link":"https:\/\/devblogs.microsoft.com\/commandline\/windows-terminal-preview-1-11-release\/","title":{"rendered":"Windows Terminal Preview 1.11 Release"},"content":{"rendered":"<p>Happy Windows Terminal release day! This release brings <a href=\"https:\/\/aka.ms\/terminal-preview\" rel=\"noopener\" target=\"_blank\">Windows Terminal Preview<\/a> up to version 1.11 and <a href=\"https:\/\/aka.ms\/terminal\" rel=\"noopener\" target=\"_blank\">Windows Terminal<\/a> up to 1.10. The Windows Terminal release will roll out through the Windows Insider Program before going to retail Windows versions in order to catch any outstanding bugs that may appear. All of the features from <a href=\"https:\/\/devblogs.microsoft.com\/commandline\/windows-terminal-preview-1-10-release\/\" rel=\"noopener\" target=\"_blank\">our previous release<\/a> are now in Windows Terminal, except for the default terminal setting, the editable actions page, and the Defaults page of the settings UI. Both builds of terminal can be installed from the Microsoft Store or from the <a href=\"https:\/\/github.com\/microsoft\/terminal\/releases\" rel=\"noopener\" target=\"_blank\">GitHub releases page<\/a>. Let&#8217;s dive into what&#8217;s new!<\/p>\n<h2>Acrylic title bar<\/h2>\n<p>A new setting has been added where you can make your title bar acrylic (Thanks <a href=\"https:\/\/github.com\/matthew4850\" rel=\"noopener\" target=\"_blank\">@matthew4850<\/a>!). This setting can be found on the Appearance page of the settings UI or can be set in your settings.json file using <code>\"useAcrylicInTabRow\": true<\/code> as a global setting.<\/p>\n<p>\ud83d\udc49 <strong>Note:<\/strong> You will have to restart your terminal in order for this to take effect.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/acrylic-tab-row.png\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/acrylic-tab-row.png\" alt=\"Image acrylic tab row\" width=\"1172\" height=\"637\" class=\"alignnone size-full wp-image-6971\" srcset=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/acrylic-tab-row.png 1172w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/acrylic-tab-row-300x163.png 300w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/acrylic-tab-row-1024x557.png 1024w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/acrylic-tab-row-768x417.png 768w\" sizes=\"(max-width: 1172px) 100vw, 1172px\" \/><\/a><\/p>\n<h2>Minimize to system tray<\/h2>\n<p>You can now optionally minimize your terminal to the system tray. Two new global boolean settings were added for this functionality: <code>minimizeToNotificationArea<\/code> and <code>alwaysShowNotificationIcon<\/code>. When <code>minimizeToNotificationArea<\/code> is set to <code>true<\/code>, minimizing a window will send it to the notification area and hide it from the taskbar. When <code>alwaysShowNotificationIcon<\/code> is set to <code>true<\/code>, the tray icon is always shown, regardless of the <code>minimizeToNotificationArea<\/code> setting.<\/p>\n<p>\ud83d\udc49 <strong>Note:<\/strong> These settings are not yet in the settings UI and can only be set in the settings.json file.<\/p>\n<h2>Intense text style<\/h2>\n<p>You can now choose how you want intense text to appear in your terminal by using the <code>intenseTextStyle<\/code> profile setting. You can either set your style to be bold, bright, both bold and bright, or have no additional styling added to it. This setting can also be found in the settings UI on the Profile Appearance page.<\/p>\n<pre><code>\/\/ Renders intense text as both bold and bright\n\"intenseTextStyle\": \"all\"\n\n\/\/ Renders intense text as bold\n\"intenseTextStyle\": \"bold\"\n\n\/\/ Renders intense text as bright\n\"intenseTextStyle\": \"bright\"\n\n\/\/ Renders intense text as normal\n\"intenseTextStyle\": \"none\"\n<\/code><\/pre>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Intense-text-formatting.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Intense-text-formatting.gif\" alt=\"Image Intense text formatting\" width=\"1280\" height=\"720\" class=\"alignnone size-full wp-image-6982\" \/><\/a><\/p>\n<h2>Font features and axes<\/h2>\n<p>The <code>font<\/code> object now accepts OpenType <code>features<\/code> and <code>axes<\/code> in the settings.json file. For more detailed information on OpenType, check out the <a href=\"https:\/\/docs.microsoft.com\/typography\/opentype\/spec\/featurelist\" rel=\"noopener\" target=\"_blank\">docs for features<\/a> as well as the <a href=\"https:\/\/docs.microsoft.com\/typography\/opentype\/spec\/dvaraxisreg\" rel=\"noopener\" target=\"_blank\">docs for axes<\/a>.<\/p>\n<p>For example:<\/p>\n<pre><code>\/\/ Enables ss01 and disables ligatures\n\"font\": {\n    \"face\": \"Cascadia Code\",\n    \"features\": {\n        \"ss01\": 1,\n        \"calt\": 0\n    }\n}\n\n\/\/ Sets the font to italic\n\"font\": {\n    \"face\": \"Cascadia Code\",\n    \"axes\": {\n        \"ital\": 1\n    }\n}\n<\/code><\/pre>\n<h2>Changes to default terminal behavior<\/h2>\n<p>When launching the terminal via the default terminal setting, the terminal will now use no profile rather than your default profile. The settings that will apply to the terminal when invoked as the default terminal will be dictated by the contents of the &#8220;Defaults&#8221; section, or <code>profiles.defaults<\/code>, in settings. Additionally, launching default terminal will now respect your <code>windowingBehavior<\/code> setting.<\/p>\n<p>\u2757 <strong>Breaking change notice:<\/strong> This behavior also applies to the <code>wt<\/code> action and command line invocations without an explicit profile (i.e. <code>wt -- cmd.exe<\/code>).<\/p>\n<h2>Drag and drop path in &#8216;+&#8217; button<\/h2>\n<p>You can now drag and drop directories and files onto the &#8216;+&#8217; button, which will then open a new tab, pane, or window using the given starting path (Thanks <a href=\"https:\/\/github.com\/Daniel599\" rel=\"noopener\" target=\"_blank\">@Daniel599<\/a>!). When holding <kbd>Alt<\/kbd>, a new pane will open. When holding <kbd>Shift<\/kbd>, a new window will open. Without any key modifiers, a new tab will open.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Drag-and-drop.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Drag-and-drop.gif\" alt=\"Image Drag and drop\" width=\"1920\" height=\"1080\" class=\"alignnone size-full wp-image-6973\" \/><\/a><\/p>\n<h2>Pane updates<\/h2>\n<p>The pane functionality has seen a lot of improvements with this release. A huge thank you goes out to Schuyler Rosefield (<a href=\"https:\/\/github.com\/rosefield\" rel=\"noopener\" target=\"_blank\">@Rosefield<\/a>) who made many of our pane contributions! Here are some of the highlights:<\/p>\n<h3>Move pane to tab<\/h3>\n<p>Using the <code>movePane<\/code> action, you can now move a pane to a new or existing tab (Thanks <a href=\"https:\/\/github.com\/rosefield\" rel=\"noopener\" target=\"_blank\">@Rosefield<\/a>!). You can also use the command palette to move your panes.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Move-pane.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Move-pane.gif\" alt=\"Image Move pane\" width=\"1280\" height=\"720\" class=\"alignnone size-full wp-image-6975\" \/><\/a><\/p>\n<h3>Swap panes within a tab<\/h3>\n<p>Using the <code>swapPane<\/code> action, you can now swap the places of two panes within a tab (Thanks <a href=\"https:\/\/github.com\/Rosefield\" rel=\"noopener\" target=\"_blank\">@Rosefield<\/a>!). You can also use the command palette to swap your panes.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Swap-pane.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Swap-pane.gif\" alt=\"Image Swap pane\" width=\"1280\" height=\"720\" class=\"alignnone size-full wp-image-6976\" \/><\/a><\/p>\n<h3>Split tab in context menu<\/h3>\n<p>You can now right click on a tab and select Split Tab to split the active profile into a new pane.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Split-tab.gif\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/Split-tab.gif\" alt=\"Image Split tab\" width=\"1204\" height=\"704\" class=\"alignnone size-full wp-image-6977\" \/><\/a><\/p>\n<h2>Settings UI updates<\/h2>\n<p>We are always trying to improve the settings UI experience and we have some updates in this release:<\/p>\n<h3>Unfocused appearance<\/h3>\n<p>The appearance settings that apply to your profile when unfocused are now in the settings UI.<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/unfocused-appearance.png\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/unfocused-appearance.png\" alt=\"Image unfocused appearance\" width=\"1064\" height=\"624\" class=\"alignnone size-full wp-image-6978\" srcset=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/unfocused-appearance.png 1064w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/unfocused-appearance-300x176.png 300w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/unfocused-appearance-1024x601.png 1024w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/08\/unfocused-appearance-768x450.png 768w\" sizes=\"(max-width: 1064px) 100vw, 1064px\" \/><\/a><\/p>\n<h3>Key chord editor for actions<\/h3>\n<p>When adding keys to your actions, you now only have to type the key chord, rather than spelling out all of the keys (i.e. c-t-r-l).<\/p>\n<h2>Miscellaneous improvements<\/h2>\n<p>\ud83d\udee0\ufe0f Dynamically generated profiles can now be deleted (Finally! Sorry for the long wait on this one. \ud83d\ude0a).<\/p>\n<p>\ud83d\udee0\ufe0f On newer versions of Windows, <code>startingDirectory<\/code> can now accept Linux paths when launching a WSL profile.<\/p>\n<p>\ud83d\udee0 Tabs created with <code>wt<\/code> and default terminal instances will now have the launched command line as their title, instead of the default profile name.<\/p>\n<p>\ud83d\udee0\ufe0f You can now navigate through panes in creation order using <code>nextPane<\/code> and <code>previousPane<\/code> (Thanks <a href=\"https:\/\/github.com\/rosefield\" rel=\"noopener\" target=\"_blank\">@Rosefield<\/a>!).<\/p>\n<p>\ud83d\udee0\ufe0f Navigating through panes with the <code>move-focus<\/code> action works much better and now also works correctly on startup.<\/p>\n<p>\ud83d\udee0\ufe0f The <code>toggleSplitOrientation<\/code> action has been added and it switches a pair of panes from a vertical to a horizontal layout (Thanks <a href=\"https:\/\/github.com\/rosefield\" rel=\"noopener\" target=\"_blank\">@Rosefield<\/a>!).<\/p>\n<p>\ud83d\udee0\ufe0f The taskbar will now show the progress state of all of the panes\/tabs combined, regardless of which is in focus. This is helpful if you&#8217;re running a build in an unfocused tab, for example.<\/p>\n<p>\ud83d\udee0\ufe0f You can now use <code>sc()<\/code> and <code>vk()<\/code> for binding keys, which allows many more keys to be bindable.<\/p>\n<h2>Bug fixes<\/h2>\n<p>\ud83d\udc1b <kbd>Alt<\/kbd>+<kbd>Space<\/kbd> can now be unbound from the system menu so that you can send ESC Space to the Terminal (Thanks <a href=\"https:\/\/github.com\/FWest98\" rel=\"noopener\" target=\"_blank\">@FWest98<\/a>!).<\/p>\n<p>\ud83d\udc1b Snapping the &#8220;quake&#8221; window to another display will now properly update its size.<\/p>\n<p>\ud83d\udc1b The <code>nextTab<\/code> and <code>prevTab<\/code> actions now work correctly when used through <code>wt<\/code> or the command palette (Thanks <a href=\"https:\/\/github.com\/Don-Vito\" rel=\"noopener\" target=\"_blank\">@Don-Vito<\/a>!).<\/p>\n<p>\ud83d\udc1b <code>initialPosition<\/code> now takes into account window borders.<\/p>\n<p>\ud83d\udc1b Generating WSL distro profiles should be much more stable now.<\/p>\n<p>\ud83d\udc1b The default profile dropdown menu will no longer <a href=\"https:\/\/www.reddit.com\/r\/Windows11\/comments\/pd6t9g\/i_can_fly\/\" rel=\"noopener\" target=\"_blank\">take off into space<\/a> when scrolling.<\/p>\n<h2>Top contributors<\/h2>\n<p>We had a ton of fantastic contributors for this release. Here are those who have especially made an impact:<\/p>\n<h3>Contributors who opened the most non-duplicate issues<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/Rosefield\" rel=\"noopener\" target=\"_blank\">Rosefield<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/vefatica\" rel=\"noopener\" target=\"_blank\">vefatica<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/marioegghead2\" rel=\"noopener\" target=\"_blank\">marioegghead2<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/hensz\" rel=\"noopener\" target=\"_blank\">hensz<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/codeofdusk\" rel=\"noopener\" target=\"_blank\">codeofdusk<\/a><\/p>\n<h3>Contributors who created the most merged pull requests<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/Rosefield\" rel=\"noopener\" target=\"_blank\">Rosefield<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/Don-Vito\" rel=\"noopener\" target=\"_blank\">Don-Vito<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/skyline75489\" rel=\"noopener\" target=\"_blank\">skyline75489<\/a><\/p>\n<h3>Contributors who provided the most comments on pull requests<\/h3>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/Rosefield\" rel=\"noopener\" target=\"_blank\">Rosefield<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/Don-Vito\" rel=\"noopener\" target=\"_blank\">Don-Vito<\/a><\/p>\n<p>\ud83c\udfc6 <a href=\"https:\/\/github.com\/skyline75489\" rel=\"noopener\" target=\"_blank\">skyline75489<\/a><\/p>\n<h2>Cheers!<\/h2>\n<p>If you want to learn more about Windows Terminal features, you can check out our <a href=\"https:\/\/aka.ms\/terminal-docs\" rel=\"noopener\" target=\"_blank\">docs site<\/a>. If you have any questions, feel free to reach out to Kayla (<a href=\"https:\/\/twitter.com\/cinnamon_msft\" rel=\"noopener\" target=\"_blank\">@cinnamon_msft<\/a>) on Twitter. As always, bug reports and feature requests can be filed on our <a href=\"https:\/\/github.com\/microsoft\/terminal\" rel=\"noopener\" target=\"_blank\">GitHub<\/a>. We hope you enjoy this latest release!<\/p>\n<p><a href=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/04\/signatures.png\"><img decoding=\"async\" src=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/04\/signatures.png\" alt=\"Image signatures\" width=\"2408\" height=\"259\" class=\"alignnone size-full wp-image-6579\" srcset=\"https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/04\/signatures.png 2408w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/04\/signatures-300x32.png 300w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/04\/signatures-1024x110.png 1024w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/04\/signatures-768x83.png 768w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/04\/signatures-1536x165.png 1536w, https:\/\/devblogs.microsoft.com\/commandline\/wp-content\/uploads\/sites\/33\/2021\/04\/signatures-2048x220.png 2048w\" sizes=\"(max-width: 2408px) 100vw, 2408px\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Windows Terminal Preview 1.11 is here! Come check out what&#8217;s new in our open source command line tool.<\/p>\n","protected":false},"author":3539,"featured_media":6971,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[10,1,2,1535,5,6,1577,8,9,782],"tags":[22,27,29,31,42,43,1548,48,59,69,70,1576,1579,72],"class_list":["post-6970","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cmd","category-commandline","category-command-line","category-open-source","category-windows-10","category-windows-console","category-windows-package-manager","category-windows-store","category-bash-on-ubuntu-on-windows","category-windows-terminal","tag-bash","tag-cmd","tag-command-line","tag-console","tag-linux","tag-linuxtools","tag-open-source","tag-powershell","tag-terminal","tag-windows","tag-windows-10","tag-windows-package-manager","tag-winget","tag-wsl"],"acf":[],"blog_post_summary":"<p>Windows Terminal Preview 1.11 is here! Come check out what&#8217;s new in our open source command line tool.<\/p>\n","_links":{"self":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts\/6970","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/users\/3539"}],"replies":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/comments?post=6970"}],"version-history":[{"count":0,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/posts\/6970\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/media\/6971"}],"wp:attachment":[{"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/media?parent=6970"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/categories?post=6970"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devblogs.microsoft.com\/commandline\/wp-json\/wp\/v2\/tags?post=6970"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}