mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-22 02:38:45 -04:00
Remove 3 Broken Options
This commit is contained in:
@@ -136,36 +136,6 @@ extern NSBundle *YTLitePlusBundle();
|
|||||||
}
|
}
|
||||||
settingItemId:0],
|
settingItemId:0],
|
||||||
|
|
||||||
[YTSettingsSectionItemClass switchItemWithTitle:LOC(@"HIDE_DONTEATMYCONTENT_SECTION")
|
|
||||||
titleDescription:LOC(@"APP_RESTART_DESC")
|
|
||||||
accessibilityIdentifier:nil
|
|
||||||
switchOn:IsEnabled(@"disableDontEatMyContentSection_enabled")
|
|
||||||
switchBlock:^BOOL (YTSettingsCell *cell, BOOL enabled) {
|
|
||||||
[[NSUserDefaults standardUserDefaults] setBool:enabled forKey:@"disableDontEatMyContentSection_enabled"];
|
|
||||||
return YES;
|
|
||||||
}
|
|
||||||
settingItemId:0],
|
|
||||||
|
|
||||||
[YTSettingsSectionItemClass switchItemWithTitle:LOC(@"HIDE_YOUTUBERETURNDISLIKE_SECTION")
|
|
||||||
titleDescription:LOC(@"APP_RESTART_DESC")
|
|
||||||
accessibilityIdentifier:nil
|
|
||||||
switchOn:IsEnabled(@"disableReturnYouTubeDislikeSection_enabled")
|
|
||||||
switchBlock:^BOOL (YTSettingsCell *cell, BOOL enabled) {
|
|
||||||
[[NSUserDefaults standardUserDefaults] setBool:enabled forKey:@"disableReturnYouTubeDislikeSection_enabled"];
|
|
||||||
return YES;
|
|
||||||
}
|
|
||||||
settingItemId:0],
|
|
||||||
|
|
||||||
[YTSettingsSectionItemClass switchItemWithTitle:LOC(@"HIDE_YOUPIP_SECTION")
|
|
||||||
titleDescription:LOC(@"APP_RESTART_DESC")
|
|
||||||
accessibilityIdentifier:nil
|
|
||||||
switchOn:IsEnabled(@"disableYouPiPSection_enabled")
|
|
||||||
switchBlock:^BOOL (YTSettingsCell *cell, BOOL enabled) {
|
|
||||||
[[NSUserDefaults standardUserDefaults] setBool:enabled forKey:@"disableYouPiPSection_enabled"];
|
|
||||||
return YES;
|
|
||||||
}
|
|
||||||
settingItemId:0],
|
|
||||||
|
|
||||||
[YTSettingsSectionItemClass switchItemWithTitle:LOC(@"HIDE_AUTOPLAY_SECTION")
|
[YTSettingsSectionItemClass switchItemWithTitle:LOC(@"HIDE_AUTOPLAY_SECTION")
|
||||||
titleDescription:LOC(@"APP_RESTART_DESC")
|
titleDescription:LOC(@"APP_RESTART_DESC")
|
||||||
accessibilityIdentifier:nil
|
accessibilityIdentifier:nil
|
||||||
|
@@ -336,42 +336,6 @@ static BOOL IsEnabled(NSString *key) {
|
|||||||
%end
|
%end
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%group gDisableDontEatMyContentSection
|
|
||||||
%hook YTSettingsSectionItemManager
|
|
||||||
- (void)updateDEMCSectionWithEntry:(id)arg1 { // DontEatMyContent
|
|
||||||
%orig;
|
|
||||||
NSMutableArray *sectionItems = [self valueForKey:@"_sectionItems"];
|
|
||||||
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"title == %@", @"DontEatMyContent"];
|
|
||||||
NSArray *itemsToRemove = [sectionItems filteredArrayUsingPredicate:predicate];
|
|
||||||
[sectionItems removeObjectsInArray:itemsToRemove];
|
|
||||||
}
|
|
||||||
%end
|
|
||||||
%end
|
|
||||||
|
|
||||||
%group gDisableReturnYouTubeDislikeSection
|
|
||||||
%hook YTSettingsSectionItemManager
|
|
||||||
- (void)updateRYDSectionWithEntry:(id)arg1 { // Return YouTube Dislike
|
|
||||||
%orig;
|
|
||||||
NSMutableArray *sectionItems = [self valueForKey:@"_sectionItems"];
|
|
||||||
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"title == %@", @"Return YouTube Dislike"];
|
|
||||||
NSArray *itemsToRemove = [sectionItems filteredArrayUsingPredicate:predicate];
|
|
||||||
[sectionItems removeObjectsInArray:itemsToRemove];
|
|
||||||
}
|
|
||||||
%end
|
|
||||||
%end
|
|
||||||
|
|
||||||
%group gDisableYouPiPSection
|
|
||||||
%hook YTSettingsSectionItemManager
|
|
||||||
- (void)updateYouPiPSectionWithEntry:(id)arg1 { // YouPiP
|
|
||||||
%orig;
|
|
||||||
NSMutableArray *sectionItems = [self valueForKey:@"_sectionItems"];
|
|
||||||
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"title == %@", @"YouPiP"];
|
|
||||||
NSArray *itemsToRemove = [sectionItems filteredArrayUsingPredicate:predicate];
|
|
||||||
[sectionItems removeObjectsInArray:itemsToRemove];
|
|
||||||
}
|
|
||||||
%end
|
|
||||||
%end
|
|
||||||
|
|
||||||
%group gDisableAutoplaySection
|
%group gDisableAutoplaySection
|
||||||
%hook YTSettingsSectionItemManager
|
%hook YTSettingsSectionItemManager
|
||||||
- (void)updateAutoplaySectionWithEntry:(id)arg1 {} // Autoplay
|
- (void)updateAutoplaySectionWithEntry:(id)arg1 {} // Autoplay
|
||||||
@@ -507,15 +471,6 @@ static BOOL IsEnabled(NSString *key) {
|
|||||||
if (IsEnabled(@"disableAccountSection_enabled")) {
|
if (IsEnabled(@"disableAccountSection_enabled")) {
|
||||||
%init(gDisableAccountSection);
|
%init(gDisableAccountSection);
|
||||||
}
|
}
|
||||||
if (IsEnabled(@"disableDontEatMyContentSection_enabled")) {
|
|
||||||
%init(gDisableDontEatMyContentSection);
|
|
||||||
}
|
|
||||||
if (IsEnabled(@"disableReturnYouTubeDislikeSection_enabled")) {
|
|
||||||
%init(gDisableReturnYouTubeDislikeSection);
|
|
||||||
}
|
|
||||||
if (IsEnabled(@"disableYouPiPSection_enabled")) {
|
|
||||||
%init(gDisableYouPiPSection);
|
|
||||||
}
|
|
||||||
if (IsEnabled(@"disableAutoplaySection_enabled")) {
|
if (IsEnabled(@"disableAutoplaySection_enabled")) {
|
||||||
%init(gDisableAutoplaySection);
|
%init(gDisableAutoplaySection);
|
||||||
}
|
}
|
||||||
|
@@ -24,9 +24,6 @@
|
|||||||
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
||||||
|
|
||||||
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
||||||
"HIDE_DONTEATMYCONTENT_SECTION" = "Hide `DontEatMyContent` Section";
|
|
||||||
"HIDE_YOUTUBERETURNDISLIKE_SECTION" = "Hide `YouTube Return Dislike` Section";
|
|
||||||
"HIDE_YOUPIP_SECTION" = "Hide `YouPiP` Section";
|
|
||||||
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
||||||
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
||||||
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
||||||
@@ -86,7 +83,7 @@
|
|||||||
"STOCK_VOLUME_HUD" = "Use iOS stock volume HUD";
|
"STOCK_VOLUME_HUD" = "Use iOS stock volume HUD";
|
||||||
"STOCK_VOLUME_HUD_DESC" = "";
|
"STOCK_VOLUME_HUD_DESC" = "";
|
||||||
|
|
||||||
"HIDE_CAST_BUTTON" = "زر "إخفاء الإرسال";
|
"HIDE_CAST_BUTTON" = "زر "إخفاء الإرسال" ;
|
||||||
"HIDE_CAST_BUTTON_DESC" = "مطلوب إعادة تشغيل التطبيق";
|
"HIDE_CAST_BUTTON_DESC" = "مطلوب إعادة تشغيل التطبيق";
|
||||||
|
|
||||||
"HIDE_SPONSORBLOCK_BUTTON" = "Hide iSponsorBlock button in the Navigation bar";
|
"HIDE_SPONSORBLOCK_BUTTON" = "Hide iSponsorBlock button in the Navigation bar";
|
||||||
|
@@ -24,9 +24,6 @@
|
|||||||
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
||||||
|
|
||||||
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
||||||
"HIDE_DONTEATMYCONTENT_SECTION" = "Hide `DontEatMyContent` Section";
|
|
||||||
"HIDE_YOUTUBERETURNDISLIKE_SECTION" = "Hide `YouTube Return Dislike` Section";
|
|
||||||
"HIDE_YOUPIP_SECTION" = "Hide `YouPiP` Section";
|
|
||||||
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
||||||
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
||||||
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
||||||
|
@@ -24,9 +24,6 @@
|
|||||||
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
||||||
|
|
||||||
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
||||||
"HIDE_DONTEATMYCONTENT_SECTION" = "Hide `DontEatMyContent` Section";
|
|
||||||
"HIDE_YOUTUBERETURNDISLIKE_SECTION" = "Hide `YouTube Return Dislike` Section";
|
|
||||||
"HIDE_YOUPIP_SECTION" = "Hide `YouPiP` Section";
|
|
||||||
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
||||||
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
||||||
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
||||||
|
@@ -24,9 +24,6 @@
|
|||||||
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
||||||
|
|
||||||
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
||||||
"HIDE_DONTEATMYCONTENT_SECTION" = "Hide `DontEatMyContent` Section";
|
|
||||||
"HIDE_YOUTUBERETURNDISLIKE_SECTION" = "Hide `YouTube Return Dislike` Section";
|
|
||||||
"HIDE_YOUPIP_SECTION" = "Hide `YouPiP` Section";
|
|
||||||
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
||||||
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
||||||
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
||||||
|
@@ -24,9 +24,6 @@
|
|||||||
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
||||||
|
|
||||||
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
||||||
"HIDE_DONTEATMYCONTENT_SECTION" = "Hide `DontEatMyContent` Section";
|
|
||||||
"HIDE_YOUTUBERETURNDISLIKE_SECTION" = "Hide `YouTube Return Dislike` Section";
|
|
||||||
"HIDE_YOUPIP_SECTION" = "Hide `YouPiP` Section";
|
|
||||||
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
||||||
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
||||||
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
||||||
|
@@ -39,9 +39,6 @@ https://github.com/PoomSmart/Return-YouTube-Dislikes/tree/main/layout/Library/Ap
|
|||||||
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
||||||
|
|
||||||
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
||||||
"HIDE_DONTEATMYCONTENT_SECTION" = "Hide `DontEatMyContent` Section";
|
|
||||||
"HIDE_YOUTUBERETURNDISLIKE_SECTION" = "Hide `YouTube Return Dislike` Section";
|
|
||||||
"HIDE_YOUPIP_SECTION" = "Hide `YouPiP` Section";
|
|
||||||
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
||||||
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
||||||
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
||||||
|
@@ -24,9 +24,6 @@
|
|||||||
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
"APP_SETTINGS_OVERLAY_OPTIONS" = "App Settings Overlay Options";
|
||||||
|
|
||||||
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
"HIDE_ACCOUNT_SECTION" = "Hide `Account` Section";
|
||||||
"HIDE_DONTEATMYCONTENT_SECTION" = "Hide `DontEatMyContent` Section";
|
|
||||||
"HIDE_YOUTUBERETURNDISLIKE_SECTION" = "Hide `YouTube Return Dislike` Section";
|
|
||||||
"HIDE_YOUPIP_SECTION" = "Hide `YouPiP` Section";
|
|
||||||
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
"HIDE_AUTOPLAY_SECTION" = "Hide `Autoplay` Section";
|
||||||
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
"HIDE_TRYNEWFEATURES_SECTION" = "Hide `Try New Features` Section";
|
||||||
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
"HIDE_VIDEOQUALITYPREFERENCES_SECTION" = "Hide `Video quality preferences` Section";
|
||||||
|
Reference in New Issue
Block a user