mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
fixed output glitch
This commit is contained in:
parent
404793f8b9
commit
11cc215449
9
pinxi
9
pinxi
|
@ -50,8 +50,8 @@ use POSIX qw(ceil uname strftime ttyname);
|
|||
## INXI INFO ##
|
||||
my $self_name='pinxi';
|
||||
my $self_version='3.3.31';
|
||||
my $self_date='2023-10-31';
|
||||
my $self_patch='01';
|
||||
my $self_date='2023-11-02';
|
||||
my $self_patch='02';
|
||||
## END INXI INFO ##
|
||||
|
||||
my ($b_pledge,@pledges);
|
||||
|
@ -2711,7 +2711,8 @@ sub download_file {
|
|||
sub get_file_http_tiny {
|
||||
my ($type,$url,$file,$ua) = @_;
|
||||
$ua = ($ua && $dl{'ua'}) ? $dl{'ua'} . $ua: '';
|
||||
my %headers = ($ua) ? ('agent' => $ua) : undef;
|
||||
my %headers;
|
||||
%headers = ('agent' => $ua) if $ua;
|
||||
my $tiny = HTTP::Tiny->new(%headers);
|
||||
# note: default is no verify, so default here actually is to verify unless overridden
|
||||
$tiny->verify_SSL => 1 if !$use{'no-ssl'};
|
||||
|
@ -18084,7 +18085,7 @@ sub set_amd_data {
|
|||
},
|
||||
{'arch' => 'RDNA-3',
|
||||
'ids' => '73f0|7480|7481|7483|7487|7489|748b|749f',
|
||||
'code' => 'Navi-33',
|
||||
'code' => 'Navi-33',-
|
||||
'process' => 'TSMC n6 (6nm)',
|
||||
'years' => '2023+',
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue