mirror of
https://github.com/smxi/inxi.git
synced 2024-11-16 16:21:39 +00:00
New version. Tiny bug fix, Ubuntu based distros only.
The 3.0.13 system base feature had a small bug in the logic that was supposed to get the version id from codename, the bug made it never work. This is only relevant for Ubuntu based distros, so if you are on some other base like Debian or Arch, you can ignore this one, 3.0.13 will work fine. No other changes, this was mainly for Mint, and other Ubuntu derived distros in the future.
This commit is contained in:
parent
2d1585cdc1
commit
ef5dbf1c3d
8
inxi
8
inxi
|
@ -31,8 +31,8 @@ use POSIX qw(uname strftime ttyname);
|
|||
|
||||
## INXI INFO ##
|
||||
my $self_name='inxi';
|
||||
my $self_version='3.0.13';
|
||||
my $self_date='2018-06-23';
|
||||
my $self_version='3.0.14';
|
||||
my $self_date='2018-06-27';
|
||||
my $self_patch='00';
|
||||
## END INXI INFO ##
|
||||
|
||||
|
@ -15762,7 +15762,8 @@ sub get_os_release {
|
|||
# Mint is using UBUNTU_CODENAME without ID data.
|
||||
sub ubuntu_id {
|
||||
eval $start if $b_log;
|
||||
my ($codename) = lc(@_);
|
||||
my ($codename) = @_;
|
||||
$codename = lc($codename);
|
||||
my ($id) = ('');
|
||||
my %codenames = (
|
||||
'cosmic' => '18.10',
|
||||
|
@ -15785,7 +15786,6 @@ sub ubuntu_id {
|
|||
return $id;
|
||||
}
|
||||
}
|
||||
|
||||
sub get_gcc_data {
|
||||
eval $start if $b_log;
|
||||
my ($gcc,@data,@gccs,@temp);
|
||||
|
|
|
@ -1,3 +1,23 @@
|
|||
=====================================================================================
|
||||
Version: 3.0.14
|
||||
Patch Version: 00
|
||||
Script Date: 2018-06-27
|
||||
-----------------------------------
|
||||
Changes:
|
||||
-----------------------------------
|
||||
New version. Tiny bug fix, Ubuntu based distros only.
|
||||
|
||||
The 3.0.13 system base feature had a small bug in the logic that was supposed to
|
||||
get the version id from codename, the bug made it never work. This is only relevant
|
||||
for Ubuntu based distros, so if you are on some other base like Debian or Arch, you
|
||||
can ignore this one, 3.0.13 will work fine.
|
||||
|
||||
No other changes, this was mainly for Mint, and other Ubuntu derived distros in
|
||||
the future.
|
||||
|
||||
-----------------------------------
|
||||
-- Harald Hope - Wed, 27 Jun 2018 16:50:30 -0700
|
||||
|
||||
=====================================================================================
|
||||
Version: 3.0.13
|
||||
Patch Version: 00
|
||||
|
|
Loading…
Reference in a new issue