## バージョンアップ
```console
scoop update windows-terminal
```
正確なバージョンは`1.19.10573.0`。
## 試した機能
### 複雑なテキスト装飾に対応
対応したのは以下。
- 波線(curly)
- 点線(dashed)
- ドット線(dotted)
- 二重下線(doubled underlines)
以下のコマンドで確認できる。
```bash
printf "\x1b[58:2::255:0:0m\x1b[4:1msingle\x1b[4:2mdouble\x1b[4:3mcurly\x1b[4:4mdotted\x1b[4:5mdashed\x1b[0m\n"
```
結果。
![[Pasted image 20240302172315.png]]
### ブロードキャスト入力
すべてのウィンドウに一斉入力する。
![[Pasted image 20240302172220.png]]
停止するにはもう一度コマンド実行する。
### フォーカス/アンフォーカスで透明度を設定
フォーカスされていない場合は、透明度を85にして背景画像を消す(完全透明)ようにした。
```json
"profiles": {
"defaults": {
"unfocusedAppearance": {
"opacity": 85,
"backgroundImageOpacity": 0
},
"backgroundImageStretchMode": "none",
"backgroundImageAlignment": "bottomRight",
"backgroundImageOpacity": 0.7
},
```
詳細は [Allow Opacity to be set differently in both focused and unfocused terminals by Jaswir · Pull Request \#15974 · microsoft/terminal](https://github.com/microsoft/terminal/pull/15974)。
## 見送った機能
Shell Completionは見送り。試験的であることと、以前試したら動きが遅かったので...。
<div class="link-card">
<div class="link-card-header">
<img src="https://github.githubassets.com/favicons/favicon.svg" class="link-card-site-icon"/>
<span class="link-card-site-name">GitHub</span>
</div>
<div class="link-card-body">
<div class="link-card-content">
<p class="link-card-title">Experimental Shell Completion Menu</p>
<p class="link-card-description">The new Windows Terminal and the original Windows console host, all in the same place! - microsoft/terminal</p>
</div>
<img src="https://repository-images.githubusercontent.com/100060912/dc77b180-764a-11e9-9e12-aace7d0ecd7d" class="link-card-image" />
</div>
<a href="https://github.com/microsoft/terminal/wiki/Experimental-Shell-Completion-Menu"></a>
</div>