Jump to content
Microsoft Windows Bulletin Board

Windows Terminal Preview 1.11 Release


Recommended Posts

Guest Kayla Cinnamon
Posted

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.

 

1f449.png.b2f0a8a26ae8ed7a9a2b5697d817fc95.png Note: You will have to restart your terminal in order for this to take effect.

 

acrylic-tab-row.thumb.png.70f9a49c9b8ad8c58fcbda189f54ca9a.png

 

[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.

 

1f449.png.92327138db2cecbda855b3fad4b067f4.png 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"

 

Intense-text-formatting.thumb.gif.4163c5f2a3470fb7609184da89b66278.gif

 

[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.

 

2757.png.7988da072886674e7bae8ba09ef4d561.png 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.

 

Drag-and-drop.gif.74ae9696eaa6b983b4266c18726bef80.gif

 

[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.

 

Move-pane.thumb.gif.7814f89d31a1eaac854c9e2b35228b99.gif

 

[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.

 

Swap-pane.thumb.gif.daa4f60c3dfeb360c223864c8c7b5566.gif

 

[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.

 

Split-tab.thumb.gif.8d69b1171ace7bb40b672e7affc1a209.gif

 

[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.

 

unfocused-appearance.thumb.png.f65c3b1fa24b7c9fbde75f789686495b.png

 

[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]

 

1f6e0.png.be4b8110a510320d3328328c1ae6d704.png Dynamically generated profiles can now be deleted (Finally! Sorry for the long wait on this one. 1f60a.png.6e47a379124c1f4256b69a4a3f88f99e.png).

 

1f6e0.png.2cff97febe71c5ea8606ddb8745cfbdc.png On newer versions of Windows, [iCODE]startingDirectory[/iCODE] can now accept Linux paths when launching a WSL profile.

 

1f6e0.png.8aef1aef2db189ae9f9187c42f2c6769.png 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.

 

1f6e0.png.4f307290836e2ccdcc938dc1683a29c1.png You can now navigate through panes in creation order using [iCODE]nextPane[/iCODE] and [iCODE]previousPane[/iCODE] (Thanks @Rosefield!).

 

1f6e0.png.634a76942f46187192cc00dd33407a34.png Navigating through panes with the [iCODE]move-focus[/iCODE] action works much better and now also works correctly on startup.

 

1f6e0.png.c9923392d2465ebad7db3b63101ce296.png The [iCODE]toggleSplitOrientation[/iCODE] action has been added and it switches a pair of panes from a vertical to a horizontal layout (Thanks @Rosefield!).

 

1f6e0.png.61cddb37866764a269087d5a82b9fefd.png 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.

 

1f6e0.png.bcca5d8299f37dc6759bfe5b04e72158.png 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]

 

1f41b.png.4e2cd05b96e78247f233c46fe235c98a.png Alt+Space can now be unbound from the system menu so that you can send ESC Space to the Terminal (Thanks @FWest98!).

 

1f41b.png.b9dbe84c9d1930c454fc5b2598844cdc.png Snapping the “quake” window to another display will now properly update its size.

 

1f41b.png.7e8bbc37bc14b5fbd42803575414a5e5.png 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!).

 

1f41b.png.f8b24b9556f58ca26c82b951408e6376.png [iCODE]initialPosition[/iCODE] now takes into account window borders.

 

1f41b.png.1c7694751810aafcb37acbe1aa149bd6.png Generating WSL distro profiles should be much more stable now.

 

1f41b.png.538ae58415fac303c160823893f01b7d.png 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]

 

1f3c6.png.e28d8856b89a76ce5d2999d136c54a39.png Rosefield

 

1f3c6.png.a299802901b03004903b9299e59fa7ee.png vefatica

 

1f3c6.png.67ad73b3d0fb31035bb804d598d8c5fa.png marioegghead2

 

1f3c6.png.6ace9fb7029a3f883361a9e0d338f900.png hensz

 

1f3c6.png.515c0eb4e6a0eed39d674df66b9e896e.png codeofdusk

 

[HEADING=2]Contributors who created the most merged pull requests[/HEADING]

 

1f3c6.png.25646ea00cf4db431a78b70b6731bf2f.png Rosefield

 

1f3c6.png.9bac316f6c034d5bc9dec72d9ce17db4.png Don-Vito

 

1f3c6.png.402b8578cf4ab9ce34ca6ca0fd0601a8.png skyline75489

 

[HEADING=2]Contributors who provided the most comments on pull requests[/HEADING]

 

1f3c6.png.ab2ec23a0288d9ffe3c3792e959e1170.png Rosefield

 

1f3c6.png.03c02edc22d79af67546f63bb645f1f1.png Don-Vito

 

1f3c6.png.8cd33e48459617e358f4155a9bd950f8.png 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!

 

signatures.thumb.png.06e4376b2be9fb74ebb56e82e00debdc.png

 

The post Windows Terminal Preview 1.11 Release appeared first on Windows Command Line.

 

Continue reading...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...