Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
feat(YouTube - Shorts Component): Add Disable Like button animation
Browse files Browse the repository at this point in the history
… setting
  • Loading branch information
anddea committed Sep 30, 2024
1 parent 21dfade commit fbc515f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ public ShortsButtonFilter() {
new ByteArrayFilterGroup(
Settings.HIDE_SHORTS_REMIX_BUTTON,
"reel_remix_button"
),
new ByteArrayFilterGroup(
Settings.DISABLE_SHORTS_LIKE_BUTTON_FOUNTAIN_ANIMATION,
"shorts_like_fountain"
)
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@ public class Settings extends BaseSettings {
public static final BooleanSetting HIDE_SHORTS_SHARE_BUTTON = new BooleanSetting("revanced_hide_shorts_share_button", FALSE);
public static final BooleanSetting HIDE_SHORTS_SOUND_BUTTON = new BooleanSetting("revanced_hide_shorts_sound_button", TRUE);

public static final BooleanSetting DISABLE_SHORTS_LIKE_BUTTON_FOUNTAIN_ANIMATION = new BooleanSetting("revanced_disable_shorts_like_button_fountain_animation", FALSE);
public static final BooleanSetting HIDE_SHORTS_PLAY_PAUSE_BUTTON_BACKGROUND = new BooleanSetting("revanced_hide_shorts_play_pause_button_background", FALSE, true);
public static final EnumSetting<AnimationType> ANIMATION_TYPE = new EnumSetting<>("revanced_shorts_double_tap_to_like_animation", AnimationType.ORIGINAL, true);

Expand Down

0 comments on commit fbc515f

Please sign in to comment.