diff --git a/ChangeLog.txt b/ChangeLog.txt index 4acdaff..fa92d27 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,16 @@ +Tue Jan 11 19:24:04 CET 2022 +pkg/slackpkg+-1.7.11-noarch-1mt.txz: + - zlookkernel.sh also supports grub (thanks to RezaT4795) + - repositories.lst updated + - Added "comma" syntax. Now you can add a comma (,) at start or at end + of packagename to match the exact name, so "libreoffice," does match + the "libreoffice" package and not the libreoffice-dict-* ecc. for ex: + slackpkg upgrade libreoffice, + slackpkg install alienbob:libreoffice, + slackpkg download libreoffice, + slackpkg search libreoffice, ++-------------------------+ + Sun Dec 19 23:40:59 CET 2021 pkg/slackpkg+-1.7.10-noarch-1mt.txz: - According to slackpkg 15.0.9, automatically rebuild package lists if diff --git a/src/CHANGES b/src/CHANGES index 007e718..3718022 100644 --- a/src/CHANGES +++ b/src/CHANGES @@ -1,6 +1,6 @@ = Full Changes list = -== From 1.7 to 1.7.10 == +== From 1.7 to 1.7.11 == *Configuration file: @@ -30,6 +30,21 @@ *New features: +- Added "comma" syntax. Now you can select an exact package name adding a comma (,) + at the end of the package name + slackpkg upgrade libreoffice, + slackpkg install alienbob:libreoffice, + slackpkg download libreoffice, + slackpkg search libreoffice, + without comma slackpkg shows libreoffice libreoffice-dict-* libreoffice-l10n-* + that means up to 500 packages that you have to deselect. With the comma + slackpkg shows the libreoffice package only. + You can also add it at the start of name + slackpkg install alienbob:libreoffice, + slackpkg install alienbob:,libreoffice + slackpkg install ,alienbob:libreoffice + are all equivalent + - Added manpages (italian and english) for slackpkgplus.conf to read the italian manpage be sure to export LANG=it_IT@euro and use the ISO8859-15 charset in console. @@ -128,7 +143,7 @@ but greylist system use the older syntax - Added zlookkernel.sh - It help you to reconfigure initrd. It does support lilo and elilo (EFI) + It help you to reconfigure initrd. It does support lilo , elilo (EFI) and grub set PLUGIN_ZLOOKKERNEL=enable to use it For instructions read notes in the code: /usr/libexec/slackpkg/functions.d/zlookkernel.sh diff --git a/src/ChangeLog.txt b/src/ChangeLog.txt index 4acdaff..fa92d27 100644 --- a/src/ChangeLog.txt +++ b/src/ChangeLog.txt @@ -1,3 +1,16 @@ +Tue Jan 11 19:24:04 CET 2022 +pkg/slackpkg+-1.7.11-noarch-1mt.txz: + - zlookkernel.sh also supports grub (thanks to RezaT4795) + - repositories.lst updated + - Added "comma" syntax. Now you can add a comma (,) at start or at end + of packagename to match the exact name, so "libreoffice," does match + the "libreoffice" package and not the libreoffice-dict-* ecc. for ex: + slackpkg upgrade libreoffice, + slackpkg install alienbob:libreoffice, + slackpkg download libreoffice, + slackpkg search libreoffice, ++-------------------------+ + Sun Dec 19 23:40:59 CET 2021 pkg/slackpkg+-1.7.10-noarch-1mt.txz: - According to slackpkg 15.0.9, automatically rebuild package lists if diff --git a/src/slackpkgplus.sh b/src/slackpkgplus.sh index ee4082a..c0b92fc 100755 --- a/src/slackpkgplus.sh +++ b/src/slackpkgplus.sh @@ -1935,7 +1935,7 @@ if [ "$SLACKPKGPLUS" = "on" ];then cleanup fi - SPKGPLUS_VERSION="1.7.10" + SPKGPLUS_VERSION="1.7.11" 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 809781f..98d8c7c 100644 --- a/src/slackpkgplus.x86.sample +++ b/src/slackpkgplus.x86.sample @@ -148,7 +148,7 @@ MIRRORPLUS['slackpkgplus']=https://slakfinder.org/slackpkg+15/ # Plugin section: # Here you can enable some optional feature. Please read documentation before enable it. # -# ZLookKernel can help you to rebuild initrd and reinstall lilo/elilo. This feature was +# ZLookKernel can help you to rebuild initrd and reinstall lilo/elilo/grub. This feature was # removed in slackpkg-15.0. 'enable' this setting to enable it. # read /usr/libexec/slackpkg/functions.d/zlookkernel.sh for more information # It will ask confirmations at every step, unless you will set 'PLUGIN_ZLOOKKERNEL_PROMPT=off' diff --git a/src/slackpkgplus.x86_64.sample b/src/slackpkgplus.x86_64.sample index e40be84..3b835eb 100644 --- a/src/slackpkgplus.x86_64.sample +++ b/src/slackpkgplus.x86_64.sample @@ -163,7 +163,7 @@ MIRRORPLUS['slackpkgplus']=https://slakfinder.org/slackpkg+15/ # Plugin section: # Here you can enable some optional feature. Please read documentation before enable it. # -# ZLookKernel can help you to rebuild initrd and reinstall lilo/elilo. This feature was +# ZLookKernel can help you to rebuild initrd and reinstall lilo/elilo/grub. This feature was # removed in slackpkg-15.0. 'enable' this setting to enable it. # read /usr/libexec/slackpkg/functions.d/zlookkernel.sh for more information # It will ask confirmations at every step, unless you will set 'PLUGIN_ZLOOKKERNEL_PROMPT=off'