Skip to content

Commit

Permalink
Merge branch 'grahampugh:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
joeschlimmer-ic authored Dec 3, 2021
2 parents 38af1a6 + 5989e72 commit ed79604
Show file tree
Hide file tree
Showing 8 changed files with 192 additions and 131 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,5 @@ content/
softwareupdate.plist
temp.sh
DEPNotify.*
__MACOSX/*

18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@

No date

## [25.0]

23.11.2021

- Determines free space better by checking free and purgeable space (partial fix for #152; thanks to Pico in MacAdmins Slack).
- Uses exit traps to clean up after all abnormal exits (fixes #140, #141; thanks to @ryangball).
- Adds `-nobrowse` to `hdiutil` to prevent mounted images appearing on the desktop (thanks to @ryangball).
- Allows 5 password attempts (fixes #159).
- Adds dialog to show how much time is left in the power check (#144; thanks to @dan-snelson).
- Some dialog changes, to replace the word "reinstall", which some people have found confusing, with "install" (addresses #149).
- Changed log location to the `$workdir` so that it persists after an upgrade, and also so it is wiped if using the `--cleanup-after-use` option (fixes #161).
- Remove check for membership of `staff` group for Apple Silicon Macs, since Volume Ownership is already checked it's not necessary, and was preventing non-admin AD users from proceeding (fixes #166).
- Re-order some initial statements to ensure that the chosen $workdir has been created before DEPNotify is downloaded and the log file is determined (fixes #165).
- Some minot changes to the Dutch translation (addresses #164, thanks @Alitekawi).

## [24.1]

27.10.2021
Expand Down Expand Up @@ -366,7 +381,8 @@ Thanks to '@ahousseini' for various contributions to this release

- Initial version. Expects a manual choice of installer from `installinstallmacos.py`.

[untagged]: https://github.com/grahampugh/erase-install/compare/v24.1...HEAD
[untagged]: https://github.com/grahampugh/erase-install/compare/v25.0...HEAD
[25.0]: https://github.com/grahampugh/erase-install/compare/v24.1...v25.0
[24.1]: https://github.com/grahampugh/erase-install/compare/v24.0...v24.1
[24.0]: https://github.com/grahampugh/erase-install/compare/v0.23.0...v24.0
[0.22.0]: https://github.com/grahampugh/erase-install/compare/v0.21.0...v0.22.0
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ depnotify:
curl -L "$(DEPNOTIFY_URL)" -o "$(DEPNOTIFY_ZIPPATH)"
unzip -o "$(DEPNOTIFY_ZIPPATH)" -d "$(PKG_ROOT_DEPNOTIFY)/Applications/Utilities"
chmod -R 755 "$(PKG_ROOT_DEPNOTIFY)/Applications/Utilities"
rm -Rf "$(PKG_ROOT_DEPNOTIFY)/Applications/Utilities/__MACOSX"

@echo "Making package in $(PKG_BUILD_DEPNOTIFY) directory"
cd $(CURDIR)/pkg && $(MUNKIPKG) erase-install-depnotify
open $(PKG_BUILD_DEPNOTIFY)

rm -Rf "$(PKG_ROOT_DEPNOTIFY)/Applications/Utilities/__MACOSX"


.PHONY : clean
Expand Down
Binary file removed __MACOSX/._DEPNotify.app
Binary file not shown.
295 changes: 169 additions & 126 deletions erase-install.sh

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pkg/erase-install-depnotify/build-info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>suppress_bundle_relocation</key>
<true/>
<key>version</key>
<string>24.1</string>
<string>25.0</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion pkg/erase-install-nopython/build-info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>suppress_bundle_relocation</key>
<true/>
<key>version</key>
<string>24.1</string>
<string>25.0</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion pkg/erase-install/build-info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>suppress_bundle_relocation</key>
<true/>
<key>version</key>
<string>24.1</string>
<string>25.0</string>
</dict>
</plist>

0 comments on commit ed79604

Please sign in to comment.