Skip to content
This repository was archived by the owner on Aug 2, 2025. It is now read-only.

Commit 33141fc

Browse files
committed
0.0.8 rc
1 parent 1c2447f commit 33141fc

6 files changed

Lines changed: 38 additions & 13 deletions

File tree

TrollBox.xcodeproj/project.pbxproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,13 @@
150150
path = NoCamSound;
151151
sourceTree = "<group>";
152152
};
153+
F10BAC7E295BE904007387FF /* Icons */ = {
154+
isa = PBXGroup;
155+
children = (
156+
);
157+
path = Icons;
158+
sourceTree = "<group>";
159+
};
153160
F1351722294D3A1E005C8DE3 /* CarrierChanger */ = {
154161
isa = PBXGroup;
155162
children = (
@@ -329,6 +336,7 @@
329336
F1ECFC4C295522CC007E24CC /* Themer */ = {
330337
isa = PBXGroup;
331338
children = (
339+
F10BAC7E295BE904007387FF /* Icons */,
332340
F1ECFC7329552E3B007E24CC /* Badger */,
333341
);
334342
path = Themer;

TrollBox.xcodeproj/xcuserdata/c22.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,21 @@
2020
landmarkType = "24">
2121
</BreakpointContent>
2222
</BreakpointProxy>
23+
<BreakpointProxy
24+
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
25+
<BreakpointContent
26+
uuid = "D4305D7D-E3EF-4D5A-B1C4-0F2807FC8208"
27+
shouldBeEnabled = "No"
28+
ignoreCount = "0"
29+
continueAfterRunningActions = "No"
30+
filePath = "TrollBox/Tools/ToolsView.swift"
31+
startingColumnNumber = "9223372036854775807"
32+
endingColumnNumber = "9223372036854775807"
33+
startingLineNumber = "25"
34+
endingLineNumber = "25"
35+
landmarkName = "body"
36+
landmarkType = "24">
37+
</BreakpointContent>
38+
</BreakpointProxy>
2339
</Breakpoints>
2440
</Bucket>

TrollBox/FCView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ let fonts = [
3030
]
3131

3232
struct FCView: View {
33-
@State private var message = "Pick a font - Make sure that Bold Text is turned off in settings"
33+
@State private var message = "Pick a font - Make sure that Bold Text is turned off in settings - Warning ! Using this feature on lower than iOS 15 will not roll back with a reboot"
3434
var body: some View {
3535
VStack {
3636
Text(message).padding(16)

TrollBox/Tools/NoCamSound/NoCamSoundView.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ struct NoCamSoundView: View {
2424
.padding()
2525
}
2626
Text(message).padding(16)
27+
Text("Using this feature on lower than iOS 15 will not roll back with a reboot")
2728
}.onAppear {
2829
if UserDefaults.standard.bool(forKey: "AutoRun") == true {
2930
ac()

TrollBox/Tools/OtherTools/OtherView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ struct OtherView: View {
106106
)
107107
}
108108
}
109-
Section(header: Text("Show an iPad only feature in you're control center"), footer: Text("Please remember to add it trough Settings -> Control Center")) {
109+
Section(header: Text("Show an iPad only feature in you're control center"), footer: Text("Please remember to add it through Settings -> Control Center")) {
110110
Button("Show The Mute Switch In Control Center") {
111111
showingAlert.toggle()
112112
writeToFileWithContents(contents: "<?xml version=\"1.0\" encoding=\"UTF-8\"?> <!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\"> <plist version=\"1.0\"> <dict> <key>SBIconVisibility</key> <true/> </dict> </plist>", filepath: "/var/Managed Preferences/mobile/com.apple.control-center.MuteModule.plist")

TrollBox/Tools/ToolsView.swift

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ struct ToolsView: View {
2222
Text("Passcode Themer")
2323
}
2424
}
25-
NavigationLink(destination: CarrierNameChangerView()) {
26-
HStack {
27-
Image(systemName: "network")
28-
.resizable()
29-
.aspectRatio(contentMode: .fit)
30-
.frame(width: 24, height: 24)
31-
.foregroundColor(.primary)
32-
Text("Carrier Changer")
33-
}
34-
}
25+
// NavigationLink(destination: CarrierNameChangerView()) {
26+
// HStack {
27+
// Image(systemName: "network")
28+
// .resizable()
29+
// .aspectRatio(contentMode: .fit)
30+
// .frame(width: 24, height: 24)
31+
// .foregroundColor(.primary)
32+
// Text("Carrier Changer")
33+
// }
34+
// }
3535
NavigationLink(destination: WalSetView()) {
3636
HStack {
3737
Image(systemName: "wand.and.rays")
@@ -94,7 +94,7 @@ struct ToolsView: View {
9494
}
9595
NavigationLink(destination: NoCamSoundView()) {
9696
HStack {
97-
Image(systemName: "camera.shutter.button")
97+
Image(systemName: "camera")
9898
.resizable()
9999
.aspectRatio(contentMode: .fit)
100100
.frame(width: 24, height: 24)

0 commit comments

Comments
 (0)