all plugins: the option '--colorize-theme' must set colorize to '1'
Signed-off-by: Davide Madrisan <davide.madrisan@gmail.com>
This commit is contained in:
parent
4edf024f5f
commit
0f301dc9fa
@ -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
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user