Update CVE patchers

This commit is contained in:
Tad 2021-07-07 14:41:28 -04:00
parent 12283124b5
commit c13672b9b7
13 changed files with 38 additions and 14 deletions

View file

@ -118,7 +118,7 @@ generateBootAnimationMask() {
local font=$2
local output=$3;
convert -background black -fill transparent -font "$font" -gravity center -size 512x128 label:"$text" "$output";
optipng "$output";
#optipng "$output"; #XXX: breaks boot animation on 14.1?
}
export -f generateBootAnimationMask;
@ -128,7 +128,7 @@ generateBootAnimationShine() {
local output=$3;
#The colors need to be symmetrical in order to make the animation smooth and not have any noticble lines
convert -size 1024x128 -define gradient:angle=90 "$style":"$color" \( +clone -flop \) +append "$output";
optipng "$output";
#optipng "$output";
}
export -f generateBootAnimationShine;