We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d90f62 commit 79d3583Copy full SHA for 79d3583
Changes
@@ -4,6 +4,13 @@ Revision history for Terminal-Tests
4
[Docs]
5
- Note in README that VTE emoji problems are due to be addressed in VTE 0.84
6
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
14
15
0.0.10 2025-11-09T18:20:03-08:00
16
META6.json
@@ -8,8 +8,8 @@
"depends": [
"Hash::Ordered:ver<0.0.2+>:auth<zef:lizmat>",
"JSON::Fast:ver<0.17+>:auth<cpan:TIMOTIMO>",
- "Terminal::ANSIColor:ver<0.9+>:auth<zef:lizmat>",
- "Terminal::Capabilities:ver<0.0.13+>:auth<zef:japhb>",
+ "Terminal::ANSIColor:ver<0.14+>:auth<zef:raku-community-modules>",
+ "Terminal::Capabilities:ver<0.0.14+>:auth<zef:japhb>",
"Text::MiscUtils:ver<0.0.8+>:auth<zef:japhb>"
],
"description": "Terminal emulator, multiplexer, and font quality tests",
lib/Terminal/Tests/App/QuickTest.rakumod
@@ -26,10 +26,14 @@ sub summarize-autodetection() {
26
$caps.color3bit ?? 'VT' !! '';
27
$color = colored('B', 'bold white') ~ $color if $caps.colorbright;
28
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;
+ my $attrs = ((colored('B', 'bold') if $caps.bold),
+ (colored('F', 'faint') if $caps.faint),
+ (colored('I', 'italic') if $caps.italic),
+ (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;
37
38
my $summary = $version && !$terminal.contains('/')
39
?? "$terminal/$version" !! $terminal;
0 commit comments