Skip to content

Commit

Permalink
Add author tag and bump version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
alichtman committed May 30, 2018
1 parent 8c825c1 commit c7f88cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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."
Expand Down
4 changes: 3 additions & 1 deletion stronghold.py
Expand Up @@ -76,14 +76,16 @@ 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")

print_section_header("BEFORE STARTING", Fore.RED)

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)
Expand Down

0 comments on commit c7f88cd

Please sign in to comment.