Compare commits

...

3 Commits
1.1.0 ... 1.2.0

Author SHA1 Message Date
Brooke Kuhlmann
7fc9304834 Added version release changes. 2016-10-12 11:44:48 -06:00
Brooke Kuhlmann
b6e9f38bac Added screencast to README.
- Provides additional usage via the CLI.
2016-10-12 11:42:11 -06:00
Brooke Kuhlmann
3320a8d027 Fixed reinstaller path issues with application and extension scripts.
- These reinstallers were not making use of the new `bin` scripts.
2016-10-12 11:28:48 -06:00
3 changed files with 13 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
# v1.2.0 (2016-10-12)
- Fixed reinstaller path issues with application and extension scripts.
- Added screencast to README.
# v1.1.0 (2016-10-11)
- Fixed Bash script header to dynamically load correct environment.

View File

@@ -22,6 +22,7 @@ the two projects are meant to be used:
# Table of Contents
- [Features](#features)
- [Screencast](#screencast)
- [Requirements](#requirements)
- [Setup](#setup)
- [Usage](#usage)
@@ -53,6 +54,10 @@ the two projects are meant to be used:
- Sets up and configures installed software for use.
- Supports restoration of machine backups.
# Screencast
[![asciicast](https://asciinema.org/a/88971.png)](https://asciinema.org/a/88971)
# Requirements
0. [macOS Sierra](https://www.apple.com/macos) (with latest software updates applied)
@@ -67,7 +72,7 @@ Current Version (stable):
git clone https://github.com/bkuhlmann/mac_os.git
cd mac_os
git checkout v1.1.0
git checkout v1.2.0
Master Version (unstable):

View File

@@ -6,13 +6,13 @@
# Reinstall application.
reinstall_application() {
uninstall_application
scripts/applications.sh
bin/install_applications
}
export -f reinstall_application
# Reinstall extension.
reinstall_extension() {
uninstall_extension
scripts/extensions.sh
bin/install_extensions
}
export -f reinstall_extension