Skip to content

Commit 79d3583

Browse files
committed
Support 4 SGR attrs newly supported by T::C/T::AC
1 parent 8d90f62 commit 79d3583

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

Changes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Revision history for Terminal-Tests
44
[Docs]
55
- Note in README that VTE emoji problems are due to be addressed in VTE 0.84
66

7+
[Features]
8+
- Squeeze in quick-test section for four SGR attrs newly supported by T::C/T::AC
9+
10+
[Packaging]
11+
- Bump T::C dependency to 0.0.14+ to pick up new SGR attribute support
12+
- Bump T::AC dependency (coincidentally to the same value) for the same reason
13+
714

815
0.0.10 2025-11-09T18:20:03-08:00
916
[Docs]

META6.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"depends": [
99
"Hash::Ordered:ver<0.0.2+>:auth<zef:lizmat>",
1010
"JSON::Fast:ver<0.17+>:auth<cpan:TIMOTIMO>",
11-
"Terminal::ANSIColor:ver<0.9+>:auth<zef:lizmat>",
12-
"Terminal::Capabilities:ver<0.0.13+>:auth<zef:japhb>",
11+
"Terminal::ANSIColor:ver<0.14+>:auth<zef:raku-community-modules>",
12+
"Terminal::Capabilities:ver<0.0.14+>:auth<zef:japhb>",
1313
"Text::MiscUtils:ver<0.0.8+>:auth<zef:japhb>"
1414
],
1515
"description": "Terminal emulator, multiplexer, and font quality tests",

lib/Terminal/Tests/App/QuickTest.rakumod

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,14 @@ sub summarize-autodetection() {
2626
$caps.color3bit ?? 'VT' !! '';
2727
$color = colored('B', 'bold white') ~ $color if $caps.colorbright;
2828

29-
my $attrs = ((colored('B', 'bold') if $caps.bold),
30-
(colored('I', 'italic') if $caps.italic),
31-
(colored('I', 'inverse') if $caps.inverse),
32-
(colored('U', 'underline') if $caps.underline)).join;
29+
my $attrs = ((colored('B', 'bold') if $caps.bold),
30+
(colored('F', 'faint') if $caps.faint),
31+
(colored('I', 'italic') if $caps.italic),
32+
(colored('I', 'inverse') if $caps.inverse),
33+
(colored('O', 'overline') if $caps.overline),
34+
(colored('S', 'strike') if $caps.strike),
35+
(colored('U', 'underline') if $caps.underline),
36+
(colored('D', 'dunderline') if $caps.dunderline)).join;
3337

3438
my $summary = $version && !$terminal.contains('/')
3539
?? "$terminal/$version" !! $terminal;

0 commit comments

Comments
 (0)