Skip to content

Commit

Permalink
Bump version and update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduytran0 committed Sep 21, 2024
1 parent f90bb51 commit 6574fdd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LiveContainerSwiftUI/LCWebView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ struct LCWebView: View {
@EnvironmentObject private var sharedModel : SharedModel

init(url: Binding<URL>, apps: Binding<[LCAppModel]>, hiddenApps: Binding<[LCAppModel]>, isPresent: Binding<Bool>) {
self.webView = WebView()
self._webView = State(initialValue: WebView())
self._url = url
self._apps = apps
self._isPresent = isPresent
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@ make package
- If no app is selected, it loads LiveContainerUI.

### LiveContainerUI
- LiveContainer's default implementation of app manager, tweak manager and settings UI.
- If you're making a mod loader, you can provide your own.
- LiveContainer's default implementation of app manager, tweak manager and settings UI.
- If you're making something like a mod loader, you can provide your own.
- This is obsolete and will be removed.

### LiveContainerSwiftUI
- SwiftUI rewrite of LiveContainerUI (by @hugeBlack)

### TweakLoader
- A simple tweak injector, which loads CydiaSubstrate and load tweaks.
Expand Down Expand Up @@ -84,7 +88,6 @@ To install tweaks, you can use the built-in tweak manager in LiveContainer, whic
- Only one guest app can run at a time. This is much more like 3 apps limit where you have to disable an app to run another (switching between app in LiveContainer is instant).
- Remote push notification might not work. ~~If you have a paid developer account then you don't even have to use LiveContainer~~
- Querying custom URL schemes might not work(?)
- File picker might be broken for unknown reasons.

## TODO
- Isolate Keychain per app
Expand All @@ -100,3 +103,5 @@ To install tweaks, you can use the built-in tweak manager in LiveContainer, whic
- [MBRoundProgressView](https://gist.github.com/saturngod/1224648)
- @haxi0 for icon
- @Vishram1123 for the initial shortcut implementation.
- @hugeBlack for SwiftUI contribution
- @Staubgeborener for automatic AltStore/SideStore source updater
4 changes: 2 additions & 2 deletions Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.1.2</string>
<string>3.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand All @@ -61,7 +61,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>2.1.2</string>
<string>3.0.0</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.games</string>
<key>LSApplicationQueriesSchemes</key>
Expand Down

0 comments on commit 6574fdd

Please sign in to comment.