Skip to content

Commit 97ca80b

Browse files
committed
v0.9.4 - Better GPU checker, auto AP img download
1 parent 3896bc8 commit 97ca80b

File tree

18 files changed

+1315
-621
lines changed

18 files changed

+1315
-621
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,5 @@ INTERNAL_CHECKLIST.pdf
3232
INTERNAL_CHECKLIST.txt
3333
internal/*
3434
resources/.webversion
35+
ovmf/OVMF_CODE.fd
36+
ovmf/OVMF_VARS.fd

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.3
1+
0.9.4

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# ultimate-macOS-KVM
22

3-
### v0.9.3
3+
### v0.9.4
44

55
Helping you build the ultimate macOS virtual machine, powered by KVM.
66

7-
*[What's new?](https://github.com/Coopydood/ultimate-macOS-KVM/blob/main/docs/changelogs/v0-9-3.md)*
7+
*[What's new?](https://github.com/Coopydood/ultimate-macOS-KVM/blob/main/docs/changelogs/v0-9-4.md)*
88

99
[![GitHub](https://img.shields.io/github/license/Coopydood/ultimate-macOS-KVM?label=Licence&logo=unlicense&logoColor=white&style=for-the-badge)](https://github.com/Coopydood/ultimate-macOS-KVM/blob/main/LICENSE) [![GitHub repo size](https://img.shields.io/github/repo-size/Coopydood/ultimate-macOS-KVM?label=Size&logo=envoy-proxy&logoColor=white&style=for-the-badge)](https://github.com/Coopydood/ultimate-macOS-KVM) [![Discord](https://img.shields.io/discord/574943603466436628?color=7d86ff&label=Discord&logo=discord&logoColor=white&style=for-the-badge)](https://sl.coopydood.com/discord)
1010

docs/changelogs/v0-9-4.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## v0.9.4
2+
3+
### Minor update • 11/08/2023
4+
5+
This update includes the following features / fixes / changes:
6+
7+
- Smarter GPU checker
8+
- Larger GPU support database
9+
- Minor XML converter patches
10+
- Changed default domain XML from network bridge to NAT
11+
- Begin work on backup and restore assistant
12+
- AutoPilot now seamlessly downloads the correct base system as part of the automated flow
13+
- Fixed an issue where AutoPilot would copy all *.fd resources files
14+
- Fixed an issue where AutoPilot would close unexpectedly
15+
- AutoPilot no longer makes a junk CDN control file
16+
- Begin acknowledging macOS Sonoma's existence in scripts
17+
- *thump*
18+
19+
To see individual code changes, visit the project's commits page at <https://github.com/Coopydood/ultimate-macOS-KVM/commits/main>
20+
21+
Remember, commits by Coopydood will always be signed as **4CD28348A3DD016F** or GitHub's public key.

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
global apFilePath
3434

3535
detectChoice = 1
36-
latestOSName = "Ventura"
37-
latestOSVer = "13"
36+
latestOSName = "Sonoma"
37+
latestOSVer = "14"
3838
runs = 0
3939
apFilePath = ""
4040
procFlow = 1

resources/.upgrade

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
0.9.0
22
0.9.1
33
0.9.2
4-
0.9.3
4+
0.9.3
5+
0.9.4

resources/UPGRADEPATH

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
0.9.0
22
0.9.1
33
0.9.2
4-
0.9.3
4+
0.9.3
5+
0.9.4

resources/baseDomain

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@
147147
<master startport="4"/>
148148
<address type="pci" domain="0x0000" bus="0x00" slot="0x1d" function="0x2"/>
149149
</controller>
150-
<interface type="bridge">
150+
<interface type="network">
151151
<mac address="$USR_MAC_ADDRESS"/>
152-
<source bridge="virbr0"/>
152+
<source network="default"/>
153153
<model type="$USR_NETWORK_ADAPTER"/>
154154
<address type="pci" domain="0x0000" bus="0x09" slot="0x02" function="0x0"/>
155155
</interface>

0 commit comments

Comments
 (0)