Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3a896882c9 | ||
|
|
8af0c44eba | ||
|
|
d9440953ac | ||
|
|
8528e0ff01 | ||
|
|
7db6835173 | ||
|
|
7fc9304834 | ||
|
|
b6e9f38bac | ||
|
|
3320a8d027 |
@@ -1,3 +1,17 @@
|
|||||||
|
# v1.3.1 (2017-01-08)
|
||||||
|
|
||||||
|
- Fixed install of zip app downloads with sub-directories.
|
||||||
|
|
||||||
|
# v1.3.0 (2017-01-01)
|
||||||
|
|
||||||
|
- Updated README versioning documentation.
|
||||||
|
- Removed CHANGELOG.md (use CHANGES.md instead).
|
||||||
|
|
||||||
|
# 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.
|
||||||
15
README.md
15
README.md
@@ -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
|
||||||
|
|
||||||
|
[](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.3.1
|
||||||
|
|
||||||
Master Version (unstable):
|
Master Version (unstable):
|
||||||
|
|
||||||
@@ -153,8 +158,8 @@ project is built upon the functions found in the `lib` folder. See the
|
|||||||
|
|
||||||
Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
|
Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
|
||||||
|
|
||||||
- Patch (x.y.Z) - Incremented for small, backwards compatible bug fixes.
|
- Patch (x.y.Z) - Incremented for small, backwards compatible, bug fixes.
|
||||||
- Minor (x.Y.z) - Incremented for new, backwards compatible public API enhancements and/or bug fixes.
|
- Minor (x.Y.z) - Incremented for new, backwards compatible, public API enhancements/fixes.
|
||||||
- Major (X.y.z) - Incremented for any backwards incompatible public API changes.
|
- Major (X.y.z) - Incremented for any backwards incompatible public API changes.
|
||||||
|
|
||||||
# Code of Conduct
|
# Code of Conduct
|
||||||
@@ -169,11 +174,11 @@ Read [CONTRIBUTING](CONTRIBUTING.md) for details.
|
|||||||
# License
|
# License
|
||||||
|
|
||||||
Copyright (c) 2016 [Alchemists](https://www.alchemists.io).
|
Copyright (c) 2016 [Alchemists](https://www.alchemists.io).
|
||||||
Read the [LICENSE](LICENSE.md) for details.
|
Read [LICENSE](LICENSE.md) for details.
|
||||||
|
|
||||||
# History
|
# History
|
||||||
|
|
||||||
Read the [CHANGELOG](CHANGELOG.md) for details.
|
Read [CHANGES](CHANGES.md) for details.
|
||||||
Built with [Bashsmith](https://github.com/bkuhlmann/bashsmith).
|
Built with [Bashsmith](https://github.com/bkuhlmann/bashsmith).
|
||||||
|
|
||||||
# Credits
|
# Credits
|
||||||
|
|||||||
@@ -191,6 +191,7 @@ install_zip_app() {
|
|||||||
printf "Preparing...\n"
|
printf "Preparing...\n"
|
||||||
cd "$MAC_OS_WORK_PATH"
|
cd "$MAC_OS_WORK_PATH"
|
||||||
unzip -q "$download_file"
|
unzip -q "$download_file"
|
||||||
|
find . -type d -name "$app_name" -print -exec cp -pR {} . > /dev/null 2>&1 \;
|
||||||
)
|
)
|
||||||
|
|
||||||
install_app "$MAC_OS_WORK_PATH" "$app_name"
|
install_app "$MAC_OS_WORK_PATH" "$app_name"
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user