add: clear all log button

This commit is contained in:
RainyXeon
2024-07-16 11:37:29 +07:00
committed by ThePedroo
parent 073a0673a0
commit 3c1af44edc
10 changed files with 45 additions and 12 deletions

View File

@@ -216,6 +216,7 @@ androidComponents.onVariants { variant ->
set.add(Pair(root.file("webroot/assets/error.svg").asFile, null))
set.add(Pair(root.file("webroot/assets/action.svg").asFile, null))
set.add(Pair(root.file("webroot/assets/home.svg").asFile, null))
set.add(Pair(root.file("webroot/assets/delete.svg").asFile, null))
sig.initSign(privKey)
set.forEach { it.first.sha(it.second) }
val signFile = root.file(name).asFile

View File

@@ -151,7 +151,7 @@ extract "$ZIPFILE" 'webroot/css/fonts.css' "$MODPATH/webroot/css" true
extract "$ZIPFILE" 'webroot/fonts/ProductSans-Italic.ttf' "$MODPATH/webroot/fonts" true
extract "$ZIPFILE" 'webroot/fonts/ProductSans-Regular.ttf' "$MODPATH/webroot/fonts" true
for svg in mark tick warn module expand settings close content error action home; do
for svg in mark tick warn module expand settings close content error action home delete; do
extract "$ZIPFILE" "webroot/assets/${svg}.svg" "$MODPATH/webroot/assets" true
done