Skip to content

Commit 2331c50

Browse files
committed
Merge branch 'main' of https://github.com/rooootdev/lara
2 parents 8c5214c + f1813cb commit 2331c50

8 files changed

Lines changed: 404 additions & 233 deletions

File tree

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"scale" : "1x"
6+
},
7+
{
8+
"appearances" : [
9+
{
10+
"appearance" : "luminosity",
11+
"value" : "light"
12+
}
13+
],
14+
"filename" : "solarium_light.jpg",
15+
"idiom" : "universal",
16+
"scale" : "1x"
17+
},
18+
{
19+
"appearances" : [
20+
{
21+
"appearance" : "luminosity",
22+
"value" : "dark"
23+
}
24+
],
25+
"filename" : "solarium_dark.jpg",
26+
"idiom" : "universal",
27+
"scale" : "1x"
28+
},
29+
{
30+
"idiom" : "universal",
31+
"scale" : "2x"
32+
},
33+
{
34+
"appearances" : [
35+
{
36+
"appearance" : "luminosity",
37+
"value" : "light"
38+
}
39+
],
40+
"idiom" : "universal",
41+
"scale" : "2x"
42+
},
43+
{
44+
"appearances" : [
45+
{
46+
"appearance" : "luminosity",
47+
"value" : "dark"
48+
}
49+
],
50+
"idiom" : "universal",
51+
"scale" : "2x"
52+
},
53+
{
54+
"idiom" : "universal",
55+
"scale" : "3x"
56+
},
57+
{
58+
"appearances" : [
59+
{
60+
"appearance" : "luminosity",
61+
"value" : "light"
62+
}
63+
],
64+
"idiom" : "universal",
65+
"scale" : "3x"
66+
},
67+
{
68+
"appearances" : [
69+
{
70+
"appearance" : "luminosity",
71+
"value" : "dark"
72+
}
73+
],
74+
"idiom" : "universal",
75+
"scale" : "3x"
76+
}
77+
],
78+
"info" : {
79+
"author" : "xcode",
80+
"version" : 1
81+
}
82+
}
142 KB
Loading
165 KB
Loading

lara/views/tweaks/TweaksView.swift

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,41 +15,51 @@ struct TweaksView: View {
1515
NavigationStack {
1616
List {
1717
Section(header: HeaderLabel(text: "SpringBoard", icon: "house")) {
18-
NavigationLink("DarkBoard", destination: DarkBoardView())
19-
NavigationLink("Liquid Glass", destination: LGView())
2018
NavigationLink("RemoteCall Customizer", destination: RemoteView(mgr: mgr))
2119
.disabled(!mgr.rcready)
20+
NavigationLink("DarkBoard", destination: DarkBoardView())
21+
.disabled(true)
22+
NavigationLink("Liquid Glass", destination: LiquidGlassView())
23+
.disabled(!mgr.vfsready)
24+
}
25+
26+
Section(header: HeaderLabel(text: "Lock Screen", icon: "lock")) {
27+
NavigationLink("Passcode Theme", destination: PasscodeView(mgr: mgr))
28+
.disabled(!mgr.sbxready)
29+
}
30+
31+
Section(header: HeaderLabel(text: "Apps", icon: "app")) {
32+
NavigationLink("Card Overwrite", destination: CardView())
33+
.disabled(!mgr.vfsready)
34+
NavigationLink("3 App Bypass", destination: AppsView(mgr: mgr))
35+
.disabled(!mgr.sbxready)
36+
NavigationLink("Unblacklist", destination: WhitelistView())
37+
.disabled(!mgr.sbxready)
38+
NavigationLink("JIT Enabler", destination: JitView())
39+
.disabled(!mgr.sbxready)
2240
}
2341

2442
Section(header: HeaderLabel(text: "User Interface", icon: "eye")) {
2543
NavigationLink("dirtyZero", destination: ZeroView(mgr: mgr))
2644
.disabled(!mgr.vfsready)
2745
NavigationLink("MobileGestalt", destination: GestaltView())
2846
.disabled(!mgr.sbxready)
29-
NavigationLink("Card Overwrite", destination: CardView())
3047
NavigationLink("Font Overwrite", destination: FontPicker(mgr: mgr))
3148
.disabled(!mgr.vfsready)
32-
NavigationLink("Passcode Theme", destination: PasscodeView(mgr: mgr))
33-
.disabled(!mgr.sbxready)
3449
NavigationLink("SystemColor Patcher", destination: SystemColor(mgr: mgr))
3550
.disabled(!mgr.sbxready || !mgr.vfsready)
3651
}
3752

3853
Section(header: HeaderLabel(text: "System", icon: "gear")) {
39-
NavigationLink("3 App Bypass", destination: AppsView(mgr: mgr))
40-
.disabled(!mgr.sbxready)
41-
NavigationLink("Unblacklist", destination: WhitelistView())
42-
.disabled(!mgr.sbxready)
4354
NavigationLink("VarClean", destination: VarCleanView())
4455
.disabled(!mgr.sbxready)
45-
NavigationLink("JIT Enabler", destination: JitView())
46-
.disabled(!mgr.sbxready)
4756
NavigationLink("Custom Overwrite", destination: CustomView(mgr: mgr))
4857
.disabled(!mgr.vfsready)
4958
}
5059

5160
NavigationLink("Extra Tools", destination: ToolsView())
5261
}
62+
.disabled(!mgr.dsready)
5363
.navigationTitle("Tweaks")
5464
.toolbar {
5565
if selectedlogsdisplaymode == .toolbar {

lara/views/tweaks/springboard/LGView.swift

Lines changed: 0 additions & 165 deletions
This file was deleted.

0 commit comments

Comments
 (0)