diff --git a/CHANGELOG.md b/CHANGELOG.md index 6558dacb..432596f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.115.1-dev.1](https://github.com/ReVanced/revanced-integrations/compare/v0.115.0...v0.115.1-dev.1) (2023-08-05) + + +### Bug Fixes + +* **YouTube - Hide Shorts components:** Hide new type of shorts in feed ([#453](https://github.com/ReVanced/revanced-integrations/issues/453)) ([6959808](https://github.com/ReVanced/revanced-integrations/commit/6959808f0c24e638a33f671728f7a9668f2de2c2)) + # [0.115.0](https://github.com/ReVanced/revanced-integrations/compare/v0.114.0...v0.115.0) (2023-08-02) diff --git a/app/src/main/java/app/revanced/integrations/patches/components/ShortsFilter.java b/app/src/main/java/app/revanced/integrations/patches/components/ShortsFilter.java index c63a7614..48542a06 100644 --- a/app/src/main/java/app/revanced/integrations/patches/components/ShortsFilter.java +++ b/app/src/main/java/app/revanced/integrations/patches/components/ShortsFilter.java @@ -55,7 +55,8 @@ public final class ShortsFilter extends Filter { "shorts_shelf", "inline_shorts", "shorts_grid", - "shorts_video_cell" + "shorts_video_cell", + "shorts_pivot_item" ); pathFilterGroups.addAll(joinButton, subscribeButton, channelBar, soundButton, infoPanel); diff --git a/gradle.properties b/gradle.properties index 9bea19cc..4ba39432 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.parallel = true org.gradle.caching = true android.useAndroidX = true -version = 0.115.0 +version = 0.115.1-dev.1