Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 3ae302a

Browse files
committed
v1.0.1
1 parent c539642 commit 3ae302a

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

ControlCenterAlert/Tweak.xm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
%hook CCUIModuleCollectionViewController
1010
- (void)viewDidLoad {
1111
%orig;
12-
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(startCommandModule:) name:@"com.captinc.startCommandModule" object:nil];
12+
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(startCommandModule:) name:@"com.captinc.commandmodule.showCCAlert" object:nil];
1313
}
14+
1415
- (void)dealloc {
1516
%orig;
1617
[[NSNotificationCenter defaultCenter] removeObserver:self];

ControlCenterModule/CommandModule.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ - (UIImage *)iconGlyph {
1111
}
1212

1313
- (void)setSelected:(BOOL)selected {
14-
[[NSNotificationCenter defaultCenter] postNotificationName:@"com.captinc.startCommandModule" object:nil];
14+
[[NSNotificationCenter defaultCenter] postNotificationName:@"com.captinc.commandmodule.showCCAlert" object:nil];
1515
}
1616
@end

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
1-
# CommandModule v1.0
1+
# CommandModule v1.0.1
22
Control Center module to run a shell script
33

44
Compatible with iOS 11.0+
55

66
Repo: [https://captinc.github.io](https://captinc.github.io)
77

8-
[Direct .deb download](https://github.com/captinc/CommandModule/releases/download/v1.0/com.captinc.commandmodule_1.0_iphoneos-arm.deb)
8+
[Direct .deb download](https://github.com/captinc/CommandModule/releases/download/v1.0.1/com.captinc.commandmodule_1.0.1_iphoneos-arm.deb)
99

1010
[Reddit post](https://www.reddit.com/r/jailbreak/comments/exyfol/release_commandmodule_control_center_module_to)
1111

1212
[Screenshots](https://captinc.github.io/depictions/commandmodule/screenshots.html)
1313

1414
# How to compile
1515
1. [Install theos](https://github.com/theos/theos/wiki/Installation-macOS) on your Mac
16-
2. `git clone https://github.com/captinc/CommandModule.git ./CommandModule-master`
17-
3. `cd ./CommandModule-master`
18-
4. `make package`
16+
2. Make sure you installed the iOS 11.2 patched SDK for theos
17+
3. `git clone https://github.com/captinc/CommandModule.git ./CommandModule-master`
18+
4. `cd ./CommandModule-master`
19+
5. `make package`
1920

2021
A .deb will now be in the "CommandModule-master/packages" folder
2122

2223
# License
23-
Please do not repackage my tweak, call it your own, and then redistribute it. You can use individual parts of my code for your own non-commercial projects. There is no warranty. If you have any questions, [PM me on Reddit](https://reddit.com/u/captinc37)
24+
Please do not repackage my tweak, call it your own, and then redistribute it. You can use individual parts of my code for your own non-commercial projects. There is no warranty. If you have any questions, [PM me on Reddit](https://www.reddit.com/message/compose/?to=captinc37&subject=GitHub%20question)

layout/DEBIAN/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: com.captinc.commandmodule
22
Name: CommandModule
3-
Version: 1.0
3+
Version: 1.0.1
44
Depends: firmware (>=11.0), mobilesubstrate, com.opa334.ccsupport
55
Author: Capt Inc <[email protected]>
66
Maintainer: Capt Inc <[email protected]>

0 commit comments

Comments
 (0)