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) # v1.1.0 (2016-10-11)
- Fixed Bash script header to dynamically load correct environment. - 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 # Table of Contents
- [Features](#features) - [Features](#features)
- [Screencast](#screencast)
- [Requirements](#requirements) - [Requirements](#requirements)
- [Setup](#setup) - [Setup](#setup)
- [Usage](#usage) - [Usage](#usage)
@@ -53,6 +54,10 @@ the two projects are meant to be used:
- Sets up and configures installed software for use. - Sets up and configures installed software for use.
- Supports restoration of machine backups. - Supports restoration of machine backups.
# Screencast
[![asciicast](https://asciinema.org/a/88971.png)](https://asciinema.org/a/88971)
# Requirements # Requirements
0. [macOS Sierra](https://www.apple.com/macos) (with latest software updates applied) 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 git clone https://github.com/bkuhlmann/mac_os.git
cd mac_os cd mac_os
git checkout v1.1.0 git checkout v1.2.0
Master Version (unstable): Master Version (unstable):

View File

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