diff --git a/ChangeLog b/ChangeLog index cd11a0e..ed54b51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,7 +14,7 @@ Changes in version 1.14.2 Send the debug message showing autospec version as soon as possible. + improvement - * autospec, plugins/*,lib/lib*.lib - Davide Madrisan: + * autospec, plugins/*, lib/lib*.lib - Davide Madrisan: A color scheme can be selected now by using the new command-line option '--colorize-theme'. @@ -33,6 +33,10 @@ Changes in version 1.14.2 permissions. These files are now own by root and never contain sensible data (that is passwords). ++ update + * plugins/* - Davide Madrisan: + The option '--colorize-theme' must set colorize to '1'. + ------------------------------------------------------------------------------- Changes in version 1.14.1 - _TO*Hacklab release diff --git a/autospec.in b/autospec.in index e359f8b..f986a08 100644 --- a/autospec.in +++ b/autospec.in @@ -129,7 +129,8 @@ while (($# > 0)); do -r|--colorize) let "colorize = 1" ;; --colorize-theme) - read_arg colorize_theme "$@" || shift ;; + read_arg colorize_theme "$@" || shift + let "colorize = 1" ;; -h|--help) let "print_help = 1" ;; -V|--version) diff --git a/plugins/config-getvar.in b/plugins/config-getvar.in index f7259a6..434faa9 100644 --- a/plugins/config-getvar.in +++ b/plugins/config-getvar.in @@ -118,7 +118,8 @@ while :; do -r|--colorize) let "colorize = 1" ;; --colorize-theme) - colorize_theme="$2"; shift ;; + colorize_theme="$2"; shift + let "colorize = 1" ;; -h|--help) usage 0 ;; -V|--version) diff --git a/plugins/pck-extract.in b/plugins/pck-extract.in index e2cc0b8..5e1d34b 100644 --- a/plugins/pck-extract.in +++ b/plugins/pck-extract.in @@ -124,7 +124,8 @@ while :; do -r|--colorize) let "colorize = 1" ;; --colorize-theme) - colorize_theme="$2"; shift ;; + colorize_theme="$2"; shift + let "colorize = 1" ;; -h|--help) usage 0 ;; -V|--version) diff --git a/plugins/pck-update.in b/plugins/pck-update.in index cfcd638..1ef58f4 100644 --- a/plugins/pck-update.in +++ b/plugins/pck-update.in @@ -280,7 +280,8 @@ while :; do -r|--colorize) let "colorize = 1" ;; --colorize-theme) - colorize_theme="$2"; shift ;; + colorize_theme="$2"; shift + let "colorize = 1" ;; -h|--help) usage 0 ;; -V|--version) diff --git a/plugins/spec-create.in b/plugins/spec-create.in index 8e1b588..7729756 100644 --- a/plugins/spec-create.in +++ b/plugins/spec-create.in @@ -199,7 +199,8 @@ while :; do -r|--colorize) let "colorize = 1" ;; --colorize-theme) - colorize_theme="$2"; shift ;; + colorize_theme="$2"; shift + let "colorize = 1" ;; -h|--help) usage 0 ;; -V|--version)