Guest Kayla Cinnamon Posted October 24, 2021 Posted October 24, 2021 Happy Windows Terminal release day! This release brings Windows Terminal Preview up to version 1.11 and Windows Terminal 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 our previous release 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 GitHub releases page. Let’s dive into what’s new! [HEADING=1]Acrylic title bar[/HEADING] A new setting has been added where you can make your title bar acrylic (Thanks @matthew4850!). This setting can be found on the Appearance page of the settings UI or can be set in your settings.json file using [iCODE]"useAcrylicInTabRow": true[/iCODE] as a global setting. Note: You will have to restart your terminal in order for this to take effect. [HEADING=1]Minimize to system tray[/HEADING] You can now optionally minimize your terminal to the system tray. Two new global boolean settings were added for this functionality: [iCODE]minimizeToNotificationArea[/iCODE] and [iCODE]alwaysShowNotificationIcon[/iCODE]. When [iCODE]minimizeToNotificationArea[/iCODE] is set to [iCODE]true[/iCODE], minimizing a window will send it to the notification area and hide it from the taskbar. When [iCODE]alwaysShowNotificationIcon[/iCODE] is set to [iCODE]true[/iCODE], the tray icon is always shown, regardless of the [iCODE]minimizeToNotificationArea[/iCODE] setting. Note: These settings are not yet in the settings UI and can only be set in the settings.json file. [HEADING=1]Intense text style[/HEADING] You can now choose how you want intense text to appear in your terminal by using the [iCODE]intenseTextStyle[/iCODE] 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. // Renders intense text as both bold and bright "intenseTextStyle": "all" // Renders intense text as bold "intenseTextStyle": "bold" // Renders intense text as bright "intenseTextStyle": "bright" // Renders intense text as normal "intenseTextStyle": "none" [HEADING=1]Font features and axes[/HEADING] The [iCODE]font[/iCODE] object now accepts OpenType [iCODE]features[/iCODE] and [iCODE]axes[/iCODE] in the settings.json file. For more detailed information on OpenType, check out the docs for features as well as the docs for axes. For example: // Enables ss01 and disables ligatures "font": { "face": "Cascadia Code", "features": { "ss01": 1, "calt": 0 } } // Sets the font to italic "font": { "face": "Cascadia Code", "axes": { "ital": 1 } } [HEADING=1]Changes to default terminal behavior[/HEADING] 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 “Defaults” section, or [iCODE]profiles.defaults[/iCODE], in settings. Additionally, launching default terminal will now respect your [iCODE]windowingBehavior[/iCODE] setting. Breaking change notice: This behavior also applies to the [iCODE]wt[/iCODE] action and command line invocations without an explicit profile (i.e. [iCODE]wt -- cmd.exe[/iCODE]). [HEADING=1]Drag and drop path in ‘+’ button[/HEADING] You can now drag and drop directories and files onto the ‘+’ button, which will then open a new tab, pane, or window using the given starting path (Thanks @Daniel599!). When holding Alt, a new pane will open. When holding Shift, a new window will open. Without any key modifiers, a new tab will open. [HEADING=1]Pane updates[/HEADING] The pane functionality has seen a lot of improvements with this release. A huge thank you goes out to Schuyler Rosefield (@Rosefield) who made many of our pane contributions! Here are some of the highlights: [HEADING=2]Move pane to tab[/HEADING] Using the [iCODE]movePane[/iCODE] action, you can now move a pane to a new or existing tab (Thanks @Rosefield!). You can also use the command palette to move your panes. [HEADING=2]Swap panes within a tab[/HEADING] Using the [iCODE]swapPane[/iCODE] action, you can now swap the places of two panes within a tab (Thanks @Rosefield!). You can also use the command palette to swap your panes. [HEADING=2]Split tab in context menu[/HEADING] You can now right click on a tab and select Split Tab to split the active profile into a new pane. [HEADING=1]Settings UI updates[/HEADING] We are always trying to improve the settings UI experience and we have some updates in this release: [HEADING=2]Unfocused appearance[/HEADING] The appearance settings that apply to your profile when unfocused are now in the settings UI. [HEADING=2]Key chord editor for actions[/HEADING] 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). [HEADING=1]Miscellaneous improvements[/HEADING] Dynamically generated profiles can now be deleted (Finally! Sorry for the long wait on this one. ). On newer versions of Windows, [iCODE]startingDirectory[/iCODE] can now accept Linux paths when launching a WSL profile. Tabs created with [iCODE]wt[/iCODE] and default terminal instances will now have the launched command line as their title, instead of the default profile name. You can now navigate through panes in creation order using [iCODE]nextPane[/iCODE] and [iCODE]previousPane[/iCODE] (Thanks @Rosefield!). Navigating through panes with the [iCODE]move-focus[/iCODE] action works much better and now also works correctly on startup. The [iCODE]toggleSplitOrientation[/iCODE] action has been added and it switches a pair of panes from a vertical to a horizontal layout (Thanks @Rosefield!). 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’re running a build in an unfocused tab, for example. You can now use [iCODE]sc()[/iCODE] and [iCODE]vk()[/iCODE] for binding keys, which allows many more keys to be bindable. [HEADING=1]Bug fixes[/HEADING] Alt+Space can now be unbound from the system menu so that you can send ESC Space to the Terminal (Thanks @FWest98!). Snapping the “quake” window to another display will now properly update its size. The [iCODE]nextTab[/iCODE] and [iCODE]prevTab[/iCODE] actions now work correctly when used through [iCODE]wt[/iCODE] or the command palette (Thanks @Don-Vito!). [iCODE]initialPosition[/iCODE] now takes into account window borders. Generating WSL distro profiles should be much more stable now. The default profile dropdown menu will no longer take off into space when scrolling. [HEADING=1]Top contributors[/HEADING] We had a ton of fantastic contributors for this release. Here are those who have especially made an impact: [HEADING=2]Contributors who opened the most non-duplicate issues[/HEADING] Rosefield vefatica marioegghead2 hensz codeofdusk [HEADING=2]Contributors who created the most merged pull requests[/HEADING] Rosefield Don-Vito skyline75489 [HEADING=2]Contributors who provided the most comments on pull requests[/HEADING] Rosefield Don-Vito skyline75489 [HEADING=1]Cheers![/HEADING] If you want to learn more about Windows Terminal features, you can check out our docs site. If you have any questions, feel free to reach out to Kayla (@cinnamon_msft) on Twitter. As always, bug reports and feature requests can be filed on our GitHub. We hope you enjoy this latest release! The post Windows Terminal Preview 1.11 Release appeared first on Windows Command Line. Continue reading... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.