From a2e8bbb422eb55b955b954b095fcdb9813cb3a8c Mon Sep 17 00:00:00 2001 From: LisoUseInAIKyrios <118716522+LisoUseInAIKyrios@users.noreply.github.com> Date: Sat, 21 Sep 2024 17:11:45 -0400 Subject: [PATCH 1/4] fix(YouTube - Spoof video streams): Change default client type to Android VR --- .../app/revanced/integrations/youtube/settings/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/app/revanced/integrations/youtube/settings/Settings.java b/app/src/main/java/app/revanced/integrations/youtube/settings/Settings.java index 85bc6c8e..b95ed7f7 100644 --- a/app/src/main/java/app/revanced/integrations/youtube/settings/Settings.java +++ b/app/src/main/java/app/revanced/integrations/youtube/settings/Settings.java @@ -259,7 +259,7 @@ public class Settings extends BaseSettings { public static final BooleanSetting SPOOF_VIDEO_STREAMS = new BooleanSetting("revanced_spoof_video_streams", TRUE, true,"revanced_spoof_video_streams_user_dialog_message"); public static final BooleanSetting SPOOF_VIDEO_STREAMS_IOS_FORCE_AVC = new BooleanSetting("revanced_spoof_video_streams_ios_force_avc", FALSE, true, "revanced_spoof_video_streams_ios_force_avc_user_dialog_message", new SpoofVideoStreamsPatch.ForceiOSAVCAvailability()); - public static final EnumSetting SPOOF_VIDEO_STREAMS_CLIENT_TYPE = new EnumSetting<>("revanced_spoof_video_streams_client_type", ClientType.IOS, true, parent(SPOOF_VIDEO_STREAMS)); + public static final EnumSetting SPOOF_VIDEO_STREAMS_CLIENT_TYPE = new EnumSetting<>("revanced_spoof_video_streams_client", ClientType.ANDROID_VR, true, parent(SPOOF_VIDEO_STREAMS)); @Deprecated public static final StringSetting DEPRECATED_ANNOUNCEMENT_LAST_HASH = new StringSetting("revanced_announcement_last_hash", ""); public static final IntegerSetting ANNOUNCEMENT_LAST_ID = new IntegerSetting("revanced_announcement_last_id", -1); From e72da0c15facd284b0008672445d04d50e34a04f Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 21 Sep 2024 23:34:35 +0000 Subject: [PATCH 2/4] chore(release): 1.14.2-dev.1 [skip ci] ## [1.14.2-dev.1](https://github.com/ReVanced/revanced-integrations/compare/v1.14.1...v1.14.2-dev.1) (2024-09-21) ### Bug Fixes * **YouTube - Spoof video streams:** Change default client type to Android VR ([a2e8bbb](https://github.com/ReVanced/revanced-integrations/commit/a2e8bbb422eb55b955b954b095fcdb9813cb3a8c)) * **YouTube - Spoof video streams:** Change default client type to Android VR ([#697](https://github.com/ReVanced/revanced-integrations/issues/697)) ([d06706d](https://github.com/ReVanced/revanced-integrations/commit/d06706d717310d4b0926a10253611f674f95e3f6)) --- CHANGELOG.md | 8 ++++++++ gradle.properties | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6f60eb6..39529360 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [1.14.2-dev.1](https://github.com/ReVanced/revanced-integrations/compare/v1.14.1...v1.14.2-dev.1) (2024-09-21) + + +### Bug Fixes + +* **YouTube - Spoof video streams:** Change default client type to Android VR ([a2e8bbb](https://github.com/ReVanced/revanced-integrations/commit/a2e8bbb422eb55b955b954b095fcdb9813cb3a8c)) +* **YouTube - Spoof video streams:** Change default client type to Android VR ([#697](https://github.com/ReVanced/revanced-integrations/issues/697)) ([d06706d](https://github.com/ReVanced/revanced-integrations/commit/d06706d717310d4b0926a10253611f674f95e3f6)) + ## [1.14.1](https://github.com/ReVanced/revanced-integrations/compare/v1.14.0...v1.14.1) (2024-09-18) diff --git a/gradle.properties b/gradle.properties index 43749c55..1c2f88bc 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.parallel = true org.gradle.caching = true android.useAndroidX = true -version = 1.14.1 +version = 1.14.2-dev.1 From b3849267a7e1a90bfdb129f0e3abd9f6ecf7234e Mon Sep 17 00:00:00 2001 From: Bceez <153008658+Bceez@users.noreply.github.com> Date: Sun, 22 Sep 2024 06:46:44 +0200 Subject: [PATCH 3/4] fix(YouTube - Hide layout components): Hide new kind of community posts (#695) --- .../youtube/patches/components/LayoutComponentsFilter.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/app/revanced/integrations/youtube/patches/components/LayoutComponentsFilter.java b/app/src/main/java/app/revanced/integrations/youtube/patches/components/LayoutComponentsFilter.java index a0ffde0b..050e6ce6 100644 --- a/app/src/main/java/app/revanced/integrations/youtube/patches/components/LayoutComponentsFilter.java +++ b/app/src/main/java/app/revanced/integrations/youtube/patches/components/LayoutComponentsFilter.java @@ -80,9 +80,11 @@ public final class LayoutComponentsFilter extends Filter { final var communityPosts = new StringFilterGroup( Settings.HIDE_COMMUNITY_POSTS, "post_base_wrapper", - "image_post_root.eml", "text_post_root.eml", - "images_post_root.eml" + "images_post_root.eml", + "images_post_slim.eml", + "text_post_root_slim.eml", + "post_base_wrapper_slim.eml" ); final var communityGuidelines = new StringFilterGroup( From 7d831d2693b34f8574b75ebe4c172c67baf437d8 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 22 Sep 2024 04:49:45 +0000 Subject: [PATCH 4/4] chore(release): 1.14.2-dev.2 [skip ci] ## [1.14.2-dev.2](https://github.com/ReVanced/revanced-integrations/compare/v1.14.2-dev.1...v1.14.2-dev.2) (2024-09-22) ### Bug Fixes * **YouTube - Hide layout components:** Hide new kind of community posts ([#695](https://github.com/ReVanced/revanced-integrations/issues/695)) ([b384926](https://github.com/ReVanced/revanced-integrations/commit/b3849267a7e1a90bfdb129f0e3abd9f6ecf7234e)) --- CHANGELOG.md | 7 +++++++ gradle.properties | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39529360..af842fec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.14.2-dev.2](https://github.com/ReVanced/revanced-integrations/compare/v1.14.2-dev.1...v1.14.2-dev.2) (2024-09-22) + + +### Bug Fixes + +* **YouTube - Hide layout components:** Hide new kind of community posts ([#695](https://github.com/ReVanced/revanced-integrations/issues/695)) ([b384926](https://github.com/ReVanced/revanced-integrations/commit/b3849267a7e1a90bfdb129f0e3abd9f6ecf7234e)) + ## [1.14.2-dev.1](https://github.com/ReVanced/revanced-integrations/compare/v1.14.1...v1.14.2-dev.1) (2024-09-21) diff --git a/gradle.properties b/gradle.properties index 1c2f88bc..4f6356ab 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.parallel = true org.gradle.caching = true android.useAndroidX = true -version = 1.14.2-dev.1 +version = 1.14.2-dev.2