You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
add: fatal error screen
This commit is contained in:
@@ -170,8 +170,10 @@ androidComponents.onVariants { variant ->
|
||||
set.add(Pair(root.file("webroot/js/language.js").asFile, null))
|
||||
set.add(Pair(root.file("webroot/js/restoreError.js").asFile, null))
|
||||
set.add(Pair(root.file("webroot/js/navbar.js").asFile, null))
|
||||
set.add(Pair(root.file("webroot/js/daemon_actions.js").asFile, null))
|
||||
set.add(Pair(root.file("webroot/js/daemonActions.js").asFile, null))
|
||||
set.add(Pair(root.file("webroot/js/errorCatcher.js").asFile, null))
|
||||
set.add(Pair(root.file("webroot/js/browserRedirect.js").asFile, null))
|
||||
set.add(Pair(root.file("webroot/js/errorScreen.js").asFile, null))
|
||||
|
||||
set.add(Pair(root.file("webroot/js/translate/action.js").asFile, null))
|
||||
set.add(Pair(root.file("webroot/js/translate/home.js").asFile, null))
|
||||
@@ -203,6 +205,7 @@ androidComponents.onVariants { variant ->
|
||||
set.add(Pair(root.file("webroot/css/index.css").asFile, null))
|
||||
set.add(Pair(root.file("webroot/css/icons.css").asFile, null))
|
||||
set.add(Pair(root.file("webroot/css/fonts.css").asFile, null))
|
||||
set.add(Pair(root.file("webroot/css/error.css").asFile, null))
|
||||
|
||||
set.add(Pair(root.file("webroot/fonts/ProductSans-Italic.ttf").asFile, null))
|
||||
set.add(Pair(root.file("webroot/fonts/ProductSans-Regular.ttf").asFile, null))
|
||||
@@ -219,6 +222,7 @@ androidComponents.onVariants { variant ->
|
||||
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))
|
||||
set.add(Pair(root.file("webroot/assets/ec-icon.svg").asFile, null))
|
||||
|
||||
set.add(Pair(root.file("webroot/assets_light/action.svg").asFile, null))
|
||||
set.add(Pair(root.file("webroot/assets_light/home.svg").asFile, null))
|
||||
|
||||
@@ -121,8 +121,10 @@ extract "$ZIPFILE" 'webroot/js/theme.js' "$MODPATH/webroot/js" true
|
||||
extract "$ZIPFILE" 'webroot/js/language.js' "$MODPATH/webroot/js" true
|
||||
extract "$ZIPFILE" 'webroot/js/navbar.js' "$MODPATH/webroot/js" true
|
||||
extract "$ZIPFILE" 'webroot/js/restoreError.js' "$MODPATH/webroot/js" true
|
||||
extract "$ZIPFILE" 'webroot/js/daemon_actions.js' "$MODPATH/webroot/js" true
|
||||
extract "$ZIPFILE" 'webroot/js/daemonActions.js' "$MODPATH/webroot/js" true
|
||||
extract "$ZIPFILE" 'webroot/js/errorCatcher.js' "$MODPATH/webroot/js" true
|
||||
extract "$ZIPFILE" 'webroot/js/browserRedirect.js' "$MODPATH/webroot/js" true
|
||||
extract "$ZIPFILE" 'webroot/js/errorScreen.js' "$MODPATH/webroot/js" true
|
||||
|
||||
extract "$ZIPFILE" 'webroot/js/translate/home.js' "$MODPATH/webroot/js/translate" true
|
||||
extract "$ZIPFILE" 'webroot/js/translate/action.js' "$MODPATH/webroot/js/translate" true
|
||||
@@ -149,11 +151,12 @@ extract "$ZIPFILE" 'webroot/js/switcher/fontChanger.js' "$MODPATH/webroot/js/swi
|
||||
extract "$ZIPFILE" 'webroot/css/index.css' "$MODPATH/webroot/css" true
|
||||
extract "$ZIPFILE" 'webroot/css/fonts.css' "$MODPATH/webroot/css" true
|
||||
extract "$ZIPFILE" 'webroot/css/icons.css' "$MODPATH/webroot/css" true
|
||||
extract "$ZIPFILE" 'webroot/css/error.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 delete; do
|
||||
for svg in mark tick warn module expand settings close content error action home delete ec-icon; do
|
||||
extract "$ZIPFILE" "webroot/assets/${svg}.svg" "$MODPATH/webroot/assets" true
|
||||
done
|
||||
|
||||
|
||||
Reference in New Issue
Block a user