[PR #260] [MERGED] 3.1.0 #1078

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

📋 Pull Request Information

Original PR: https://github.com/LiveContainer/LiveContainer/pull/260
Author: @hugeBlack
Created: 12/16/2024
Status: Merged
Merged: 12/16/2024
Merged by: @hugeBlack

Base: mainHead: main


📝 Commits (10+)

📊 Changes

68 files changed (+13312 additions, -1006 deletions)

View changed files

📝 .github/workflows/build.yml (+1 -1)
📝 LCSharedUtils.h (+5 -2)
📝 LCSharedUtils.m (+89 -55)
LiveContainerSwiftUI/AppDelegate.swift (+102 -0)
📝 LiveContainerSwiftUI/LCAppBanner.swift (+39 -19)
LiveContainerSwiftUI/LCAppDelegateSwiftUI.h (+0 -14)
LiveContainerSwiftUI/LCAppDelegateSwiftUI.m (+0 -45)
📝 LiveContainerSwiftUI/LCAppInfo.h (+16 -5)
📝 LiveContainerSwiftUI/LCAppInfo.m (+119 -32)
📝 LiveContainerSwiftUI/LCAppListView.swift (+63 -63)
📝 LiveContainerSwiftUI/LCAppModel.swift (+112 -9)
LiveContainerSwiftUI/LCAppPreferenceView.swift (+403 -0)
📝 LiveContainerSwiftUI/LCAppSettingsView.swift (+311 -93)
LiveContainerSwiftUI/LCContainer.swift (+136 -0)
LiveContainerSwiftUI/LCContainerView.swift (+268 -0)
LiveContainerSwiftUI/LCSelectContainerView.swift (+115 -0)
📝 LiveContainerSwiftUI/LCSettingsView.swift (+138 -49)
LiveContainerSwiftUI/LCSwiftBridge.h (+0 -18)
LiveContainerSwiftUI/LCSwiftBridge.m (+0 -34)
📝 LiveContainerSwiftUI/LCTabView.swift (+4 -6)

...and 48 more files

📄 Description

Detail: #230
Plus:

  1. Create up to 3 container for each app
  2. App preference like the one in iOS settings
  3. New file picker & local notification fix
  4. Force orientation lock
  5. Hide risky settings
  6. Game controller support

🔄 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/260 **Author:** [@hugeBlack](https://github.com/hugeBlack) **Created:** 12/16/2024 **Status:** ✅ Merged **Merged:** 12/16/2024 **Merged by:** [@hugeBlack](https://github.com/hugeBlack) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`726db94`](https://github.com/LiveContainer/LiveContainer/commit/726db94fbca382e950123389fe7e8977d792cfa2) zsign POC - [`d86a501`](https://github.com/LiveContainer/LiveContainer/commit/d86a501c89d4abf831c2b9f18632b0fd337b6307) new jitless mode & remove unused files - [`f3e9a42`](https://github.com/LiveContainer/LiveContainer/commit/f3e9a42a8836f4046d87857f925c0d25fb1c0af0) Sign Only On Expiration Option - [`49b7aec`](https://github.com/LiveContainer/LiveContainer/commit/49b7aec512875ce924dae4d7feb808f8db516f43) solve crash issue - [`f2bcee6`](https://github.com/LiveContainer/LiveContainer/commit/f2bcee6da4162a07c988f11d2396ede2e63b854a) rename esign - [`664a7e1`](https://github.com/LiveContainer/LiveContainer/commit/664a7e17ed7298c0bff3c027bd59e33d8bc3610d) Merge branch 'zsignTest' - [`b4d6bdb`](https://github.com/LiveContainer/LiveContainer/commit/b4d6bdb6d1512f556b44f42a5ba2cf097ab64993) fix zsign merge issues - [`2510ea5`](https://github.com/LiveContainer/LiveContainer/commit/2510ea5a6939ef3d4b03b84b28083f4b0ab2463f) fix app don't show up when signing failed - [`962e0ba`](https://github.com/LiveContainer/LiveContainer/commit/962e0ba318558dc76176ce98b659cf60fce032c3) maybe - [`11d8b7a`](https://github.com/LiveContainer/LiveContainer/commit/11d8b7a90e552f90e190fb71d115ce0ad2cd53a0) setObject debounce ### 📊 Changes **68 files changed** (+13312 additions, -1006 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build.yml` (+1 -1) 📝 `LCSharedUtils.h` (+5 -2) 📝 `LCSharedUtils.m` (+89 -55) ➕ `LiveContainerSwiftUI/AppDelegate.swift` (+102 -0) 📝 `LiveContainerSwiftUI/LCAppBanner.swift` (+39 -19) ➖ `LiveContainerSwiftUI/LCAppDelegateSwiftUI.h` (+0 -14) ➖ `LiveContainerSwiftUI/LCAppDelegateSwiftUI.m` (+0 -45) 📝 `LiveContainerSwiftUI/LCAppInfo.h` (+16 -5) 📝 `LiveContainerSwiftUI/LCAppInfo.m` (+119 -32) 📝 `LiveContainerSwiftUI/LCAppListView.swift` (+63 -63) 📝 `LiveContainerSwiftUI/LCAppModel.swift` (+112 -9) ➕ `LiveContainerSwiftUI/LCAppPreferenceView.swift` (+403 -0) 📝 `LiveContainerSwiftUI/LCAppSettingsView.swift` (+311 -93) ➕ `LiveContainerSwiftUI/LCContainer.swift` (+136 -0) ➕ `LiveContainerSwiftUI/LCContainerView.swift` (+268 -0) ➕ `LiveContainerSwiftUI/LCSelectContainerView.swift` (+115 -0) 📝 `LiveContainerSwiftUI/LCSettingsView.swift` (+138 -49) ➖ `LiveContainerSwiftUI/LCSwiftBridge.h` (+0 -18) ➖ `LiveContainerSwiftUI/LCSwiftBridge.m` (+0 -34) 📝 `LiveContainerSwiftUI/LCTabView.swift` (+4 -6) _...and 48 more files_ </details> ### 📄 Description Detail: #230 Plus: 1. Create up to 3 container for each app 2. App preference like the one in iOS settings 3. New file picker & local notification fix 4. Force orientation lock 5. Hide risky settings 6. Game controller support --- <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:27 +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#1078
No description provided.