Files
RyukGram/src/Features/General/DisableBackgroundRefresh.x
T
faroukbmiled 86eaa95019 [release] RyukGram v1.2.0
### Features
- **Open Instagram links in app (Safari extension)** — bundled Safari web extension (sideload IPA only). Enable in Safari → Extensions; instagram.com links open in the app.
- **Localization** — every user-facing string flows through a central translation layer. Globe button in Settings; missing keys fall back to English. Ships English only — see the "Translating RyukGram" section in the README to add more.
- **Action buttons** — context-aware menus on feed, reels, and stories (expand, repost, download, copy caption, etc.) with per-context default tap action and carousel/multi-story bulk download
- **Enhanced HD downloads** — up to 1080p via DASH + FFmpegKit with quality picker, preview playback, encoding-speed options, and 720p fallback
- **Repost**, **media viewer**, **media zoom** (long-press), **download pill** (frosted glass, stacks concurrent downloads)
- **Fake location** — overrides CoreLocation app-wide, map picker + saved presets, optional quick-toggle button on the Friends Map
- **Messages-only mode** — strips every tab except DM inbox + profile
- **Launch tab** — pick which tab the app opens to
- Full last active date in DMs — show full date instead of "Active 2h ago"
- Custom date format — 12 formats with per-surface toggles (feed, notes/comments/stories, DMs)
- Send files in DMs (experimental)
- View story mentions
- Hide suggested stories
- Story tray long-press actions — view HD profile picture from the tray menu
- Advance on story reply — auto-skip to next story after sending a reply or reaction
- Mark story as seen on reply or emoji reaction
- Hide metrics (likes, comments, shares counts)
- Hide messages tab
- Hide voice/video call buttons in DM thread header (independent toggles)
- Disable app haptics
- Disable reels tab refresh
- Disable disappearing messages mode in DMs
- Follow indicator — shows whether the profile user follows you
- Copy note text on long press
- Zoom profile photo — long press opens full-screen viewer
- Notes actions — copy text, download GIF/audio from notes long-press menu
- Confirm unfollow
- Feed refresh controls — disable background refresh, home button refresh, and home button scroll

### Improvements
- Default tap action: added copy URL, repost, and view mentions options; dynamic menu generation per context
- Settings pages reordered: General → Feed → Stories → Reels → Messages → Profile → Navigation → Saving → Confirmations
- Fake location picker: native Apple Maps-style UI (search, long-press to drop pin, current location)
- Liquid glass floating tab bar + dynamic sizing
- Upload audio: FFmpegKit re-encode + trim for any audio/video input
- Settings reorganized with per-context action button config; new Profile page
- Highlight cover: full-screen viewer replaces direct download
- Switched HD encoder to `h264_videotoolbox` (hardware) — no GPL FFmpegKit required
- Legacy long-press download deprecated (off by default), replaced by action buttons

### Fixes
- Hide suggested stories no longer removes followed users' stories on scroll
- Settings search bar transparency with liquid glass off; auto-deactivates on push
- HD download cancel: tapping pill aborts in-flight downloads + FFmpeg sessions cleanly
- Download pill stuck state on background/foreground, progress reset per download
- Disappearing messages mode confirmation not firing on swipe
- Detailed color picker not working on story draw `†`
- DM seen toggle menu not updating after tap
- Reel refresh confirmation appearing on first app launch `†`
- Reels action button displacing profile pictures on photo reels
- Disappearing DM media download (expand, share, save to Photos with progress pill)
- Carousel "Download all" not showing item count in feed
- Encoding speed setting being ignored for HD downloads
- Various upstream SCInsta merges (Meta AI hiding, suggested chats hiding, notes tray) — marked `†`

