Skip to content

Commit

Permalink
Merge branch 'utmapp:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Mx-Iris authored Dec 16, 2023
2 parents dacf074 + 62bd84c commit c133151
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,9 @@ jobs:
LAUNCHER_PROFILE_DATA: ${{ vars.LAUNCHER_PROFILE_DATA }}
LAUNCHER_PROFILE_UUID: ${{ vars.LAUNCHER_PROFILE_UUID }}
- name: Install appdmg
run: npm install -g appdmg
run: |
python3 -m pip install setuptools
npm install -g appdmg
- name: Download Artifact
uses: actions/download-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions Build.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
// Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974

MARKETING_VERSION = 4.4.4
CURRENT_PROJECT_VERSION = 92
MARKETING_VERSION = 4.4.5
CURRENT_PROJECT_VERSION = 94

// Codesigning settings defined optionally, see Documentation/iOSDevelopment.md
#include? "CodeSigning.xcconfig"
Expand Down
2 changes: 1 addition & 1 deletion Services/UTMJailbreak.m
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ bool jb_spawn_ptrace_child(int argc, char **argv) {
return false;
}
childArgv[0] = argv[0];
if ((ret = posix_spawnp(&pid, argv[0], NULL, NULL, (void *)childArgv, (void *)environ)) != 0) {
if ((ret = posix_spawnp(&pid, argv[0], NULL, NULL, (void *)childArgv, NULL)) != 0) {
return false;
}
return true;
Expand Down
2 changes: 1 addition & 1 deletion patches/sources
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ VIRGLRENDERER_COMMIT="dc039d9ecd74fc671a85bfbe7c4e4bc552b7b855"

# Decompiled Hypervisor for iOS
HYPERVISOR_REPO="https://github.com/utmapp/Hypervisor.git"
HYPERVISOR_COMMIT="b4eb0e00c03692016944fad3e8e3a6613839912e"
HYPERVISOR_COMMIT="bcec1a8b0cb3b07ecd0f81b33f26fa3048ffd307"

0 comments on commit c133151

Please sign in to comment.