From c7f88cd8d56ffec734a32e3b7af3242e26adbef0 Mon Sep 17 00:00:00 2001 From: alichtman Date: Tue, 29 May 2018 22:40:00 -0400 Subject: [PATCH] Add author tag and bump version for new release --- constants.py | 2 +- stronghold.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/constants.py b/constants.py index 7d9c2ab..4536f64 100644 --- a/constants.py +++ b/constants.py @@ -1,6 +1,6 @@ class Constants: PROJECT_NAME = 'stronghold' - VERSION = '1.2' + VERSION = '1.3' AUTHOR_GITHUB = 'alichtman' AUTHOR_FULL_NAME = 'Aaron Lichtman' DESCRIPTION = "Securely configure your Mac from the terminal." diff --git a/stronghold.py b/stronghold.py index e51115b..4971b81 100644 --- a/stronghold.py +++ b/stronghold.py @@ -76,6 +76,8 @@ def splash_intro(): " Y8b d88P \n" + " \"Y88P\n" + Style.RESET_ALL) + print(Fore.RED + Style.BRIGHT + "Built by Aaron Lichtman. (Github: alichtman)\n" + Style.RESET_ALL) + print(Fore.BLUE + Style.BRIGHT + "Stronghold is a security configuration tool for MacOS Sierra and High Sierra.") print("You may be asked for a sudo password." + Style.RESET_ALL + "\n") @@ -83,7 +85,7 @@ def splash_intro(): print(Fore.RED + Style.BRIGHT + "\t0. Make the terminal window as large as possible.") print("\t1. Ensure you have up-to-date system backups.") - print("\t2. Do not key-mash through this script.\n" + Style.RESET_ALL) + print("\t2. Read the prompts carefully.\n" + Style.RESET_ALL) if not prompt_yes_no(bottom_line="I have read the above carefully and want to continue"): sys.exit(0)