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)
+-------------------------+
This commit is contained in:
Matteo Rossini 2021-03-29 21:29:39 +02:00
parent 4eff876d5f
commit b8f76c4d9f
8 changed files with 60 additions and 2 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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=<host>:<port>

View file

@ -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=<host>:<port>