-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clarify in-app strings #47
Conversation
In YT, under ReVanced Extended > Feed > Video filter, the Hide recommended videos setting description says it hides videos with the 'Only for membership' tag. On my client I have a 'Members only' tag, shown below. Are these the same, and should the setting description say |
More questions: 1. The spoof format stream data setting says it has the following limitation: "There may be about 5 seconds of buffering when the video starts." Would this be better? "There may be about 5 seconds of buffering when videos start." 2. In the Alternative thumbnails settings, there is an option for "Player playlists, recommendations" What exactly does this mean? (Example below) 3. In ReVanced Extended > Player > Player buttons, there is the experimental setting of This setting is somewhat out-of-place because it is for the download button below the video rather than the overlay download button. The current description is shown in this screenshot: Should I change it to the following? "Download button below the video player opens the native in-app downloader." Or do you intend to move it to the Action button settings? (I can open a bug report) Or neither? 4. In the Player settings, the note for the What does this mean? (Image below for context) 5. What does this setting do? 6. What does this setting do? |
Looks good Co-authored-by: KobeW50 <[email protected]>
If I remember correctly, this is the feature suggested by @YT-Advanced. |
: Yes this explanation is clear
: This setting was added when merging ReVanced's commit
: This setting overrides the behavior of both the download button in the action bar and the download button in the feed flyout menu. (Unlike YouTube Music) Therefore, it is more appropriate to separate it into the
: The code related to the speed overlay was added in YouTube v18.19.36+, but Google restricted it to be activated only in YouTube v18.36.39+. (server side limitation) Therefore, for users who have patched YouTube v18.29.38 ~ v18.35.36, the speed overlay will not be activated even if you enable or disable the Likewise, when spoofing to old clients with the same settings as Spoof app version, the speed overlay is not activated. One additional line of explanation has been added to prevent user confusion.
: To prevent operation in unintended situations, a process has been added to check the panel's title string. (refer to screenshot) The panel's title string depends on the user's system language, and the video description will only expand if the correct panel's title string is entered.
: If I were to explain this, I would have to explain how the patch is implemented. When the value of the If the flag value is always TRUE, the user cannot switch to landscape mode (fullscreen) using back button or swipe gesture. Therefore, the value of the flag always remains FALSE until the user enters fullscreen, turns off the screen, and turns the screen back on. After the screen is turned on, the flag value switches to TRUE, and after the screen is unlocked, the flag value must be restored to FALSE. The problem is that there is no way to check whether the user has unlocked the screen. Therefore, I adopted a method of changing the value of the flag to FALSE after a set time. In other words, this is the time interval from 'When the user turns on the screen' to 'When the value of the flag is restored to FALSE'. If this time interval is too short, fullscreen may not remain when the user unlocks it. If this time interval is too long, the user will not be able to change the screen orientation via the back button or swipe gesture after unlocking. |
Co-authored-by: KobeW50 <[email protected]>
Co-authored-by: KobeW50 <[email protected]>
Is it ok if I change the setting descriptions to "Native download button opens the native in-app downloader." and "Native download button opens your external downloader."? |
This looks better |
After a short amount of testing, this option changes the thumbnails of the end-card recommendations, but I am not certain if this is all that it does. I asked the author of the upstream PR and am awaiting a response. Once its effects are confirmed, I will try to make the setting title clearer (in a separate PR). Other than that, this PR is ready for review. |
Thanks |
No description provided.