From 8a7bc73881cc0921f60d5ed88a2597de0b7a91db Mon Sep 17 00:00:00 2001 From: arichornlover <78001398+arichornlover@users.noreply.github.com> Date: Wed, 13 Mar 2024 22:54:47 -0500 Subject: [PATCH] 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. --- Sources/uYouPlusSettings.xm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/uYouPlusSettings.xm b/Sources/uYouPlusSettings.xm index 453cc57..5d8076b 100644 --- a/Sources/uYouPlusSettings.xm +++ b/Sources/uYouPlusSettings.xm @@ -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];