diff --git a/OC/config.plist b/OC/config.plist index cbac44b..e10ed1e 100644 --- a/OC/config.plist +++ b/OC/config.plist @@ -1609,6 +1609,8 @@ ClearScreenOnModeSwitch + ConsoleFont + TerminusCore ConsoleMode DirectGopRendering @@ -1678,6 +1680,8 @@ OSInfo + PciIo + UnicodeCollation diff --git a/README.md b/README.md index ec25b57..1da8001 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,13 @@ Other accessories: ## macOS -macOS Ventura version 13.3.1 (22E261) with FileVault 2 enabled. +macOS Ventura version 13.4 (22F66) with FileVault 2 enabled. You may find great installation guide [here](https://dortania.github.io/OpenCore-Install-Guide/installer-guide/). ## OpenCore -- [OpenCore 0.9.2](https://github.com/acidanthera/OpenCorePkg/releases/tag/0.9.2) +- [OpenCore 0.9.3](https://github.com/acidanthera/OpenCorePkg/releases/tag/0.9.3) - [Dortania OpenCore Install Guide](https://dortania.github.io/OpenCore-Install-Guide/) - [Desktop Coffee Lake](https://dortania.github.io/OpenCore-Install-Guide/config.plist/coffee-lake.html) - [OpenCanopy](https://dortania.github.io/OpenCore-Post-Install/cosmetic/gui.html) @@ -109,11 +109,11 @@ Resulting [USBMap.kext](Kexts/USBMap.kext) is used. ### Kext -- [AppleALC 1.8.2](https://github.com/acidanthera/AppleALC/releases/tag/1.8.2) +- [AppleALC 1.8.3](https://github.com/acidanthera/AppleALC/releases/tag/1.8.3) - [IntelMausi 1.0.7](https://github.com/acidanthera/IntelMausi/releases/tag/1.0.7) -- [Lilu 1.6.5](https://github.com/acidanthera/Lilu/releases/tag/1.6.5) -- [VirtualSMC 1.3.1](https://github.com/acidanthera/VirtualSMC/releases/tag/1.3.1) (`SMCProcessor.kext`, `SMCSuperIO.kext`) -- [WhateverGreen 1.6.4](https://github.com/acidanthera/WhateverGreen/releases/tag/1.6.4) +- [Lilu 1.6.6](https://github.com/acidanthera/Lilu/releases/tag/1.6.6) +- [VirtualSMC 1.3.2](https://github.com/acidanthera/VirtualSMC/releases/tag/1.3.2) (`SMCProcessor.kext`, `SMCSuperIO.kext`) +- [WhateverGreen 1.6.5](https://github.com/acidanthera/WhateverGreen/releases/tag/1.6.5) ### Resources diff --git a/create-efi.sh b/create-efi.sh index 426a6ce..0f9052f 100755 --- a/create-efi.sh +++ b/create-efi.sh @@ -30,12 +30,12 @@ function run-on-trap() { } # Package versions. Set desired versions here. -readonly OPENCORE_VERSION="0.9.2" -readonly KEXT_APPLEALC_VERSION="1.8.2" +readonly OPENCORE_VERSION="0.9.3" +readonly KEXT_APPLEALC_VERSION="1.8.3" readonly KEXT_INTELMAUSI_VERSION="1.0.7" -readonly KEXT_LILU_VERSION="1.6.5" -readonly KEXT_VIRTUALSMC_VERSION="1.3.1" -readonly KEXT_WHATEVERGREEN_VERSION="1.6.4" +readonly KEXT_LILU_VERSION="1.6.6" +readonly KEXT_VIRTUALSMC_VERSION="1.3.2" +readonly KEXT_WHATEVERGREEN_VERSION="1.6.5" # Installation settings # Any non-zero value turns on local file copy, instead of downloading. diff --git a/test/create-efi.bats b/test/create-efi.bats index beaaece..95cbb8f 100644 --- a/test/create-efi.bats +++ b/test/create-efi.bats @@ -83,6 +83,8 @@ function replace_dummy_values() { assert [ -d ./EFI/OC/Resources ] assert [ -d ./EFI/OC/Resources/Audio ] assert [ -d ./EFI/OC/Resources/Font ] + assert [ -e ./EFI/OC/Resources/Font/Terminus.hex ] + assert [ -e ./EFI/OC/Resources/Font/TerminusCore.hex ] assert [ -d ./EFI/OC/Resources/Image/Acidanthera ] assert [ -d ./EFI/OC/Resources/Label ] assert [ -d ./EFI/OC/Tools ]