From 6e5d6ee64c22ed109b11bd33f5ededfc71c8cea3 Mon Sep 17 00:00:00 2001 From: Alexander Frick Date: Wed, 24 Apr 2024 03:51:22 -0500 Subject: [PATCH] add newline before showing ascii art --- arm/android/android_arm32_args.gn | 2 +- build.sh | 2 ++ build_android.sh | 8 ++++++++ build_mac.sh | 6 +++++- build_win.sh | 2 ++ 5 files changed, 18 insertions(+), 2 deletions(-) diff --git a/arm/android/android_arm32_args.gn b/arm/android/android_arm32_args.gn index 86c4f638..c5169ec6 100644 --- a/arm/android/android_arm32_args.gn +++ b/arm/android/android_arm32_args.gn @@ -12,7 +12,7 @@ arm_tune = "generic-armv7-a" arm_use_thumb = true arm_use_neon = false arm_optionally_use_neon = false -arm_fpu = "softfp" +arm_fpu = "vfpv3-d16" is_official_build = true is_high_end_android = false use_relr_relocations = false diff --git a/build.sh b/build.sh index cc515d3a..73bd986b 100755 --- a/build.sh +++ b/build.sh @@ -46,7 +46,9 @@ export NINJA_STATUS="[%r processes, %f/%t @ %o/s | %e sec. ] " && cd ${CR_SRC_DIR} && autoninja -C out/thorium thorium chrome_sandbox chromedriver clear_key_cdm thorium_shell policy_templates -j$@ && +printf "\n" && cat ~/thorium/logos/thorium_logo_ascii_art.txt && +printf "\n" && printf "${GRE}${bold}Build Completed! ${YEL}${bold}You can now run \'./package.sh\' to build installation packages.\n" && tput sgr0 diff --git a/build_android.sh b/build_android.sh index a9ed4849..1dbc009d 100755 --- a/build_android.sh +++ b/build_android.sh @@ -56,7 +56,9 @@ buildARM32 () { cd ${CR_SRC_DIR} && autoninja -C out/thorium chrome_public_apk content_shell_apk system_webview_apk -j${cr_build_jobs} && + printf "\n" && cat ~/thorium/logos/thorium_logo_ascii_art.txt && + printf "\n" && printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can copy the .apk(s) to your device or use ADB to install it.\n" && printf "${GRE}${bold}They are located in \'//chromium/src/out/thorium/apks/\'\n" && printf "\n" @@ -77,7 +79,9 @@ buildARM64 () { cd ${CR_SRC_DIR} && autoninja -C out/thorium chrome_public_apk content_shell_apk system_webview_64_apk -j${cr_build_jobs} && + printf "\n" && cat ~/thorium/logos/thorium_logo_ascii_art.txt && + printf "\n" && printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can copy the .apk(s) to your device or use ADB to install it.\n" && printf "${GRE}${bold}They are located in \'//chromium/src/out/thorium/apks/\'\n" && printf "\n" @@ -98,7 +102,9 @@ buildX86 () { cd ${CR_SRC_DIR} && autoninja -C out/thorium chrome_public_apk content_shell_apk system_webview_apk -j${cr_build_jobs} && + printf "\n" && cat ~/thorium/logos/thorium_logo_ascii_art.txt && + printf "\n" && printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can copy the .apk(s) to your device or use ADB to install it.\n" && printf "${GRE}${bold}They are located in \'//chromium/src/out/thorium/apks/\'\n" && printf "\n" @@ -119,7 +125,9 @@ buildX64 () { cd ${CR_SRC_DIR} && autoninja -C out/thorium chrome_public_apk content_shell_apk system_webview_apk -j${cr_build_jobs} && + printf "\n" && cat ~/thorium/logos/thorium_logo_ascii_art.txt && + printf "\n" && printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can copy the .apk(s) to your device or use ADB to install it.\n" && printf "${GRE}${bold}They are located in \'//chromium/src/out/thorium/apks/\'\n" && printf "\n" diff --git a/build_mac.sh b/build_mac.sh index 11a3b724..10cee521 100755 --- a/build_mac.sh +++ b/build_mac.sh @@ -38,8 +38,10 @@ buildShell () { cd ${CR_SRC_DIR} && autoninja -C out/thorium thorium chromedriver thorium_shell policy_templates -j$@ && - + + printf "\n" && cat ~/thorium/logos/thorium_logo_ascii_art.txt && + printf "\n" && printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can now run \'./build_dmg.sh\', and copy the Thorium Shell.app out.\n" && tput sgr0 @@ -68,7 +70,9 @@ export NINJA_STATUS="[%r processes, %f/%t @ %o/s | %e sec. ] " && cd ${CR_SRC_DIR} && autoninja -C out/thorium thorium chromedriver policy_templates -j$@ && +printf "\n" && cat ~/thorium/logos/thorium_logo_ascii_art.txt && +printf "\n" && printf "${GRE}${bold}Build Completed. ${YEL}${bold}You can now run \'./build_dmg.sh\'\n" && tput sgr0 diff --git a/build_win.sh b/build_win.sh index d4c9c4bc..94d2f2a8 100755 --- a/build_win.sh +++ b/build_win.sh @@ -48,7 +48,9 @@ autoninja -C out/thorium thorium chromedriver clear_key_cdm thorium_shell policy mv -v -f ${CR_SRC_DIR}/out/thorium/mini_installer.exe ${CR_SRC_DIR}/out/thorium/thorium_mini_installer.exe && +printf "\n" && cat ~/thorium/logos/thorium_logo_ascii_art.txt && +printf "\n" && printf "${GRE}${bold}Build Completed. ${YEL}${bold}Installer at \'//out/thorium/thorium_mini_installer.exe\'\n" && tput sgr0