Remove releases/latest url (Settings)

I updated it since IPAs are no longer in the releases tab on GitHub. Better way to resolve this is just it does nothing when pressing it.
This commit is contained in:
arichornlover 2024-03-13 22:54:47 -05:00 committed by GitHub
parent e13bcd470b
commit 8a7bc73881
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -74,14 +74,14 @@ extern NSBundle *uYouPlusBundle();
// SECTION_HEADER(LOC(@"ABOUT"));
YTSettingsSectionItem *version = [%c(YTSettingsSectionItem)
itemWithTitle:LOC(@"VERSION")
itemWithTitle:LOC(@"uYouEnhanced")
titleDescription:nil
accessibilityIdentifier:nil
detailTextBlock:^NSString *() {
return VERSION_STRING;
}
selectBlock:^BOOL (YTSettingsCell *cell, NSUInteger arg1) {
return [%c(YTUIUtils) openURL:[NSURL URLWithString:@"https://github.com/arichornlover/uYouEnhanced/releases/latest"]];
return [%c(YTUIUtils) openURL:[NSURL URLWithString:@""]];
}
];
[sectionItems addObject:version];