diff --git a/ChangeLog.txt b/ChangeLog.txt index ae1c0d8..a47c7e8 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,9 @@ +Mon Mar 29 21:19:36 CEST 2021 +pkg/slackpkg+-1.7.5-noarch-1mt.txz: Rebuilt + - Added TERSESEARCH to show a compact output in search function (thanks to + edrozenberg) ++-------------------------+ + Sat Mar 20 23:01:33 CET 2021 pkg/slackpkg+-1.7.4-noarch-3mt.txz: Rebuilt - Fix exit code for check-updates (slackpkg 15.0.1); now it return 1 if diff --git a/src/CHANGES b/src/CHANGES index 490720e..bfc54d3 100644 --- a/src/CHANGES +++ b/src/CHANGES @@ -1,6 +1,6 @@ = Full Changes list = -== From 1.7 to 1.7.4 == +== From 1.7 to 1.7.5 == *Configuration file: @@ -12,6 +12,8 @@ - Added USETERSE to use the --terse mode for pkgtools +- Added TERSESEARCH to show a compact output in search function + - Added PROXY to specify a proxy server - Removed ktown samples since kde5 is in slackware 15.0 diff --git a/src/ChangeLog.txt b/src/ChangeLog.txt index ae1c0d8..a47c7e8 100644 --- a/src/ChangeLog.txt +++ b/src/ChangeLog.txt @@ -1,3 +1,9 @@ +Mon Mar 29 21:19:36 CEST 2021 +pkg/slackpkg+-1.7.5-noarch-1mt.txz: Rebuilt + - Added TERSESEARCH to show a compact output in search function (thanks to + edrozenberg) ++-------------------------+ + Sat Mar 20 23:01:33 CET 2021 pkg/slackpkg+-1.7.4-noarch-3mt.txz: Rebuilt - Fix exit code for check-updates (slackpkg 15.0.1); now it return 1 if diff --git a/src/slackpkgplus.conf.5 b/src/slackpkgplus.conf.5 index e2e9658..3baa05d 100644 --- a/src/slackpkgplus.conf.5 +++ b/src/slackpkgplus.conf.5 @@ -108,6 +108,7 @@ Here is the list of available settings: .ds 1 SHOWORDER\t\t\t\tstring\t\tpackage\tno .ds 2 DETAILED_INFO\t\t\tstring\t\tnone\t\tyes .ds 3 ENABLENOTIFY\t\t\ton/off\t\toff\t\tno +.ds 4 TERSESEARCH\t\t\t\ton/off/tiny\t\ton\t\tyes .in +2 \*1 .br @@ -462,6 +463,20 @@ Setting \fB\%ENABLENOTIFY\fP=\fIon\fP you enable a notification system but it mu See the documentation and the file \fB\%notifymsg.conf\fP for details. +.TP 5 +\fBTERSESEARCH\fP +.br +Show a terse output for \fB\%slackpkg\ search\fP. +.br +Replace first column with sometime shorter and colorized. Available value are: +.br +\fIoff\fP\ )\ No modifications +.br +\fIon\fP\ \ )\ [unin] uninstalled, [inst] installed, [upgr] upgrade, [mask] uninstalled/masked +.br +\fItiny\fP)\ [-] uninstalled, [I] installed, [U] upgrade, [M] uninstalled/masked +.br + .SH FILES .TP 5 diff --git a/src/slackpkgplus.conf.5.it b/src/slackpkgplus.conf.5.it index b180b7b..19040f7 100644 --- a/src/slackpkgplus.conf.5.it +++ b/src/slackpkgplus.conf.5.it @@ -108,6 +108,7 @@ Seguono le differenti impostazioni disponibili: .ds 1 SHOWORDER\t\t\t\tstringa\t\tpackage\tno .ds 2 DETAILED_INFO\t\t\tstringa\t\tnone\t\tsi .ds 3 ENABLENOTIFY\t\t\ton/off\t\toff\t\tno +.ds 4 TERSESEARCH\t\t\t\ton/off/tiny\t\ton\t\tyes .in +2 \*1 .br @@ -460,6 +461,20 @@ Impostando \fB\%ENABLENOTIFY\fP=\fIon\fP si abilita un sistema di notifiche che Vedi la documentazione e il file \fB\%notifymsg.conf\fP per i dettagli. +.TP 5 +\fBTERSESEARCH\fP +.br +Imposta un output pił pulito per \fB\%slackpkg\ search\fP. +.br +Mette nella prima colonna sigle pił corte e colorate. I valori possibili sono: +.br +\fIoff\fP\ )\ Nessuna modifica +.br +\fIon\fP\ \ )\ [unin] uninstalled, [inst] installed, [upgr] upgrade, [mask] uninstalled/masked +.br +\fItiny\fP)\ [-] uninstalled, [I] installed, [U] upgrade, [M] uninstalled/masked +.br + .SH FILES .TP 5 diff --git a/src/slackpkgplus.sh b/src/slackpkgplus.sh index ad2e4a3..6454b6b 100755 --- a/src/slackpkgplus.sh +++ b/src/slackpkgplus.sh @@ -1781,7 +1781,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then cleanup fi - SPKGPLUS_VERSION="1.7.4" + SPKGPLUS_VERSION="1.7.5" VERSION="$VERSION / slackpkg+ $SPKGPLUS_VERSION" if [ ${VERSION:0:4} == "2.82" ];then diff --git a/src/slackpkgplus.x86.sample b/src/slackpkgplus.x86.sample index a3d1a91..0fd966b 100644 --- a/src/slackpkgplus.x86.sample +++ b/src/slackpkgplus.x86.sample @@ -13,6 +13,13 @@ VERBOSE=1 # Enable TERSE to use a smaller output in installpkg/upgradepkg USETERSE=on +# Enable a smaller output for slackpkg search. It replace first column with a colorized +# on: [unin] uninstalled, [inst] installed, [upgr] upgrade, [mask] uninstalled/masked +# tiny: [-] uninstalled, [I] installed, [I] upgrade, [M] uninstalled/masked +# off: leave unchanged and black/white. +#TERSESEARCH=tiny +TERSESEARCH=on + # Use proxy. Leave commented to use system settings. #PROXY=off #PROXY=: diff --git a/src/slackpkgplus.x86_64.sample b/src/slackpkgplus.x86_64.sample index 4b064c2..7b62b63 100644 --- a/src/slackpkgplus.x86_64.sample +++ b/src/slackpkgplus.x86_64.sample @@ -13,6 +13,13 @@ VERBOSE=1 # Enable TERSE to use a smaller output in installpkg/upgradepkg USETERSE=on +# Enable a smaller output for slackpkg search. It replace first column with a colorized +# on: [unin] uninstalled, [inst] installed, [upgr] upgrade, [mask] uninstalled/masked +# tiny: [-] uninstalled, [I] installed, [I] upgrade, [M] uninstalled/masked +# off: leave unchanged and black/white. +#TERSESEARCH=tiny +TERSESEARCH=on + # Use proxy. Leave commented to use system settings. #PROXY=off #PROXY=: