Skip to content

Commit b08b1c2

Browse files
committed
Daily update
1 parent 0a53492 commit b08b1c2

File tree

6 files changed

+9
-93
lines changed

6 files changed

+9
-93
lines changed

dylib_dobby_hook.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@
7474
B52FDA792E7E971B006A6E9D /* InstructionDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B52FDA762E7E971B006A6E9D /* InstructionDecoder.m */; };
7575
B52FDA7A2E7E971B006A6E9D /* InstructionDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B52FDA752E7E971B006A6E9D /* InstructionDecoder.h */; };
7676
B52FDA7D2E7E978D006A6E9D /* FolderPreviewPro.m in Sources */ = {isa = PBXBuildFile; fileRef = B52FDA7C2E7E978D006A6E9D /* FolderPreviewPro.m */; };
77-
B52FDA7E2E7E978D006A6E9D /* Clop.m in Sources */ = {isa = PBXBuildFile; fileRef = B52FDA7B2E7E978D006A6E9D /* Clop.m */; };
7877
B5369DCE2CC4C1D200A81211 /* irvueHack.m in Sources */ = {isa = PBXBuildFile; fileRef = B5369DCD2CC4C1D200A81211 /* irvueHack.m */; };
7978
B5369DD02CC4C1DF00A81211 /* VidhubHack.m in Sources */ = {isa = PBXBuildFile; fileRef = B5369DCF2CC4C1DF00A81211 /* VidhubHack.m */; };
8079
B53F9DED2C4AA4EC00A6B32D /* CleanShotXHack.m in Sources */ = {isa = PBXBuildFile; fileRef = B53F9DEC2C4AA4EC00A6B32D /* CleanShotXHack.m */; };
@@ -176,7 +175,6 @@
176175
B52BBA832CBFE1CE00F098A9 /* AirBuddyHack.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AirBuddyHack.m; sourceTree = "<group>"; };
177176
B52FDA752E7E971B006A6E9D /* InstructionDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InstructionDecoder.h; sourceTree = "<group>"; };
178177
B52FDA762E7E971B006A6E9D /* InstructionDecoder.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstructionDecoder.m; sourceTree = "<group>"; };
179-
B52FDA7B2E7E978D006A6E9D /* Clop.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Clop.m; sourceTree = "<group>"; };
180178
B52FDA7C2E7E978D006A6E9D /* FolderPreviewPro.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FolderPreviewPro.m; sourceTree = "<group>"; };
181179
B5369DCD2CC4C1D200A81211 /* irvueHack.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = irvueHack.m; sourceTree = "<group>"; };
182180
B5369DCF2CC4C1DF00A81211 /* VidhubHack.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VidhubHack.m; sourceTree = "<group>"; };
@@ -408,7 +406,6 @@
408406
B581601C2BE8949B001DDB9B /* apps */ = {
409407
isa = PBXGroup;
410408
children = (
411-
B52FDA7B2E7E978D006A6E9D /* Clop.m */,
412409
B52FDA7C2E7E978D006A6E9D /* FolderPreviewPro.m */,
413410
B5938B212DA7E45300FA82B0 /* ishotHack.m */,
414411
B5369DCF2CC4C1DF00A81211 /* VidhubHack.m */,
@@ -693,7 +690,6 @@
693690
38350BF82B53F73A00DD52B3 /* dylib_dobby_hook.m in Sources */,
694691
B5A7D3172C5491A0003D4C7F /* HackHelperProtocolDefault.m in Sources */,
695692
B52FDA7D2E7E978D006A6E9D /* FolderPreviewPro.m in Sources */,
696-
B52FDA7E2E7E978D006A6E9D /* Clop.m in Sources */,
697693
B53F9DED2C4AA4EC00A6B32D /* CleanShotXHack.m in Sources */,
698694
B5EC63D82CBD39C700D92EEC /* AlfredHack.m in Sources */,
699695
9C99D64B2CB6CEF100B8A6D7 /* iStat7Hack.m in Sources */,

dylib_dobby_hook/common/Logger.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
//#endif
1616

1717
#ifdef DEBUG
18-
#define NSLogger(fmt, ...) \
19-
NSLog((@"%s [Line %d] >>>>>> " fmt), \
20-
__func__, \
21-
__LINE__, ##__VA_ARGS__)
18+
#define NSLogger(fmt, ...) \
19+
NSLog((@"🔍 Hack Debug: %s [:%d] " fmt), \
20+
__func__, \
21+
__LINE__, ##__VA_ARGS__)
2222
#else
2323
#define NSLogger(fmt, ...) do {} while (0)
2424
#endif
2525

2626
#ifdef DEBUG
27-
#define CLogger(fmt, ...) \
28-
printf("%s [Line %d] >>>>>> " fmt "\n", \
29-
__PRETTY_FUNCTION__, \
27+
#define CLogger(fmt, ...) \
28+
printf("🔍 Hack Debug: %s [:%d] " fmt "\n", \
29+
__PRETTY_FUNCTION__, \
3030
__LINE__, ##__VA_ARGS__)
3131
#else
3232
#define CLogger(fmt, ...) \

dylib_dobby_hook/mac/apps/Clop.m

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

dylib_dobby_hook/mac/apps/PaddleBaseHack.m

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,6 @@ - (BOOL)shouldInject:(NSString *)target {
4747
if ([[Constant getCurrentAppName] containsString:@"com.readdle.PDFExpert-Mac"]) {
4848
return false;
4949
}
50-
if ([[Constant getCurrentAppName] containsString:@"com.lowtechguys.Clop"]) {
51-
return false;
52-
}
5350

5451
int paddleIndex = [MemoryUtils indexForImageWithName:@"Paddle"];
5552
if (paddleIndex > 0) {

script/apps.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,6 @@
2020
"app_bin_path": "$app_path/Contents/MacOS/$app_name",
2121
"inject_type": "static"
2222
},
23-
{
24-
"app_name": "Clop",
25-
"app_path": "/Applications/$app_name.app",
26-
"app_bin_path": "$app_path/Contents/MacOS/$app_name",
27-
"inject_path": "$app_path/Contents/Frameworks/Paddle.framework/Versions/A/Paddle",
28-
"inject_type": "static"
29-
},
3023
{
3124
"app_name": "Fork",
3225
"app_path": "/Applications/$app_name.app",

supported-apps.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@
4747
| Screens 5 | 5.* ||| App Store | ON | |
4848
| iShot | * ||| App Store | ON | |
4949
| SwiftServer | * ||| App Store | ON | |
50-
| Clop | * ||| https://lowtechguys.com/clop/ | ON | |
50+
| Clop | 2.10.7 ||| https://lowtechguys.com/clop/ | ON | |
51+
| Lunar | 6.9.5 ||| https://lunar.fyi/ | ON | |
5152
| MDClock | 2.6.1 ||| App Store | ON | |
5253
<details>
5354
<summary>(TODO) Details</summary>

0 commit comments

Comments
 (0)