[PR #386] [MERGED] 3.3.0 #1083

Closed
opened 2026-03-03 15:38:28 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/LiveContainer/LiveContainer/pull/386
Author: @hugeBlack
Created: 3/14/2025
Status: Merged
Merged: 3/14/2025
Merged by: @hugeBlack

Base: mainHead: main


📝 Commits (10+)

  • 7bcbfcc fix #314, experimental support for Develop/Enterprise certs
  • cb6bec8 fix file picker fix not working in lc2, minor change to discovering app group
  • c9dee4a Install from url, show entitlements in jitless diagnose
  • bf8c051 fix #318, change fishhook to cydiasubstrate, fix some minor bugs
  • ae56dc6 fix #32, #318
  • 2639af1 impelement #320, add more diagnose for entitlement
  • 486044d support for JITStreamer-EB, fix #34
  • a382dd1 fix #332: use tailcall for dlsym hook
  • f700702 Fix #329: move LC_ID_DYLIB to the top like dylibify does
  • 9f28d6b Minor changes to Makefile before-package

📊 Changes

49 files changed (+2781 additions, -589 deletions)

View changed files

📝 LCSharedUtils.h (+0 -1)
📝 LCSharedUtils.m (+26 -42)
📝 LiveContainerSwiftUI/AppDelegate.swift (+40 -3)
LiveContainerSwiftUI/Assets.xcassets/32BitBadgeColor.colorset/Contents.json (+20 -0)
📝 LiveContainerSwiftUI/LCAppBanner.swift (+60 -19)
📝 LiveContainerSwiftUI/LCAppInfo.h (+7 -3)
📝 LiveContainerSwiftUI/LCAppInfo.m (+128 -21)
📝 LiveContainerSwiftUI/LCAppListView.swift (+140 -8)
📝 LiveContainerSwiftUI/LCAppModel.swift (+110 -28)
📝 LiveContainerSwiftUI/LCAppSettingsView.swift (+68 -117)
📝 LiveContainerSwiftUI/LCContainerView.swift (+5 -5)
LiveContainerSwiftUI/LCDownloadView.swift (+188 -0)
📝 LiveContainerSwiftUI/LCJITLessDiagnoseView.swift (+213 -58)
📝 LiveContainerSwiftUI/LCMachOUtils.m (+115 -22)
📝 LiveContainerSwiftUI/LCSettingsView.swift (+259 -125)
📝 LiveContainerSwiftUI/LCTabView.swift (+8 -1)
📝 LiveContainerSwiftUI/LCUtils.h (+6 -4)
📝 LiveContainerSwiftUI/LCUtils.m (+26 -8)
📝 LiveContainerSwiftUI/LCWebView.swift (+1 -1)
📝 LiveContainerSwiftUI/LiveContainerSwiftUI.xcodeproj/project.pbxproj (+4 -0)

...and 29 more files

📄 Description

Detail in #372


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/LiveContainer/LiveContainer/pull/386 **Author:** [@hugeBlack](https://github.com/hugeBlack) **Created:** 3/14/2025 **Status:** ✅ Merged **Merged:** 3/14/2025 **Merged by:** [@hugeBlack](https://github.com/hugeBlack) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`7bcbfcc`](https://github.com/LiveContainer/LiveContainer/commit/7bcbfcc63978378589412c2df198ac91ebd541d8) fix #314, experimental support for Develop/Enterprise certs - [`cb6bec8`](https://github.com/LiveContainer/LiveContainer/commit/cb6bec8dcb80802b49ad09bd90c5a297d6268130) fix file picker fix not working in lc2, minor change to discovering app group - [`c9dee4a`](https://github.com/LiveContainer/LiveContainer/commit/c9dee4a46babefcd4370c8e117328ee5f027ee6c) Install from url, show entitlements in jitless diagnose - [`bf8c051`](https://github.com/LiveContainer/LiveContainer/commit/bf8c0510e35d9663b7e07132379dd461eae14174) fix #318, change fishhook to cydiasubstrate, fix some minor bugs - [`ae56dc6`](https://github.com/LiveContainer/LiveContainer/commit/ae56dc6d9d1614a5c8faa6fec28fed1c9bf465af) fix #32, #318 - [`2639af1`](https://github.com/LiveContainer/LiveContainer/commit/2639af131e7c0e75bff97a8e4ba56020df23a9bb) impelement #320, add more diagnose for entitlement - [`486044d`](https://github.com/LiveContainer/LiveContainer/commit/486044d82f7b21937ef0795e2da8e90bea28c9d7) support for JITStreamer-EB, fix #34 - [`a382dd1`](https://github.com/LiveContainer/LiveContainer/commit/a382dd1367772fa34b8e2ad9d3db4db3d98d31a7) fix #332: use tailcall for dlsym hook - [`f700702`](https://github.com/LiveContainer/LiveContainer/commit/f70070297efe295d745ee8b29e3197e438ceb7d1) Fix #329: move LC_ID_DYLIB to the top like dylibify does - [`9f28d6b`](https://github.com/LiveContainer/LiveContainer/commit/9f28d6b480ca221c56304083366cfd861a06cedc) Minor changes to Makefile before-package ### 📊 Changes **49 files changed** (+2781 additions, -589 deletions) <details> <summary>View changed files</summary> 📝 `LCSharedUtils.h` (+0 -1) 📝 `LCSharedUtils.m` (+26 -42) 📝 `LiveContainerSwiftUI/AppDelegate.swift` (+40 -3) ➕ `LiveContainerSwiftUI/Assets.xcassets/32BitBadgeColor.colorset/Contents.json` (+20 -0) 📝 `LiveContainerSwiftUI/LCAppBanner.swift` (+60 -19) 📝 `LiveContainerSwiftUI/LCAppInfo.h` (+7 -3) 📝 `LiveContainerSwiftUI/LCAppInfo.m` (+128 -21) 📝 `LiveContainerSwiftUI/LCAppListView.swift` (+140 -8) 📝 `LiveContainerSwiftUI/LCAppModel.swift` (+110 -28) 📝 `LiveContainerSwiftUI/LCAppSettingsView.swift` (+68 -117) 📝 `LiveContainerSwiftUI/LCContainerView.swift` (+5 -5) ➕ `LiveContainerSwiftUI/LCDownloadView.swift` (+188 -0) 📝 `LiveContainerSwiftUI/LCJITLessDiagnoseView.swift` (+213 -58) 📝 `LiveContainerSwiftUI/LCMachOUtils.m` (+115 -22) 📝 `LiveContainerSwiftUI/LCSettingsView.swift` (+259 -125) 📝 `LiveContainerSwiftUI/LCTabView.swift` (+8 -1) 📝 `LiveContainerSwiftUI/LCUtils.h` (+6 -4) 📝 `LiveContainerSwiftUI/LCUtils.m` (+26 -8) 📝 `LiveContainerSwiftUI/LCWebView.swift` (+1 -1) 📝 `LiveContainerSwiftUI/LiveContainerSwiftUI.xcodeproj/project.pbxproj` (+4 -0) _...and 29 more files_ </details> ### 📄 Description Detail in #372 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 15:38:28 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/LiveContainer#1083
No description provided.