you can install .deb files on jailbroken devices:
- phoneos-arm for rootful jailbreaks
- iphoneos-arm64 for rootless jailbreaks
you can inject the dylib into a decrypted discord IPA for usage on jailed devices with pyzule.
what's new?
a few method hooks have been fixed in the adjust & crashlytics parts, however the main difference comes up with the new dummyDelegate
class. if you're not a dev, the only part that really matters to you is that the tweak should run a bit faster! i think..
what's with dummyDelegate
?
i realized that the way discord was handling receiving the "bad URL" response from http://0.0.0.0/
was weird. it would try to send the request (mainly to /api/v9/science
), receive the "bad URL" response, and continue in this loop indefinitely. the new dummyDelegate
class conforms to RCTURLRequestDelegate as required by -[RCTHTTPRequestHandler sendRequest:withDelegate:]
(shown here) and pretty much makes the request nonexistent to discord. discord's delegate/completionHandler is never called and therefore the telemetry call is made the normal amount of times instead of several times within a few seconds. i believe this should (marginally) boost performance.