File tree 6 files changed +23
-17
lines changed
6 files changed +23
-17
lines changed Original file line number Diff line number Diff line change 530
530
INFOPLIST_FILE = BlackHole/BlackHole.plist;
531
531
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Audio/Plug-Ins/HAL";
532
532
MACOSX_DEPLOYMENT_TARGET = 10.10;
533
- MARKETING_VERSION = 0.6.0 ;
533
+ MARKETING_VERSION = 0.6.1 ;
534
534
PRODUCT_BUNDLE_IDENTIFIER = audio.existential.BlackHole;
535
535
PRODUCT_NAME = "$(TARGET_NAME)";
536
536
WRAPPER_EXTENSION = driver;
550
550
INFOPLIST_FILE = BlackHole/BlackHole.plist;
551
551
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Audio/Plug-Ins/HAL";
552
552
MACOSX_DEPLOYMENT_TARGET = 10.10;
553
- MARKETING_VERSION = 0.6.0 ;
553
+ MARKETING_VERSION = 0.6.1 ;
554
554
PRODUCT_BUNDLE_IDENTIFIER = audio.existential.BlackHole;
555
555
PRODUCT_NAME = "$(TARGET_NAME)";
556
556
WRAPPER_EXTENSION = driver;
570
570
INFOPLIST_FILE = BlackHole/BlackHole.plist;
571
571
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Audio/Plug-Ins/HAL";
572
572
MACOSX_DEPLOYMENT_TARGET = 10.10;
573
- MARKETING_VERSION = 0.6.0 ;
573
+ MARKETING_VERSION = 0.6.1 ;
574
574
PRODUCT_BUNDLE_IDENTIFIER = audio.existential.BlackHole;
575
575
PRODUCT_NAME = "$(TARGET_NAME)";
576
576
WRAPPER_EXTENSION = driver;
Original file line number Diff line number Diff line change @@ -17,14 +17,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
17
17
18
18
### Changed
19
19
20
- ## [ 0.6.0] - Mar 22, 2024
20
+ ## [ 0.6.1] - 2025-02-06
21
+ - Updated installer to force a computer reboot as recommended by Apple.
22
+ - Updated create_installer.sh script.
23
+
24
+ ### Changed
25
+
26
+
27
+ ## [ 0.6.0] - 2024-03-22
21
28
22
29
## Added
23
- Added precompiler constant for kCanBeDefaultDevice and kCanBeDefaultSystemDevice.
30
+ - Added precompiler constant for kCanBeDefaultDevice and kCanBeDefaultSystemDevice.
24
31
25
32
## Changed
26
- Updated postinstall script to use 'kill' instead of 'kickstart'.
27
- Updated strings for model name,
33
+ - Updated postinstall script to use 'kill' instead of 'kickstart'.
34
+ - Updated strings for model name,
28
35
29
36
30
37
## [ 0.5.1] - 2023-11-06
Original file line number Diff line number Diff line change 1
- #! /usr/bin/env bash
1
+ #! /usr/bin/env sh
2
+ set -euo pipefail
2
3
3
4
# Creates installer for different channel versions.
4
5
# Run this script from the local BlackHole repo's root directory.
24
25
25
26
version=` cat VERSION`
26
27
27
- # Version Validation
28
+ # Version Validation6
28
29
if [ -z " $version " ]; then
29
30
echo " Could not find version number. VERSION file is missing from repo root or is empty."
30
31
exit 1
31
32
fi
32
33
33
- for channels in 2; do # 16 64 128 256; do
34
+ for channels in 2 16 64 128 256; do
34
35
# Env
35
36
ch=$channels " ch"
36
37
driverVartiantName=$driverName$ch
@@ -100,7 +101,7 @@ for channels in 2; do #16 64 128 256; do
100
101
<choice id=\" $bundleID \" visible='true' title=\" $driverName $ch \" start_selected='true'>
101
102
<pkg-ref id=\" $bundleID \" />
102
103
</choice>
103
- <pkg-ref id=\" $bundleID \" version=\" $version \" onConclusion='none '>$driverName .pkg</pkg-ref>
104
+ <pkg-ref id=\" $bundleID \" version=\" $version \" onConclusion='RequireRestart '>$driverName .pkg</pkg-ref>
104
105
</installer-gui-script>" >> distribution.xml
105
106
106
107
# Build
Original file line number Diff line number Diff line change 1
- #! /bin/zsh
1
+ #! /bin/sh
2
2
3
- sudo chown -R root:wheel /Library/Audio/Plug-Ins/HAL
4
- sudo killall -9 coreaudiod
3
+ sudo chown -R root:wheel /Library/Audio/Plug-Ins/HAL/BlackHole* ch.driver
Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /bin/sh
2
2
3
3
sudo mkdir -p /Library/Audio/Plug-Ins/HAL
4
4
sudo chown root:wheel /Library/Audio/Plug-Ins/HAL
5
- sudo chown -R root:wheel /Library/Audio/Plug-Ins/HAL/BlackHole* ch.driver
Original file line number Diff line number Diff line change 1
- 0.6.0
1
+ 0.6.1
You can’t perform that action at this time.
0 commit comments