> `†` Merged from upstream [SCInsta](https://github.com/SoCuul/SCInsta) by SoCuul

### Credits
- Thanks to [@erupts0](https://github.com/erupts0) (John) for testing and feature suggestions
- Thanks to [@euoradan](https://t.me/euoradan) (Radan) for experimental Instagram feature flag research
- Safari extension forked/cleaned from [BillyCurtis/OpenInstagramSafariExtension](https://github.com/BillyCurtis/OpenInstagramSafariExtension)

### Known Issues
- Preserved unsent messages can't be removed via "Delete for you"; pull-to-refresh clears them (warning available in settings)
- "Delete for you" detection uses a ~2s window after the local action — a real unsend landing in that window may be missed (rare)
2026-04-16 03:03:30 +01:00

211 lines
7.3 KiB
Plaintext

// Disable feed refresh — background refresh and home tab refresh.
#import "../../InstagramHeaders.h"
#import "../../Utils.h"
#import <objc/runtime.h>
#import <substrate.h>
static BOOL sciDisableBgRefresh(void) {
return [SCIUtils getBoolPref:@"disable_bg_refresh"];
}
static BOOL sciDisableHomeRefresh(void) {
return [SCIUtils getBoolPref:@"disable_home_refresh"];
}
static BOOL sciDisableHomeScroll(void) {
return [SCIUtils getBoolPref:@"disable_home_scroll"];
}
static BOOL sciDisableReelsRefresh(void) {
return [SCIUtils getBoolPref:@"disable_reels_tab_refresh"];
}
// Returns 999999s when disabled (effectively never), -1 to keep IG's value.
static double sciOverrideInterval(void) {
if (sciDisableBgRefresh()) return 999999;
return -1;
}
// MARK: - Refresh-utility class-method overrides
// IGMainFeedRefreshUtility recomputes the intervals at runtime, ignoring the
// init args on IGMainFeedNetworkSource — override the 4 class methods too.
static double (*orig_wsRefresh)(id, SEL, id, id);
static double new_wsRefresh(id self, SEL _cmd, id ls, id store) {
double o = sciOverrideInterval();
return o > 0 ? o : orig_wsRefresh(self, _cmd, ls, store);
}
static double (*orig_wsBgRefresh)(id, SEL, id, id);
static double new_wsBgRefresh(id self, SEL _cmd, id ls, id store) {
double o = sciOverrideInterval();
return o > 0 ? o : orig_wsBgRefresh(self, _cmd, ls, store);
}
static double (*orig_peakWsRefresh)(id, SEL, double, id, id);
static double new_peakWsRefresh(id self, SEL _cmd, double iv, id ls, id store) {
double o = sciOverrideInterval();
return o > 0 ? o : orig_peakWsRefresh(self, _cmd, iv, ls, store);
}
static double (*orig_peakWsBgRefresh)(id, SEL, id, id);
static double new_peakWsBgRefresh(id self, SEL _cmd, id ls, id store) {
double o = sciOverrideInterval();
return o > 0 ? o : orig_peakWsBgRefresh(self, _cmd, ls, store);
}
%ctor {
Class c = NSClassFromString(@"IGMainFeedViewModelUtility.IGMainFeedRefreshUtility");
if (!c) return;
Class meta = object_getClass(c);
SEL s1 = NSSelectorFromString(@"warmStartRefreshIntervalWithLauncherSet:feedRefreshInstructionsStore:");
if (class_getInstanceMethod(meta, s1))
MSHookMessageEx(meta, s1, (IMP)new_wsRefresh, (IMP *)&orig_wsRefresh);
SEL s2 = NSSelectorFromString(@"warmStartBackgroundRefreshIntervalWithLauncherSet:feedRefreshInstructionsStore:");
if (class_getInstanceMethod(meta, s2))
MSHookMessageEx(meta, s2, (IMP)new_wsBgRefresh, (IMP *)&orig_wsBgRefresh);
SEL s3 = NSSelectorFromString(@"onPeakWarmStartRefreshIntervalWithWarmStartFetchInterval:launcherSet:feedRefreshInstructionsStore:");
if (class_getInstanceMethod(meta, s3))
MSHookMessageEx(meta, s3, (IMP)new_peakWsRefresh, (IMP *)&orig_peakWsRefresh);
SEL s4 = NSSelectorFromString(@"onPeakWarmStartBackgroundRefreshIntervalWithLauncherSet:feedRefreshInstructionsStore:");
if (class_getInstanceMethod(meta, s4))
MSHookMessageEx(meta, s4, (IMP)new_peakWsBgRefresh, (IMP *)&orig_peakWsBgRefresh);
}
// MARK: - Background refresh
%hook IGMainFeedNetworkSource
- (instancetype)initWithDeps:(id)a1
posts:(id)a2
nextMaxID:(id)a3
initialPaginationSource:(id)a4
contentCoordinator:(id)a5
dataSourceSupplementaryItemsProvider:(id)a6
disableAutomaticRefresh:(BOOL)disable
disableSerialization:(BOOL)a8
sessionId:(id)a9
analyticsModule:(id)a10
serializationSuffix:(id)a11
disableFlashFeedTLI:(BOOL)a12
disableFlashFeedOnColdStart:(BOOL)a13
disableResponseDeferral:(BOOL)a14
hidesStoriesTray:(BOOL)a15
isSecondaryFeed:(BOOL)a16
collectionViewBackgroundColorOverride:(id)a17
minWarmStartFetchInterval:(double)a18
peakMinWarmStartFetchInterval:(double)a19
minimumWarmStartBackgroundedInterval:(double)a20
peakMinimumWarmStartBackgroundedInterval:(double)a21
supplementalFeedHoistedMediaID:(id)a22
headerTitleOverride:(id)a23
isInFollowingTab:(BOOL)a24
useShimmerLoadingWhenNoStoriesTray:(BOOL)a25 {
double override = sciOverrideInterval();
if (sciDisableBgRefresh()) disable = YES;
if (override > 0) { a18 = override; a19 = override; a20 = override; a21 = override; }
return %orig(a1, a2, a3, a4, a5, a6, disable, a8, a9, a10, a11, a12, a13, a14, a15, a16, a17, a18, a19, a20, a21, a22, a23, a24, a25);
}
// Getter overrides for instances created before the class hooks landed.
- (double)minWarmStartFetchInterval {
double o = sciOverrideInterval();
return o > 0 ? o : %orig;
}
- (double)peakMinWarmStartFetchInterval {
double o = sciOverrideInterval();
return o > 0 ? o : %orig;
}
- (double)minimumWarmStartBackgroundedInterval {
double o = sciOverrideInterval();
return o > 0 ? o : %orig;
}
- (double)peakMinimumWarmStartBackgroundedInterval {
double o = sciOverrideInterval();
return o > 0 ? o : %orig;
}
%end
// MARK: - Hot start refresh
%hook IGMainFeedViewController
- (void)hotStartRefresh {
if (sciDisableBgRefresh()) return;
%orig;
}
%end
// MARK: - Home tab refresh
%hook IGTabBarController
- (void)_timelineButtonPressed {
BOOL noRefresh = sciDisableHomeRefresh();
BOOL noScroll = sciDisableHomeScroll();
if (!noRefresh && !noScroll) { %orig; return; }
UIViewController *selected = nil;
if ([self respondsToSelector:@selector(selectedViewController)])
selected = [self valueForKey:@"selectedViewController"];
BOOL onFeedTab = NO;
if (selected) {
UIViewController *top = [selected isKindOfClass:[UINavigationController class]]
? [(UINavigationController *)selected topViewController] : selected;
onFeedTab = [NSStringFromClass([top class]) containsString:@"MainFeed"];
}
if (!onFeedTab) { %orig; return; }
if (noScroll) return;
// noRefresh only — scroll to top without refreshing.
UIViewController *top = [selected isKindOfClass:[UINavigationController class]]
? [(UINavigationController *)selected topViewController] : selected;
NSMutableArray *queue = [NSMutableArray arrayWithObject:top.view];
int scanned = 0;
while (queue.count && scanned < 30) {
UIView *cur = queue.firstObject; [queue removeObjectAtIndex:0]; scanned++;
if ([cur isKindOfClass:[UICollectionView class]]) {
UIScrollView *sv = (UIScrollView *)cur;
[sv setContentOffset:CGPointMake(0, -sv.adjustedContentInset.top) animated:YES];
return;
}
for (UIView *s in cur.subviews) [queue addObject:s];
}
}
// MARK: - Reels tab refresh
- (void)_discoverVideoButtonPressed {
if (!sciDisableReelsRefresh()) { %orig; return; }
UIViewController *selected = nil;
if ([self respondsToSelector:@selector(selectedViewController)])
selected = [self valueForKey:@"selectedViewController"];
BOOL onReelsTab = NO;
if (selected) {
UIViewController *top = [selected isKindOfClass:[UINavigationController class]]
? [(UINavigationController *)selected topViewController] : selected;
NSString *cls = NSStringFromClass([top class]);
onReelsTab = [cls containsString:@"Sundial"] || [cls containsString:@"Reels"]
|| [cls containsString:@"DiscoverVideo"];
}
if (!onReelsTab) { %orig; return; }
}
%end