diff --git a/extensions/shared/src/main/java/app/revanced/extension/music/settings/Settings.java b/extensions/shared/src/main/java/app/revanced/extension/music/settings/Settings.java
index 633d5ddba9..9bf63fad6d 100644
--- a/extensions/shared/src/main/java/app/revanced/extension/music/settings/Settings.java
+++ b/extensions/shared/src/main/java/app/revanced/extension/music/settings/Settings.java
@@ -116,8 +116,7 @@ public class Settings extends BaseSettings {
PatchStatus.SpoofAppVersionDefaultString(), true);
- // PreferenceScreen: Navigation bar
- public static final BooleanSetting ENABLE_BLACK_NAVIGATION_BAR = new BooleanSetting("revanced_enable_black_navigation_bar", FALSE);
+ // PreferenceScreen: Navigation Bar
public static final BooleanSetting HIDE_NAVIGATION_HOME_BUTTON = new BooleanSetting("revanced_hide_navigation_home_button", FALSE, true);
public static final BooleanSetting HIDE_NAVIGATION_SAMPLES_BUTTON = new BooleanSetting("revanced_hide_navigation_samples_button", FALSE, true);
public static final BooleanSetting HIDE_NAVIGATION_EXPLORE_BUTTON = new BooleanSetting("revanced_hide_navigation_explore_button", FALSE, true);
@@ -125,6 +124,7 @@ public class Settings extends BaseSettings {
public static final BooleanSetting HIDE_NAVIGATION_UPGRADE_BUTTON = new BooleanSetting("revanced_hide_navigation_upgrade_button", TRUE, true);
public static final BooleanSetting HIDE_NAVIGATION_BAR = new BooleanSetting("revanced_hide_navigation_bar", FALSE, true);
public static final BooleanSetting HIDE_NAVIGATION_LABEL = new BooleanSetting("revanced_hide_navigation_label", FALSE, true);
+ public static final BooleanSetting ENABLE_BLACK_NAVIGATION_BAR = new BooleanSetting("revanced_enable_black_navigation_bar", FALSE);
// PreferenceScreen: Player
diff --git a/extensions/shared/src/main/java/app/revanced/extension/reddit/settings/preference/categories/MiscellaneousPreferenceCategory.java b/extensions/shared/src/main/java/app/revanced/extension/reddit/settings/preference/categories/MiscellaneousPreferenceCategory.java
index 5e16cf5b82..aad5d77b03 100644
--- a/extensions/shared/src/main/java/app/revanced/extension/reddit/settings/preference/categories/MiscellaneousPreferenceCategory.java
+++ b/extensions/shared/src/main/java/app/revanced/extension/reddit/settings/preference/categories/MiscellaneousPreferenceCategory.java
@@ -41,7 +41,7 @@ public void addPreferences(Context context) {
addPreference(new TogglePreference(
context,
"Sanitize sharing links",
- "Removes tracking query parameters from URLs when sharing links.",
+ "Sanitizes sharing links by removing tracking query parameters.",
Settings.SANITIZE_URL_QUERY
));
}
diff --git a/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java b/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java
index d1762467b1..be52940378 100644
--- a/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java
+++ b/extensions/shared/src/main/java/app/revanced/extension/youtube/settings/Settings.java
@@ -87,10 +87,10 @@ public class Settings extends BaseSettings {
public static final BooleanSetting HIDE_MOVIE_SHELF = new BooleanSetting("revanced_hide_movie_shelf", FALSE);
public static final BooleanSetting HIDE_NOTIFY_ME_BUTTON = new BooleanSetting("revanced_hide_notify_me_button", FALSE);
public static final BooleanSetting HIDE_PLAYABLES = new BooleanSetting("revanced_hide_playables", TRUE);
- public static final BooleanSetting HIDE_SHOW_MORE_BUTTON = new BooleanSetting("revanced_hide_show_more_button", TRUE, true);
public static final BooleanSetting HIDE_FEED_SEARCH_BAR = new BooleanSetting("revanced_hide_feed_search_bar", FALSE);
- public static final BooleanSetting HIDE_FEED_SURVEY = new BooleanSetting("revanced_hide_feed_survey", TRUE);
+ public static final BooleanSetting HIDE_SHOW_MORE_BUTTON = new BooleanSetting("revanced_hide_show_more_button", TRUE, true);
public static final BooleanSetting HIDE_SUBSCRIPTIONS_CAROUSEL = new BooleanSetting("revanced_hide_subscriptions_carousel", FALSE, true);
+ public static final BooleanSetting HIDE_FEED_SURVEY = new BooleanSetting("revanced_hide_feed_survey", TRUE);
public static final BooleanSetting HIDE_TICKET_SHELF = new BooleanSetting("revanced_hide_ticket_shelf", TRUE);
@@ -181,7 +181,7 @@ public class Settings extends BaseSettings {
public static final IntegerSetting MINIPLAYER_WIDTH_DIP = new IntegerSetting("revanced_miniplayer_width_dip", 192, true, MINIPLAYER_ANY_MODERN);
public static final IntegerSetting MINIPLAYER_OPACITY = new IntegerSetting("revanced_miniplayer_opacity", 100, true, MINIPLAYER_TYPE.availability(MODERN_1));
- // PreferenceScreen: General - Navigation bar
+ // PreferenceScreen: General - Navigation Bar
public static final BooleanSetting ENABLE_NARROW_NAVIGATION_BUTTONS = new BooleanSetting("revanced_enable_narrow_navigation_buttons", FALSE, true);
public static final BooleanSetting HIDE_NAVIGATION_CREATE_BUTTON = new BooleanSetting("revanced_hide_navigation_create_button", TRUE, true);
public static final BooleanSetting HIDE_NAVIGATION_HOME_BUTTON = new BooleanSetting("revanced_hide_navigation_home_button", FALSE, true);
@@ -550,8 +550,8 @@ public class Settings extends BaseSettings {
// PreferenceScreen: Miscellaneous
- public static final BooleanSetting ENABLE_EXTERNAL_BROWSER = new BooleanSetting("revanced_enable_external_browser", TRUE, true);
public static final BooleanSetting ENABLE_OPEN_LINKS_DIRECTLY = new BooleanSetting("revanced_enable_open_links_directly", TRUE);
+ public static final BooleanSetting ENABLE_EXTERNAL_BROWSER = new BooleanSetting("revanced_enable_external_browser", TRUE, true);
// Experimental Flags
public static final BooleanSetting CHANGE_SHARE_SHEET = new BooleanSetting("revanced_change_share_sheet", FALSE, true);
diff --git a/patches/src/main/kotlin/app/revanced/patches/music/navigation/components/NavigationBarComponentsPatch.kt b/patches/src/main/kotlin/app/revanced/patches/music/navigation/components/NavigationBarComponentsPatch.kt
index 55adfbadf2..ba894a3afe 100644
--- a/patches/src/main/kotlin/app/revanced/patches/music/navigation/components/NavigationBarComponentsPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/music/navigation/components/NavigationBarComponentsPatch.kt
@@ -127,11 +127,6 @@ val navigationBarComponentsPatch = bytecodePatch(
}
}
- addSwitchPreference(
- CategoryType.NAVIGATION,
- "revanced_enable_black_navigation_bar",
- "true"
- )
addSwitchPreference(
CategoryType.NAVIGATION,
"revanced_hide_navigation_home_button",
@@ -167,6 +162,11 @@ val navigationBarComponentsPatch = bytecodePatch(
"revanced_hide_navigation_label",
"false"
)
+ addSwitchPreference(
+ CategoryType.NAVIGATION,
+ "revanced_enable_black_navigation_bar",
+ "true"
+ )
updatePatchStatus(NAVIGATION_BAR_COMPONENTS)
diff --git a/patches/src/main/kotlin/app/revanced/patches/music/utils/patch/PatchList.kt b/patches/src/main/kotlin/app/revanced/patches/music/utils/patch/PatchList.kt
index c14acd990a..6997a432ba 100644
--- a/patches/src/main/kotlin/app/revanced/patches/music/utils/patch/PatchList.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/music/utils/patch/PatchList.kt
@@ -135,7 +135,7 @@ internal enum class PatchList(
),
SANITIZE_SHARING_LINKS(
"Sanitize sharing links",
- "Adds an option to remove tracking query parameters from URLs when sharing links."
+ "Adds an option to sanitize sharing links by removing tracking query parameters."
),
SETTINGS_FOR_YOUTUBE_MUSIC(
"Settings for YouTube Music",
diff --git a/patches/src/main/kotlin/app/revanced/patches/reddit/utils/patch/PatchList.kt b/patches/src/main/kotlin/app/revanced/patches/reddit/utils/patch/PatchList.kt
index 434e5321fa..71d43a7f34 100644
--- a/patches/src/main/kotlin/app/revanced/patches/reddit/utils/patch/PatchList.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/reddit/utils/patch/PatchList.kt
@@ -55,7 +55,7 @@ internal enum class PatchList(
),
SANITIZE_SHARING_LINKS(
"Sanitize sharing links",
- "Adds an option to remove tracking query parameters from URLs when sharing links."
+ "Adds an option to sanitize sharing links by removing tracking query parameters."
),
SETTINGS_FOR_REDDIT(
"Settings for Reddit",
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/general/miniplayer/MiniplayerPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/general/miniplayer/MiniplayerPatch.kt
index cfe0b936c0..0c9882607f 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/general/miniplayer/MiniplayerPatch.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/general/miniplayer/MiniplayerPatch.kt
@@ -281,7 +281,7 @@ val miniplayerPatch = bytecodePatch(
"$EXTENSION_CLASS_DESCRIPTOR->setRoundedCorners(Z)Z"
)
- settingArray += "SETTINGS: MINIPLAYER_ROUNDED_CONERS"
+ settingArray += "SETTINGS: MINIPLAYER_ROUNDED_CORNERS"
}
if (is_19_43_or_greater) {
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/utils/patch/PatchList.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/utils/patch/PatchList.kt
index f7e622b800..44388d6b19 100644
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/utils/patch/PatchList.kt
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/utils/patch/PatchList.kt
@@ -17,6 +17,10 @@ internal enum class PatchList(
"Bypass image region restrictions",
"Adds an option to use a different host for static images, so that images blocked in some countries can be received."
),
+ ENABLE_OPEN_LINKS_DIRECTLY(
+ "Bypass link redirection",
+ "Adds an option to bypass redirection when opening external links."
+ ),
CHANGE_PLAYER_FLYOUT_MENU_TOGGLES(
"Change player flyout menu toggles",
"Adds an option to use text toggles instead of switch toggles within the additional settings menu."
@@ -85,18 +89,10 @@ internal enum class PatchList(
"Enable debug logging",
"Adds an option to enable debug logging."
),
- ENABLE_EXTERNAL_BROWSER(
- "Enable external browser",
- "Adds an option to always open links in your browser instead of in the in-app-browser."
- ),
ENABLE_GRADIENT_LOADING_SCREEN(
"Enable gradient loading screen",
"Adds an option to enable the gradient loading screen."
),
- ENABLE_OPEN_LINKS_DIRECTLY(
- "Enable open links directly",
- "Adds an option to skip over redirection URLs in external links."
- ),
FORCE_HIDE_PLAYER_BUTTONS_BACKGROUND(
"Force hide player buttons background",
"Removes, at compile time, the dark background surrounding the video player controls."
@@ -173,6 +169,10 @@ internal enum class PatchList(
"Navigation bar components",
"Adds options to hide or change components related to the navigation bar."
),
+ ENABLE_EXTERNAL_BROWSER(
+ "Open links in browser",
+ "Adds an option to always open links in your browser instead of in the in-app-browser."
+ ),
OVERLAY_BUTTONS(
"Overlay buttons",
"Adds options to display useful overlay buttons in the video player."
@@ -199,7 +199,7 @@ internal enum class PatchList(
),
SANITIZE_SHARING_LINKS(
"Sanitize sharing links",
- "Adds an option to remove tracking query parameters from URLs when sharing links."
+ "Adds an option to sanitize sharing links by removing tracking query parameters."
),
SEEKBAR_COMPONENTS(
"Seekbar components",
diff --git a/patches/src/main/resources/music/settings/host/values/strings.xml b/patches/src/main/resources/music/settings/host/values/strings.xml
index f13e807e10..a0788b34a6 100644
--- a/patches/src/main/resources/music/settings/host/values/strings.xml
+++ b/patches/src/main/resources/music/settings/host/values/strings.xml
@@ -65,11 +65,11 @@ Limitations:
Hide general ads
Hides general ads.
Hide media ads
- Hides ads before playing media.
+ Hides the ads that play during media playback.
Hide paid promotion label
Hides the paid promotion label.
Hide premium promotion popups
- Hides premium promotion popups.
+ Hides the premium promotion popups.
Hide premium renewal banner
Hides the premium renewal banner.
Hide promotion alert banner
@@ -199,8 +199,6 @@ This does not bypass the age restriction. It just accepts it automatically."
Navigation Bar
- Enable black navigation bar
- Sets the navigation bar color to black.
Hide Home button
Hides the Home button.
Hide Samples button
@@ -215,6 +213,8 @@ This does not bypass the age restriction. It just accepts it automatically."Hides the navigation bar.
Hide navigation labels
Hides the label below each navigation buttons.
+ Set navigation bar to black
+ Sets the navigation bar color to black.
@@ -286,11 +286,11 @@ Some features may not work properly in the old player layout."
Remember playback speed changes
Remembers the last playback speed selected.
Show a toast
- Show a toast when changing the default playback speed.
+ Shows a toast when changing the default playback speed.
Remember video quality changes
Remembers the last video quality selected.
Show a toast
- Show a toast when changing the default video quality.
+ Shows a toast when changing the default video quality.
Custom speeds must be less than %sx.
Invalid custom playback speeds.
Changing default speed to %s.
@@ -340,7 +340,7 @@ Some features may not work properly in the old player layout."
The daily quota for API keys on the free plan is 10,000, and 1 quota is used to replace a handle with a username for 1 comment.
-Click to see how to issue a API key."
+Click to see how to issue an API key."
Issue YouTube Data API v3 developer key
1. Go to <a href=%1$s>Create a new project</a>.<br>2. Click the <b>CREATE</b> button.<br>3. Go to <a href=%2$s>YouTube Data API v3</a>.<br>4. Click the <b>ENABLE</b> button.<br>5. Click the <b>CREATE CREDENTIALS</b> button.<br>6. Select the <b>Public data</b> option.<br>7. Click the <b>NEXT</b> button.<br>8. Copy the API key.<br><br>※ API key should never be shared with others, so it is not included in Import / Export settings.
@@ -349,7 +349,7 @@ Click to see how to issue a API key."
SponsorBlock
Enable SponsorBlock
- SponsorBlock is a crowd-sourced system for skipping annoying parts of YouTube videos.
+ SponsorBlock is a crowdsourced system for skipping annoying parts of YouTube videos.
Show a toast if API is unavailable
Shows a toast if the SponsorBlock API is unavailable.
Show a toast when skipping automatically
@@ -413,7 +413,7 @@ Click to see how to issue a API key."
Miscellaneous
Import / Export settings
- Import or export settings.
+ Import / Export RVX Music settings.
Export settings to file
Import settings from file
@@ -430,9 +430,9 @@ Click to see how to issue a API key."
Settings copied to clipboard.
Bypass image region restrictions
- Replaces the domain that is blocked in some regions so that playlist thumbnails, channel avatars, etc. can be received.
+ Bypasses the domain that is blocked in some regions so that playlist thumbnails, channel avatars, etc. can be received.
Change share sheet
- Change from in-app share sheet to system share sheet.
+ Changes the in-app share sheet to system share sheet.
Disable Cairo splash animation
Disables Cairo splash animation when the app starts up.
Disable DRC audio
@@ -453,13 +453,13 @@ Find the official song if a music video is detected playing from an album.
Enable debug buffer logging
Includes the buffer in the debug log.
Enable OPUS codec
- "Enable the OPUS codec if the player response includes the OPUS codec.
+ "Enables the OPUS codec if the player response includes it.
Info:
• Latest YouTube Music clients use the OPUS audio codec by default.
• This is only valid for users spoofing with very old clients."
Sanitize sharing links
- Removes tracking query parameters from URLs when sharing links.
+ Sanitizes sharing links by removing tracking query parameters.
Spoof client
"Spoof the client to prevent playback issues.
@@ -484,10 +484,10 @@ Info:
Android Music
Open default app settings
- To open YouTube Music links in RVX Music, enable \'Open supported links\' and enable the supported web addresses.
+ To open YouTube Music links in RVX Music, enable Open supported links and enable all the Supported web addresses.
Open GmsCore settings
- Opens GmsCore settings. Then enable cloud messaging to receive notifications.
+ To receive notifications in RVX Music, enable Cloud Messaging.
GmsCore is not installed. Install it.
Action needed
"GmsCore does not have permission to run in the background.
diff --git a/patches/src/main/resources/youtube/settings/host/values/strings.xml b/patches/src/main/resources/youtube/settings/host/values/strings.xml
index 29974fd4ef..6ed8b4f252 100644
--- a/patches/src/main/resources/youtube/settings/host/values/strings.xml
+++ b/patches/src/main/resources/youtube/settings/host/values/strings.xml
@@ -75,7 +75,7 @@ Please download %2$s from the website."
DeArrow & still captures
Still captures
DeArrow
- "DeArrow provides crowd-sourced thumbnails for YouTube videos. These thumbnails are often more relevant than those provided by YouTube.
+ "DeArrow provides crowdsourced thumbnails for YouTube videos. These thumbnails are often more relevant than those provided by YouTube.
If enabled, video URLs will be sent to the API server and no other data is sent. If a video does not have DeArrow thumbnails, then the original or still captures are shown.
@@ -113,14 +113,15 @@ Tap here to learn more about DeArrow."
Hide Captions button
Captions button is hidden.
Captions button is shown.
- Hide carousel shelf
- "Hides the following shelves:
+ Hide carousel shelves
+ "Carousel shelves are hidden, such as:
• Breaking news
• Continue watching
• Explore more channels
• Listen again
• Shopping
• Watch it again"
+ Carousel shelves are shown.
Hide chips shelf
Chips shelf is hidden.
Chips shelf is shown.
@@ -154,18 +155,18 @@ Tap here to learn more about DeArrow."
Hide Playables
Playables are hidden.
Playables are shown.
- Hide Show more button
- Show more button is hidden.
- Show more button is shown.
Hide search bar
Search bar is hidden.
Search bar is shown.
- Hide surveys
- Surveys are hidden.
- Surveys are shown.
+ Hide Show more button
+ Show more button is hidden.
+ Show more button is shown.
Hide subscriptions carousel
Subscriptions carousel is hidden.
Subscriptions carousel is shown.
+ Hide surveys
+ Surveys are hidden.
+ Surveys are shown.
Hide ticket shelves
Ticket shelves are hidden.
Ticket shelves are shown.
@@ -455,7 +456,7 @@ Some components may not be hidden."
Miniplayer
- Change the style of the in app minimized player.
+ Change the style of the in-app minimized player.
Miniplayer type
Disabled
@@ -482,7 +483,7 @@ Miniplayer can be dragged to any corner of the screen."
Enable horizontal drag gesture.
"Horizontal drag gesture enabled.
-Miniplayer can be dragged off screen to the left or right."
+Miniplayer can be dragged off-screen to the left or right."
Horizontal drag gesture disabled.
Hide close button
Close button is hidden.
@@ -505,8 +506,8 @@ Swipe to expand or close."
Opacity value between 0-100, where 0 is transparent.
Miniplayer overlay opacity must be between 0-100.
-
- Navigation bar
+
+ Navigation Bar
Hide or show navigation bar section components.
Enable narrow navigation buttons
@@ -627,8 +628,8 @@ If this setting do not take effect, try switching to Incognito mode."
Wide search bar is enabled.
Wide search bar is disabled.
Enable wide search bar with header
- Wide search bar does not hide the YouTube header.
- Wide search bar hides the YouTube header.
+ Wide search bar is enabled along with the YouTube header.
+ Wide search bar disables and uses the YouTube header space.
Enable wide search bar in You tab
"Enabling this setting will disable the Settings button in the You tab.
@@ -705,9 +706,9 @@ Note:
Hide end screen cards
End screen cards are hidden.
End screen cards are shown.
- Hide film strip overlay
- Film strip overlay is hidden.
- Film strip overlay is shown.
+ Hide filmstrip overlay
+ Filmstrip overlay is hidden.
+ Filmstrip overlay is shown.
Hide info cards
Info cards are hidden.
Info cards are shown.
@@ -995,7 +996,8 @@ Limitation: Video title disappears when clicked."
Controls overlay does not fill the fullscreen.
Controls overlay fills the fullscreen.
Keep landscape mode
- Keeps landscape mode when turning the screen off and on in fullscreen.
+ Videos continue to play in landscape mode after turning the screen off and on.
+ Videos play in portrait mode after turning the screen off and on.
Keep landscape mode timeout
The amount of milliseconds the landscape mode is forced after the screen in turned on.
@@ -1634,7 +1636,7 @@ Limitation: Dislikes may not appear if the user is not logged in or in incognito
The daily quota for API keys on the free plan is 10,000, and 1 quota is used to replace a handle with a username for 1 comment.
-Click to see how to issue a API key."
+Click to see how to issue an API key."
Issue YouTube Data API v3 developer key
1. Go to <a href=%1$s>Create a new project</a>.<br>2. Click the <b>CREATE</b> button.<br>3. Go to <a href=%2$s>YouTube Data API v3</a>.<br>4. Click the <b>ENABLE</b> button.<br>5. Click the <b>CREATE CREDENTIALS</b> button.<br>6. Select the <b>Public data</b> option.<br>7. Click the <b>NEXT</b> button.<br>8. Copy the API key.<br><br>※ API key should never be shared with others, so it is not included in Import / Export settings.
@@ -1642,7 +1644,7 @@ Click to see how to issue a API key."
SponsorBlock
Enable SponsorBlock
- SponsorBlock is a crowd-sourced system for skipping annoying parts of YouTube videos.
+ SponsorBlock is a crowdsourced system for skipping annoying parts of YouTube videos.
Appearance
@@ -1766,8 +1768,8 @@ Click to see how to issue a API key."
API URL changed.
Copy
Import / Export settings
- Your SponsorBlock JSON configuration that can be imported / exported to ReVanced Extended and other SponsorBlock platforms.
- Your SponsorBlock JSON configuration that can be imported / exported to ReVanced Extended and other SponsorBlock platforms. This includes your private user id. Be sure to share this wisely.
+ Your SponsorBlock JSON configuration that can be imported / exported to RVX and other SponsorBlock platforms.
+ Your SponsorBlock JSON configuration that can be imported / exported to RVX and other SponsorBlock platforms. This includes your private user id. Be sure to share this wisely.
Settings imported successfully.
Failed to import: %s.
Failed to export: %s.
@@ -1845,28 +1847,28 @@ Click to see how to issue a API key."
Miscellaneous
+ Bypass link redirection
+ Bypasses link redirection.
+ Follows default redirection policy.
Disable QUIC protocol
- "Disable CronetEngine's QUIC protocol."
+ "Disables CronetEngine's QUIC protocol."
Enable debug logging
Debug logs are enabled.
Debug logs are disabled.
Enable debug buffer logging
Debug logs include the buffer.
Debug logs do not include the buffer.
- Enable external browser
- External browser is enabled.
- External browser is disabled.
- Enable open links directly
- Bypassing URL redirects.
- Following default redirect policy.
+ Open links in browser
+ Opens links in the external browser.
+ Opens links in the in-app browser.
Sanitize sharing links
Sanitizes sharing links by removing tracking query parameters.
Open default app settings
- To open YouTube links in RVX, enable \'Open supported links\' and enable the supported web addresses.
+ To open YouTube links in RVX, enable Open supported links and enable all the Supported web addresses.
Open GmsCore settings
- Opens GmsCore settings. Then enable cloud messaging to receive notifications.
+ To receive notifications in RVX, enable Cloud Messaging.
GmsCore is not installed. Install it.
Action needed
"GmsCore does not have permission to run in the background.
@@ -1886,11 +1888,11 @@ Tap the continue button and allow optimization changes."
System share sheet is used.
In-app share sheet is used.
Enable OPUS codec
- Enable the OPUS codec if the player response includes the OPUS codec.
+ Enables the OPUS codec if the player response includes it.
Import / Export settings
- Import or export settings.
+ Import / Export RVX settings.
Import / Export as file
@@ -1902,7 +1904,7 @@ Tap the continue button and allow optimization changes."
Import / Export as text
Import / Export as text
- Import or export settings as text.
+ Import / Export settings as text.
Failed to export settings.
Settings were successfully exported.
diff --git a/patches/src/main/resources/youtube/settings/xml/revanced_prefs.xml b/patches/src/main/resources/youtube/settings/xml/revanced_prefs.xml
index 8b70415080..f83a55c627 100644
--- a/patches/src/main/resources/youtube/settings/xml/revanced_prefs.xml
+++ b/patches/src/main/resources/youtube/settings/xml/revanced_prefs.xml
@@ -102,7 +102,7 @@
-
+
@@ -114,10 +114,10 @@
-
-
+
+
SETTINGS: HIDE_FEED_COMPONENTS -->
-
+
@@ -426,7 +426,7 @@
SETTINGS: FULLSCREEN_COMPONENTS -->
@@ -816,6 +815,9 @@
SETTINGS: WATCH_HISTORY -->
+
+
@@ -826,9 +828,6 @@
-
-